/* =========================================
   DESIGN TOKENS — Concierge Booking Site
   Dark luxury aesthetic: deep navy bg,
   violet/indigo glow accents, glass panels
   ========================================= */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7.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;

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

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Fonts */
  --font-display: 'Clash Display', 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* === DARK LUXURY PALETTE (default = dark) === */
  /* Deep navy/midnight backgrounds */
  --color-bg:              #07071a;
  --color-surface:         #0d0d28;
  --color-surface-2:       #111133;
  --color-surface-panel:   rgba(255,255,255,0.04);
  --color-surface-card:    rgba(255,255,255,0.06);
  --color-border:          rgba(255,255,255,0.1);
  --color-border-glow:     rgba(139,92,246,0.3);
  --color-divider:         rgba(255,255,255,0.06);

  /* Text */
  --color-text:             #f0efff;
  --color-text-muted:       rgba(240,239,255,0.6);
  --color-text-faint:       rgba(240,239,255,0.35);

  /* Accent: Violet → Indigo */
  --color-accent:           #8b5cf6;
  --color-accent-bright:    #a78bfa;
  --color-accent-hover:     #7c3aed;
  --color-accent-2:         #6366f1;
  --color-accent-glow:      rgba(139,92,246,0.4);

  /* Gradient definitions */
  --grad-hero:     linear-gradient(135deg, #07071a 0%, #0d0523 50%, #07071a 100%);
  --grad-accent:   linear-gradient(135deg, #8b5cf6, #6366f1);
  --grad-card:     linear-gradient(135deg, rgba(139,92,246,0.08), rgba(99,102,241,0.04));
  --grad-cta:      linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --grad-glow:     radial-gradient(ellipse at center, rgba(139,92,246,0.2) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.6);
  --shadow-glow:  0 0 40px rgba(139,92,246,0.25);
  --shadow-glow-sm: 0 0 20px rgba(139,92,246,0.2);

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  160ms var(--ease-spring);
  --t-med:   240ms var(--ease-spring);
  --t-slow:  400ms var(--ease-spring);
}

/* ============= GLOBAL ============= */

body {
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139,92,246,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(99,102,241,0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

a { color: var(--color-accent-bright); text-decoration: none; }
a:hover { color: var(--color-text); }

/* ============= LAYOUT ============= */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-16));
}

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

/* ============= NAVIGATION ============= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: rgba(7,7,26,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--t-med);
}

.nav--scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav__links a:hover { color: var(--color-text); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.nav__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-med);
}

/* ============= BUTTONS ============= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7em 1.6em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  border: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(139,92,246,0.6);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-surface-panel);
  border-color: var(--color-border-glow);
  color: var(--color-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent-bright);
  border: 1px solid var(--color-border-glow);
}

.btn--outline:hover {
  background: rgba(139,92,246,0.1);
  color: var(--color-accent-bright);
}

.btn--lg {
  padding: 0.85em 2.2em;
  font-size: var(--text-base);
}

/* ============= HERO ============= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
}

.hero__bg-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding: 0.4em 1.1em;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-full);
  color: var(--color-accent-bright);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.08;
}

.hero__heading-gradient {
  background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-16);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-divider);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* ============= SECTION LABELS ============= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

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

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
  line-height: 1.65;
}

.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

/* ============= SERVICES ============= */

.services { background: var(--color-surface); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.service-card {
  position: relative;
  padding: var(--space-8);
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity var(--t-med);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(139,92,246,0.5);
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(99,102,241,0.06));
}

.service-card__badge {
  display: inline-block;
  padding: 0.25em 0.75em;
  margin-bottom: var(--space-5);
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  padding: 12px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius-lg);
  color: var(--color-accent-bright);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 40ch;
}

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

.service-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.service-card__features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: rgba(139,92,246,0.2);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23a78bfa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
}

.service-card__price-from {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.service-card__price-amount {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

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

/* ============= HOW IT WORKS ============= */

.how { background: var(--color-bg); }

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  position: relative;
}

.how__connector {
  display: none;
}

.step-card {
  padding: var(--space-8);
  background: var(--color-surface-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-5);
  background: var(--grad-cta);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 24px rgba(139,92,246,0.5);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.step-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 28ch;
  margin-inline: auto;
}

/* ============= BOOKING FORM ============= */

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

.booking::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 4vw, var(--space-16));
  align-items: start;
}

.booking__info {
  position: sticky;
  top: 6rem;
}

.booking__info-points {
  list-style: none;
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.booking__info-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.booking__info-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 7px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius-md);
  color: var(--color-accent-bright);
  margin-top: 2px;
}

.form-panel {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  backdrop-filter: blur(10px);
}

.form-panel__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.form-panel__sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
}

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

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75em 1em;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.2);
  background: rgba(255,255,255,0.07);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  background-color: rgba(255,255,255,0.05);
  cursor: pointer;
}

.form-select option {
  background: #1a1a3e;
  color: var(--color-text);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-divider {
  height: 1px;
  background: var(--color-divider);
  margin-block: var(--space-6);
}

.package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.package-option {
  position: relative;
}

.package-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.package-option__label {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.package-option__label-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-1);
}

.package-option__label-price {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.package-option input:checked + .package-option__label {
  border-color: var(--color-accent);
  background: rgba(139,92,246,0.12);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.package-option input:checked + .package-option__label .package-option__label-name {
  color: var(--color-accent-bright);
}

.deposit-notice {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.deposit-notice svg { flex-shrink: 0; color: var(--color-accent-bright); }

.form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-submit-wrap .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9em 2em;
  font-size: var(--text-base);
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============= TESTIMONIALS ============= */

.testimonials {
  background: var(--color-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.testimonial-card {
  padding: var(--space-7);
  background: var(--color-surface-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--t-med), border-color var(--t-med);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-glow);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: #fbbf24;
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
  max-width: 40ch;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============= TRUST BADGES ============= */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-10);
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.trust-item svg { color: var(--color-accent-bright); }

/* ============= FAQ ============= */

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

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--content-default);
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-med);
}

.faq-item.open {
  border-color: var(--color-border-glow);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-panel);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
}

.faq-item__question:hover {
  background: rgba(255,255,255,0.06);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: transform var(--t-med);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-spring), padding var(--t-med);
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 65ch;
}

/* ============= CONTACT / FOOTER CTA ============= */

.contact-cta {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.contact-cta__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.contact-cta__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.contact-cta__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-cta__details a {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.contact-cta__details a:hover { color: var(--color-text); }

/* ============= FOOTER ============= */

.footer {
  padding-block: var(--space-10);
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}

.footer__brand-mark { width: 28px; height: 28px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--color-text-muted); }

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============= CONFIRMATION MODAL ============= */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,7,26,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

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

.modal {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--t-slow);
  box-shadow: var(--shadow-glow);
}

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

.modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  background: rgba(139,92,246,0.15);
  border: 2px solid rgba(139,92,246,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-bright);
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.modal__sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 36ch;
  margin-inline: auto;
}

.modal__ref {
  display: inline-block;
  padding: 0.4em 1em;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-bright);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
}

/* ============= PAYMENT SECTION ============= */

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.payment-option {
  position: relative;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option__label {
  display: block;
  padding: var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.payment-option input:checked + .payment-option__label {
  border-color: var(--color-accent);
  background: rgba(139,92,246,0.1);
}

.payment-option__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-1);
}

.payment-option__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============= MOBILE NAV ============= */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7,7,26,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

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

.mobile-nav__links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--t-fast);
}

.mobile-nav__links a:hover { color: var(--color-text); }

.mobile-nav__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.5rem;
  padding: var(--space-2);
}

/* ============= SCROLL ANIMATIONS ============= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-spring), transform 600ms var(--ease-spring);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============= RESPONSIVE ============= */

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu-toggle { display: flex; }

  .booking__layout { grid-template-columns: 1fr; }
  .booking__info { position: static; }

  .form-row { grid-template-columns: 1fr; }
  .package-selector { grid-template-columns: 1fr 1fr; }
  .payment-options { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }

  .hero__stats { gap: var(--space-8); }
}

@media (max-width: 480px) {
  .package-selector { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact-cta__actions { flex-direction: column; align-items: center; }
  .contact-cta__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============= STRIPE PAYMENT BUTTON OVERRIDE ============= */
#stripe-pay-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* Loader spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

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