/* TKS Services — Professional Valeting & Detailing
   Redesign v2: Luxury, clean, accessible */

/* === DESIGN TOKENS === */
:root {
  /* Type Scale — generous for readability */
  --text-xs:   clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-sm:   clamp(0.9375rem, 0.875rem + 0.35vw, 1.0625rem);
  --text-base: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --text-lg:   clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --text-xl:   clamp(1.625rem, 1.3rem + 1.25vw, 2.5rem);
  --text-2xl:  clamp(2.25rem, 1.4rem + 2.5vw, 3.75rem);
  --text-3xl:  clamp(2.75rem, 1.2rem + 4vw, 5.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius — softer, more refined */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions — silky smooth */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 200ms var(--ease-out-expo);
  --transition-smooth: 350ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Font families */
  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}


/* === LIGHT MODE (Default) === */
:root, [data-theme="light"] {
  --color-bg:             #faf9f7;
  --color-surface:        #ffffff;
  --color-surface-2:      #f3f2ef;
  --color-surface-offset: #eae8e3;
  --color-divider:        #e0ded8;
  --color-border:         #d4d1ca;

  --color-text:           #1a1a1a;
  --color-text-muted:     #5c5c5c;
  --color-text-faint:     #9a9a9a;
  --color-text-inverse:   #ffffff;

  /* Premium dark navy */
  --color-primary:        #141c28;
  --color-primary-hover:  #1e2d42;
  --color-primary-active: #0d1219;

  /* Warm gold accent */
  --color-accent:         #c9a14e;
  --color-accent-hover:   #b8903e;
  --color-accent-light:   rgba(201, 161, 78, 0.08);
  --color-accent-soft:    rgba(201, 161, 78, 0.15);

  /* Success */
  --color-success:        #2d7a3f;
  --color-success-light:  #e8f5ec;

  /* Error */
  --color-error:          #c23030;
  --color-error-light:    #fce8e8;

  /* Shadows — refined, layered */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.03);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 8px 24px rgba(0,0,0,0.06), 0 32px 80px rgba(0,0,0,0.12);
}


/* === DARK MODE === */
[data-theme="dark"] {
  --color-bg:             #0e1117;
  --color-surface:        #161a22;
  --color-surface-2:      #1e222c;
  --color-surface-offset: #1a1e26;
  --color-divider:        #262a34;
  --color-border:         #2e3340;

  --color-text:           #eaeaea;
  --color-text-muted:     #8e9099;
  --color-text-faint:     #5c5f68;
  --color-text-inverse:   #0e1117;

  --color-primary:        #eaeaea;
  --color-primary-hover:  #ffffff;
  --color-primary-active: #ccc;

  --color-accent:         #d4b35e;
  --color-accent-hover:   #e0c070;
  --color-accent-light:   rgba(212, 179, 94, 0.08);
  --color-accent-soft:    rgba(212, 179, 94, 0.12);

  --color-success:        #4aad5f;
  --color-success-light:  #1a2e1f;

  --color-error:          #e85555;
  --color-error-light:    #2e1a1a;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25), 0 12px 32px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3), 0 24px 64px rgba(0,0,0,0.25);
  --shadow-xl: 0 12px 32px rgba(0,0,0,0.35), 0 40px 100px rgba(0,0,0,0.3);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0e1117;
    --color-surface:        #161a22;
    --color-surface-2:      #1e222c;
    --color-surface-offset: #1a1e26;
    --color-divider:        #262a34;
    --color-border:         #2e3340;
    --color-text:           #eaeaea;
    --color-text-muted:     #8e9099;
    --color-text-faint:     #5c5f68;
    --color-text-inverse:   #0e1117;
    --color-primary:        #eaeaea;
    --color-primary-hover:  #ffffff;
    --color-primary-active: #ccc;
    --color-accent:         #d4b35e;
    --color-accent-hover:   #e0c070;
    --color-accent-light:   rgba(212, 179, 94, 0.08);
    --color-accent-soft:    rgba(212, 179, 94, 0.12);
    --color-success:        #4aad5f;
    --color-success-light:  #1a2e1f;
    --color-error:          #e85555;
    --color-error-light:    #2e1a1a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.25), 0 12px 32px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.3), 0 24px 64px rgba(0,0,0,0.25);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.35), 0 40px 100px rgba(0,0,0,0.3);
  }
}


/* === LAYOUT === */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}


/* === HEADER / NAV === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow var(--transition-smooth);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-mobile-toggle { display: none !important; }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-1);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-smooth), left var(--transition-smooth);
  border-radius: 1px;
}

.nav-link:hover, .nav-link:focus {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link--cta {
  background: var(--color-accent);
  color: #141c28;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--color-accent-hover);
  color: #141c28;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,161,78,0.25);
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.nav-mobile-toggle:hover {
  background: var(--color-surface-2);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  padding: var(--space-10) var(--space-6);
  flex-direction: column;
  gap: var(--space-6);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-md);
}

.nav-mobile__link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: var(--color-surface-2);
  color: var(--color-text);
}


/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0e1117;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 20s linear;
}

.hero:hover .hero__bg img {
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(14,17,23,0.88) 0%,
    rgba(14,17,23,0.55) 45%,
    rgba(14,17,23,0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: var(--space-20);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,161,78,0.1);
  border: 1px solid rgba(201,161,78,0.25);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin-bottom: var(--space-6);
  letter-spacing: -0.035em;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 52px;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--color-accent);
  color: #141c28;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,161,78,0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  background: var(--color-surface-2);
  border-color: var(--color-text-muted);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--dark:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  min-height: 58px;
}


/* === SECTION HEADERS === */
.section-header {
  text-align: left;
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
  line-height: 1.1;
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header--center .section-desc {
  margin-inline: auto;
}


/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--space-8);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: all var(--transition-smooth);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-card__image {
  overflow: hidden;
  background: var(--color-surface-2);
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: var(--space-6);
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-accent);
  white-space: nowrap;
}

.service-card__price .old-price {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: line-through;
  font-weight: 400;
  display: block;
  text-align: right;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.service-card__features li {
  font-size: var(--text-xs);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  padding: 6px var(--space-3);
  border-radius: var(--radius-full);
}

.service-card__cta {
  width: 100%;
}

.service-card--best-seller {
  border-color: var(--color-accent);
  position: relative;
}

.service-card--best-seller::before {
  content: "Best Seller";
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 5;
  background: var(--color-accent);
  color: #141c28;
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 6px var(--space-4);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* === ADD-ONS === */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-4);
}

.addon-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition-fast);
}

.addon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.addon-card__info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.addon-card__info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.addon-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-accent);
  white-space: nowrap;
}


/* === ADD-ON TOGGLES (Booking) === */
.addons-booking-section {
  margin-top: var(--space-8);
}

.booking-panel__subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.addons-hint {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.addon-toggle-grid {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 520px) {
  .addon-toggle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.addon-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 2px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  width: 100%;
  background: var(--color-surface);
}

.addon-toggle:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.addon-toggle--active {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.addon-toggle__check {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  color: transparent;
}

.addon-toggle--active .addon-toggle__check {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.addon-toggle__info {
  flex: 1;
  min-width: 0;
}

.addon-toggle__name {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
}

.addon-toggle__desc {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.addon-toggle__price {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}


/* Cart running total */
.cart-total {
  margin-top: var(--space-6);
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
}

.cart-total__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
}

.cart-total__row--addon {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.cart-total__line {
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-3) 0;
}

.cart-total__row--total {
  font-size: var(--text-base);
  font-weight: 600;
}

.cart-total__row--total strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
  font-weight: 800;
}

/* Booking summary addon row */
.booking-summary__row--addon {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.booking-summary__row--total {
  border-top: 2px solid var(--color-divider);
  margin-top: var(--space-3);
  padding-top: var(--space-4);
}

.booking-summary__row--total strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
  font-weight: 800;
}


/* === BOOKING SECTION === */
#booking {
  background: var(--color-surface-2);
}

.booking-container {
  max-width: 800px;
  margin-inline: auto;
}

.booking-steps {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  overflow-x: auto;
  padding-bottom: var(--space-2);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-faint);
  white-space: nowrap;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  transition: all var(--transition-fast);
}

.booking-step.active {
  color: var(--color-text-inverse);
  font-weight: 700;
  background: var(--color-primary);
}

.booking-step.completed {
  color: var(--color-success);
}

.booking-step__number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  flex-shrink: 0;
}

.booking-panel {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

@media (min-width: 768px) {
  .booking-panel {
    padding: var(--space-10);
  }
}

.booking-panel__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}


/* Service selector */
.service-select-grid {
  display: grid;
  gap: var(--space-3);
}

.service-select-option {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  border: 2px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  width: 100%;
  background: var(--color-surface);
  min-height: 64px;
}

.service-select-option:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.service-select-option.selected {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.service-select-option__name {
  font-weight: 700;
  font-size: var(--text-base);
  flex: 1;
}

.service-select-option__price {
  font-weight: 800;
  color: var(--color-accent);
  font-size: var(--text-lg);
  font-family: var(--font-display);
}

.service-select-option__duration {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* Date grid */
.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: var(--space-3);
}

.date-btn {
  padding: var(--space-4) var(--space-3);
  border: 2px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-surface);
  min-height: 72px;
}

.date-btn:hover {
  border-color: var(--color-accent);
}

.date-btn.selected {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.date-btn__day {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.date-btn__date {
  font-size: var(--text-base);
  font-weight: 700;
  margin-top: var(--space-1);
}


/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--space-3);
}

.time-btn {
  padding: var(--space-4);
  border: 2px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  background: var(--color-surface);
  min-height: 52px;
}

.time-btn:hover {
  border-color: var(--color-accent);
}

.time-btn.selected {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}


/* Booking form */
.booking-form {
  display: grid;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-group label span {
  color: var(--color-error);
}

.form-input {
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-family: var(--font-body);
  background: var(--color-bg);
  min-height: 54px;
  transition: all var(--transition-fast);
  color: var(--color-text);
}

.form-input:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(201,161,78,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.booking-summary {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.booking-summary h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
}

.booking-summary__row:last-child {
  border-bottom: none;
}

.booking-summary__row strong {
  color: var(--color-text);
}

.booking-nav {
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
  margin-top: var(--space-8);
}


/* Loading state */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-left-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.slots-loading {
  text-align: center;
  padding: var(--space-10);
  color: var(--color-text-muted);
}


/* Success message */
.booking-success {
  text-align: center;
  padding: var(--space-10) var(--space-4);
}

.booking-success__icon {
  width: 72px;
  height: 72px;
  background: var(--color-success-light);
  color: var(--color-success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.booking-success p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  max-width: 420px;
  margin-inline: auto;
  font-size: var(--text-base);
  line-height: 1.6;
}


/* === ABOUT / WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.why-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.why-image:hover img {
  transform: scale(1.03);
}

.why-points {
  display: grid;
  gap: var(--space-6);
}

.why-point {
  display: flex;
  gap: var(--space-5);
}

.why-point__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.why-point p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
  letter-spacing: 3px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.testimonial-card__author {
  font-size: var(--text-sm);
  font-weight: 700;
}

.testimonial-card__vehicle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}


/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: oklch(from var(--color-text) l c h / 0.12);
}

.faq-question {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text);
  min-height: 64px;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-surface-2);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
  color: var(--color-text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}


/* === FOOTER === */
.footer {
  background: #0a0d12;
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 var(--space-8);
}

[data-theme="light"] .footer,
:root:not([data-theme]) .footer {
  background: #0e1117;
}

[data-theme="dark"] .footer {
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

[data-theme="dark"] .footer__brand h3 {
  color: var(--color-text);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 360px;
}

.footer__col h4 {
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

[data-theme="dark"] .footer__col h4 {
  color: var(--color-text);
}

.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

[data-theme="dark"] .footer__col a {
  color: var(--color-text-muted);
}

.footer__col a:hover {
  color: var(--color-accent);
}

[data-theme="dark"] .footer__col a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

[data-theme="dark"] .footer__bottom {
  border-top-color: var(--color-divider);
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}

[data-theme="dark"] .footer__bottom a {
  color: var(--color-text-faint);
}

.footer__bottom a:hover {
  color: rgba(255,255,255,0.6);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
}

.footer__contact-item a {
  display: inline;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__contact-item a:hover {
  opacity: 0.75;
}

.footer__contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}


/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}


/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: var(--space-8);
  counter-reset: step;
}

.process-step {
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-5);
  border: 2px solid var(--color-accent-soft);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-inline: auto;
}


/* === SUBSCRIPTION HERO BANNER === */
.sub-hero {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  background: linear-gradient(160deg, #080b10 0%, #0e1117 40%, #141c28 100%);
}

.sub-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.sub-hero__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.sub-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.sub-hero__image:hover img {
  transform: scale(1.03);
}

.sub-hero__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #0e1117;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.sub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.sub-hero__desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 440px;
}

.sub-hero__pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.sub-hero__price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sub-hero__price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-accent);
}

.sub-hero__price-label {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.sub-hero__initial {
  background: rgba(201,161,78,0.1);
  border: 1px solid rgba(201,161,78,0.2);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
}

.sub-hero__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-8);
}

.sub-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}

.sub-hero__feature svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sub-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .sub-hero__image { order: -1; }
}


/* === SUBSCRIPTION SERVICE CARD === */
.service-card--subscription {
  border: 2px solid var(--color-accent);
  position: relative;
}

.service-card__subscription-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-accent);
  color: #0e1117;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.service-card__price-monthly {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
}


/* === SUBSCRIPTION MODAL === */
.sub-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sub-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sub-modal {
  background: #141c28;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8) var(--space-6);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-out-expo);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.sub-modal .form-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

.sub-modal .form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.sub-modal .form-input:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.07);
}

.sub-modal-overlay.active .sub-modal {
  transform: translateY(0) scale(1);
}

.sub-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  z-index: 2;
}

.sub-modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}


/* Modal progress steps */
.sub-modal__progress {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-8);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 5px;
}

.sub-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  border-radius: 11px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sub-step span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sub-step.active {
  color: #fff;
  background: rgba(201,161,78,0.1);
}

.sub-step.active span {
  background: var(--color-accent);
  color: #141c28;
  border-color: var(--color-accent);
}

.sub-step.completed span {
  background: rgba(201,161,78,0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.sub-step.completed {
  color: var(--color-accent);
}


/* Modal panels */
.sub-panel__header {
  margin-bottom: var(--space-6);
}

.sub-panel__header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.sub-panel__header p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  line-height: 1.6;
}


/* Form elements inside modal */
.sub-form-group {
  margin-bottom: var(--space-5);
}

.sub-form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.sub-form-group label .req {
  color: var(--color-accent);
}

.sub-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 500px) {
  .sub-form-row { grid-template-columns: 1fr; }
}


/* Condition buttons */
.sub-condition-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sub-condition-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 80px;
}

.sub-condition-btn:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.sub-condition-btn.active {
  border-color: var(--color-accent);
  background: rgba(201,161,78,0.08);
  color: var(--color-accent);
}


/* Day grid */
.sub-day-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.sub-day-btn {
  padding: 12px 4px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  min-height: 48px;
}

.sub-day-btn:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.sub-day-btn.active {
  border-color: var(--color-accent);
  background: rgba(201,161,78,0.08);
  color: var(--color-accent);
}


/* Time grid */
.sub-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sub-time-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 72px;
}

.sub-time-btn span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

.sub-time-btn:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.sub-time-btn.active {
  border-color: var(--color-accent);
  background: rgba(201,161,78,0.08);
  color: var(--color-accent);
}

.sub-time-btn.active span {
  color: rgba(201,161,78,0.6);
}


/* Info box */
.sub-info-box {
  display: flex;
  gap: 14px;
  padding: var(--space-5);
  background: rgba(201,161,78,0.06);
  border: 1px solid rgba(201,161,78,0.15);
  border-radius: 14px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.sub-info-box svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.sub-info-box strong {
  color: #fff;
}


/* Navigation */
.sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.05);
}


/* Summary on step 4 */
.sub-summary {
  margin-bottom: var(--space-6);
}

.sub-summary__section {
  margin-bottom: var(--space-5);
}

.sub-summary__section h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,161,78,0.12);
}

.sub-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: var(--text-sm);
}

.sub-summary__row span {
  color: rgba(255,255,255,0.45);
}

.sub-summary__row strong {
  color: #fff;
  font-weight: 600;
}


/* Price summary */
.sub-price-summary {
  background: rgba(201,161,78,0.04);
  border: 1px solid rgba(201,161,78,0.12);
  border-radius: 16px;
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}

.sub-price-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}

.sub-price-summary__row strong {
  color: var(--color-accent);
  font-size: var(--text-base);
  font-weight: 800;
}

.sub-price-summary__divider {
  height: 1px;
  background: rgba(201,161,78,0.12);
  margin: 4px 0;
}

.sub-price-summary__row--note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}

.sub-price-summary__row--note span {
  display: block;
}


/* Success state */
.sub-success {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.sub-success__icon {
  width: 72px;
  height: 72px;
  background: rgba(201,161,78,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--color-accent);
}

.sub-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.sub-success p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  max-width: 380px;
  margin-inline: auto;
  line-height: 1.65;
}

.sub-success__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}


/* Mobile responsive for modal */
@media (max-width: 640px) {
  .sub-modal {
    max-height: 95vh;
    padding: var(--space-5);
    border-radius: var(--radius-xl);
  }

  .sub-step {
    font-size: 11px;
    gap: 4px;
    padding: 10px 4px;
  }

  .sub-step span {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .sub-day-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sub-time-grid {
    grid-template-columns: 1fr;
  }

  .sub-condition-options {
    grid-template-columns: 1fr;
  }
}


/* === SUBSCRIPTION UPSELL IN BOOKING FLOW === */
.sub-upsell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: var(--space-5);
  margin-top: var(--space-6);
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-soft);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
}

.sub-upsell:hover {
  background: var(--color-accent-soft);
}

.sub-upsell__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
  flex-shrink: 0;
}

.sub-upsell__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-upsell__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.sub-upsell__text strong {
  color: var(--color-accent);
  font-weight: 700;
}

.sub-upsell__link {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: opacity var(--transition-fast);
}

.sub-upsell__link:hover {
  opacity: 0.75;
}


/* === UTILITIES === */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.hidden { display: none !important; }


/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === SELECTION === */
::selection {
  background: var(--color-accent);
  color: #141c28;
}

/* === FOCUS VISIBLE === */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}
