/* ═══════════════════════════════════════════════════════════════════════════
   Taxi Lille Métropole — Design System
   Dark Luxury Theme  ·  navy #0a0f1e  ·  gold #f0b429
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fonts ────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Custom Properties ────────────────────────────────────────────────── */
:root {
  --navy:       #0a0f1e;
  --navy-mid:   #111827;
  --navy-light: #1e2a3a;
  --gold:       #f0b429;
  --gold-dark:  #d4991f;
  --gold-light: #fcd34d;
  --white:      #ffffff;
  --off-white:  #f3f4f6;
  --text-muted: #9ca3af;
  --text-body:  #d1d5db;
  --danger:     #ef4444;
  --success:    #22c55e;
  --warning:    #f59e0b;
  --border:     rgba(240, 180, 41, 0.18);
  --glass-bg:   rgba(255, 255, 255, 0.04);
  --glass-blur: blur(12px);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--white); line-height: 1.2; }
.display-title { font-size: clamp(2.4rem,5vw,4rem); font-weight: 800; }
.section-title {
  font-size: clamp(1.8rem,3vw,2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.gold { color: var(--gold); }

/* ── Container ────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}
.nav-brand .brand-icon { color: var(--gold); font-size: 1.6rem; }
.nav-brand span em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 10%; right: 10%; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #05080f 0%, #0e1929 60%, #12202f 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(10,15,30,0.85) 0%,
    rgba(10,15,30,0.65) 50%,
    rgba(10,15,30,0.9) 100%
  );
}
/* Animated gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title .gold { display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-body);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.4rem; color: var(--gold); }

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(240,180,41,0.08);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.hero-stats .container {
  display: flex;
  justify-content: space-around;
  padding: 1.2rem 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,180,41,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,180,41,0.08);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════════════════ */
section { padding: 5rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.services-section { background: var(--navy-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,180,41,0.4);
  box-shadow: var(--shadow-md), 0 0 40px rgba(240,180,41,0.08);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: var(--transition);
}
.service-card:hover .service-card-img { filter: brightness(1) saturate(1.1); }
.service-card-body { padding: 1.5rem; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.2rem; }
.service-tag {
  display: inline-block;
  background: rgba(240,180,41,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-right: 0.4rem;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--navy); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 0 8px rgba(240,180,41,0.1);
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials { background: var(--navy-mid); overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-testimonials 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scroll-testimonials {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  width: 320px;
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); margin-bottom: 0.8rem; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-body); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.author-city { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #0e1929 0%, #1a2f1a 50%, #0e1929 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 380px;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--navy-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: var(--glass-blur);
  animation: slideInRight 0.4s ease both, fadeOut 0.4s ease 4.6s both;
  pointer-events: auto;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.toast.success .toast-icon { color: var(--success); }
.toast.error   .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }
.toast-msg { font-size: 0.93rem; color: var(--text-body); flex: 1; }
.toast-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; padding: 0; }
.toast-close:hover { color: var(--white); }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(120%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESERVATION FORM
   ═══════════════════════════════════════════════════════════════════════════ */
.reservation-section {
  background: var(--navy);
  min-height: 100vh;
  padding-top: 8rem;
}
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.reservation-info { padding-top: 1rem; }
.reservation-info h1 { margin-bottom: 1rem; }
.reservation-info p { color: var(--text-muted); margin-bottom: 2rem; }
.info-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.info-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-body);
}
.info-features li i { color: var(--gold); width: 20px; }

/* Multi-step wizard */
.wizard-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wizard-progress {
  background: var(--navy-mid);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--navy);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  z-index: 1;
}
.step-circle.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 5px rgba(240,180,41,0.15);
}
.step-circle.done {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}
.step-label { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }
.step-label.active { color: var(--gold); }
.step-connector {
  height: 2px;
  width: 60px;
  background: var(--border);
  margin: 0 -1px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.step-connector.done { background: var(--success); }

.wizard-body { padding: 2rem; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeSlideIn 0.4s ease both; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wizard-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Form fields */
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(240,180,41,0.04);
  box-shadow: 0 0 0 3px rgba(240,180,41,0.12);
}
.form-control.error { border-color: var(--danger); }
.form-control.valid { border-color: var(--success); }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 0.3rem; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

select.form-control option { background: var(--navy-mid); }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Review step */
.review-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.review-table tr + tr td { border-top: 1px solid var(--border); }
.review-table td { padding: 0.7rem 0; font-size: 0.9rem; }
.review-table td:first-child { color: var(--text-muted); width: 45%; }
.review-table td:last-child { color: var(--white); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.services-page {
  background: var(--navy);
  padding-top: 8rem;
}
.service-detail-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: rgba(240,180,41,0.4); box-shadow: var(--shadow-md); }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.sdc-img { width: 100%; height: 280px; object-fit: cover; }
.sdc-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.sdc-body h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.sdc-body p { color: var(--text-muted); margin-bottom: 1.2rem; }
.sdc-features { list-style: none; margin-bottom: 1.5rem; }
.sdc-features li { padding: 0.3rem 0; font-size: 0.9rem; color: var(--text-body); }
.sdc-features li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--navy);
  padding-top: 8rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h2 { margin-bottom: 0.5rem; }
.contact-info-card > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-detail-value { font-weight: 600; color: var(--white); font-size: 1rem; }
.contact-detail-value a { color: var(--gold); }

.contact-form-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h2 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { display: block; width: 100%; height: 220px; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5c; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   CONFIRMATION PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.confirmation-section {
  background: var(--navy);
  min-height: 100vh;
  padding-top: 9rem;
}
.confirmation-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.confirmation-header {
  background: linear-gradient(135deg, rgba(240,180,41,0.12), rgba(240,180,41,0.04));
  border-bottom: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
}
.checkmark-circle {
  width: 72px;
  height: 72px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: white;
  animation: popIn 0.5s cubic-bezier(0.68,-0.55,0.27,1.55) both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ref-code {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.confirmation-body { padding: 2rem; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.info-cell-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.info-cell-value { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.confirmation-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   ADMIN PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.admin-section {
  background: var(--navy);
  min-height: 100vh;
  padding-top: 8rem;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.admin-stat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.admin-stat-card .stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}
.admin-stat-card .stat-lbl { font-size: 0.8rem; color: var(--text-muted); }

.admin-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.admin-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  margin-bottom: -1px;
}
.admin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.table-wrapper {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: auto;
}
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  background: rgba(240,180,41,0.06);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
.data-table td { padding: 0.85rem 1.2rem; color: var(--text-body); border-top: 1px solid var(--border); vertical-align: middle; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}
.badge-pending   { background: rgba(245,158,11,0.15); color: #f59e0b; }
.badge-confirmed { background: rgba(34,197,94,0.15);  color: #22c55e; }
.badge-cancelled { background: rgba(239,68,68,0.15);  color: #ef4444; }

.status-form { display: flex; gap: 0.5rem; align-items: center; }
.status-form select {
  padding: 0.3rem 0.6rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.8rem;
  cursor: pointer;
}
.status-form button {
  padding: 0.3rem 0.7rem;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.error-section {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 240px; line-height: 1.6; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 0.8rem; }
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240,180,41,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE STICKY CTA BAR (shown only on phones)
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,15,30,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 1rem;
  gap: 0.6rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px; /* touch target */
}
.mobile-cta-bar .mcta-call {
  background: var(--gold);
  color: var(--navy);
}
.mobile-cta-bar .mcta-book {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Layout grids collapse */
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .reservation-layout    { grid-template-columns: 1fr; }
  .reservation-info      { display: none; }
  .contact-layout        { grid-template-columns: 1fr; }
  .service-detail-card   { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }

  /* Services grid — 2 columns on tablet */
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid            { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before    { display: none; }

  /* Admin table scrollable on tablet */
  .table-wrapper         { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table            { min-width: 700px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global touch sizing ─────────────────────────────────────────────── */
  :root { font-size: 15px; }
  section { padding: 3.5rem 0; }

  /* ── Navbar ──────────────────────────────────────────────────────────── */
  .navbar { padding: 1rem 0; }
  .navbar.scrolled { padding: 0.6rem 0; }
  .nav-brand { font-size: 1.2rem; }
  .nav-brand .brand-icon { font-size: 1.3rem; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100dvh; /* dynamic viewport height for mobile */
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 0.3rem;
    border-left: 1px solid var(--border);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }

  /* Touch-friendly nav links (min 44px tap target) */
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1.05rem;
    padding: 0.9rem 0.5rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    min-height: 44px;
  }
  .nav-links a::after { display: none; } /* remove underline on mobile */
  .nav-cta {
    margin-top: 1rem;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: var(--radius-sm) !important;
    text-align: center;
    display: block;
    padding: 0.9rem !important;
  }

  /* Nav backdrop overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.active { display: block; }

  /* ── Hero ────────────────────────────────────────────────────────────── */
  .hero { min-height: 100svh; padding-bottom: 100px; }
  .hero-content { padding: 0 1rem; padding-top: 5rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.9rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; } /* hidden on mobile to avoid bottom overlap */

  /* Hero stats bar — 2×2 grid */
  .hero-stats .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }
  .stat-item { padding: 0.5rem; border-right: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }

  /* ── Services grid — single column ──────────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-card-img { height: 180px; }

  /* ── How it works — 2 then 1 ────────────────────────────────────────── */
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .steps-grid::before { display: none; }

  /* ── Testimonials ────────────────────────────────────────────────────── */
  .testimonial-card { width: 280px; padding: 1.3rem; }

  /* ── CTA Banner ──────────────────────────────────────────────────────── */
  .cta-banner { padding: 3rem 0; }
  .cta-phone { font-size: 1.5rem; }
  .cta-banner div[style] { flex-direction: column; align-items: stretch; }
  .cta-banner div[style] .btn { width: 100%; justify-content: center; }

  /* ── Reservation ─────────────────────────────────────────────────────── */
  .reservation-section { padding-top: 6rem; padding-bottom: 6rem; }
  .wizard-card { border-radius: var(--radius); }
  .wizard-progress { padding: 1rem; }
  .step-circle { width: 32px; height: 32px; font-size: 0.8rem; }
  .step-connector { width: 40px; }
  .step-label { font-size: 0.68rem; }
  .wizard-body { padding: 1.3rem; }
  .wizard-footer {
    padding: 1rem 1.3rem;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .wizard-footer .btn { flex: 1; min-width: 0; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-control {
    font-size: 1rem; /* prevents iOS zoom on focus (must be ≥16px) */
    padding: 0.85rem 1rem;
    min-height: 48px;
  }
  select.form-control { min-height: 48px; }
  textarea.form-control { font-size: 1rem; }
  .review-table td { padding: 0.5rem 0; font-size: 0.85rem; }

  /* ── Services page detailed cards ───────────────────────────────────── */
  .services-page { padding-top: 6rem; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .sdc-img { height: 200px; width: 100%; }
  .sdc-body { padding: 1.5rem; }
  .sdc-body h3 { font-size: 1.3rem; }

  /* ── Contact ─────────────────────────────────────────────────────────── */
  .contact-section { padding-top: 6rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-info-card,
  .contact-form-card { padding: 1.5rem; }
  .map-container iframe { height: 180px; }
  .whatsapp-btn { width: 100%; justify-content: center; }

  /* ── Confirmation ────────────────────────────────────────────────────── */
  .confirmation-section { padding-top: 6rem; padding-bottom: 5rem; }
  .confirmation-header { padding: 1.5rem; }
  .ref-code { font-size: 1.4rem; }
  .info-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .confirmation-body { padding: 1.3rem; }
  .confirmation-footer { padding: 1.2rem; }

  /* ── Admin ───────────────────────────────────────────────────────────── */
  .admin-section { padding-top: 6rem; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .admin-stat-card { padding: 1rem; }
  .admin-stat-card .stat-val { font-size: 1.6rem; }
  .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { min-width: 640px; }
  .admin-tabs { overflow-x: auto; }
  .admin-tab { white-space: nowrap; padding: 0.7rem 1rem; font-size: 0.85rem; }
  .status-form { flex-direction: column; gap: 0.3rem; }

  /* ── Footer ──────────────────────────────────────────────────────────── */
  footer { padding: 2.5rem 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .footer-brand p { max-width: none; }
  .footer-col h4 { margin-bottom: 0.8rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem 0;
    /* Add bottom padding so content isn't hidden behind mobile CTA bar */
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }

  /* ── Toast ───────────────────────────────────────────────────────────── */
  .toast-container {
    left: 0.8rem;
    right: 0.8rem;
    top: 4.5rem;
    max-width: none;
  }
  .toast { padding: 0.85rem 1rem; }

  /* ── Back to top — above mobile CTA bar ─────────────────────────────── */
  .back-to-top {
    bottom: calc(6rem + env(safe-area-inset-bottom));
    right: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* ── Section headings ────────────────────────────────────────────────── */
  .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }

  /* ── Show mobile CTA bar ────────────────────────────────────────────── */
  .mobile-cta-bar { display: flex; }

  /* Add bottom padding to body so last sections aren't hidden behind bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small phones (≤ 480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { font-size: 14px; }

  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .display-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }

  /* Buttons full-width */
  .btn { width: 100%; justify-content: center; }
  /* Except inline ones */
  .nav-brand, .toast-close, .status-form button,
  .admin-tab, .footer-social .social-icon { width: auto; }

  /* Steps — single column */
  .steps-grid { grid-template-columns: 1fr; }

  /* Admin stats 2 col */
  .admin-stats { grid-template-columns: 1fr 1fr; }

  /* Hero stats 2 col */
  .hero-stats .container { grid-template-columns: 1fr 1fr; }

  /* Confirmation */
  .ref-code { font-size: 1.2rem; letter-spacing: 0.03em; }

  /* Wizard progress — compact */
  .step-connector { width: 28px; }
  .step-circle { width: 28px; height: 28px; font-size: 0.75rem; }

  /* Nav brand smaller */
  .nav-brand { font-size: 1.05rem; }

  /* Service detail body */
  .sdc-img { height: 160px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Touch / Hover media
   ═══════════════════════════════════════════════════════════════════════════ */
@media (hover: none) {
  /* Remove hover animations on touch devices that can't hover */
  .service-card:hover { transform: none; }
  .btn-primary:hover { transform: none; box-shadow: none; }
  .btn-outline:hover { background: transparent; }
  .nav-links a:hover { color: inherit; }
  .back-to-top:hover { transform: none; }
  .social-icon:hover { border-color: var(--border); color: var(--text-muted); }

  /* Active states instead */
  .btn:active { opacity: 0.85; transform: scale(0.98); }
  .service-card:active { transform: scale(0.99); }
  .nav-links a:active { color: var(--gold); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SAFE AREA INSETS (iPhone notch / home indicator)
   ═══════════════════════════════════════════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-cta-bar {
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  }
  .navbar .container {
    padding-left:  max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
}