/* ============================================
   Chilterns Airport Transfer — Premium Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Variables --- */
:root {
  --navy: #0F1C3F;
  --navy-light: #1B2D5B;
  --navy-dark: #0A1229;
  --gold: #C8A24E;
  --gold-light: #E8D59A;
  --gold-dark: #A6832E;
  --cream: #FAF8F4;
  --ivory: #FFFDF9;
  --white: #FFFFFF;
  --black: #111111;
  --charcoal: #2D2D2D;
  --graphite: #555555;
  --muted: #8A8A8A;
  --light-border: rgba(200, 190, 170, 0.2);
  --success: #2A8B6A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --header-h: 80px;
  --section-pad: clamp(60px, 10vw, 120px);
  --container: min(1240px, 92vw);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }

.container { width: var(--container); margin: 0 auto; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--graphite); max-width: 65ch; }

.subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.italic { font-style: italic; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.25s; }
.reveal-delay-4 { transition-delay: 0.35s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,162,78,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,28,63,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-radius: 6px;
}
.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1002;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-border);
  transition: all 0.4s var(--ease-smooth);
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-smooth);
}

.logo:hover .logo-icon { transform: scale(1.05); }

.logo-icon svg { width: 24px; height: 24px; fill: var(--gold); }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-smooth);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,162,78,0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all 0.4s var(--ease-smooth);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,162,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,162,78,0.05) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(200,162,78,0.15);
  border: 1px solid rgba(200,162,78,0.3);
  border-radius: 30px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Hero Booking Card */
.hero-booking {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
}

.hero-booking h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.hero-booking > p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.booking-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,78,0.12);
}

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

.booking-form .btn { width: 100; justify-content: center; margin-top: 4px; }

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,162,78,0.08), transparent 70%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero .hero-text { margin-bottom: 0; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* --- Sections --- */
section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}
.section-header .subtitle { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { margin: 0 auto; }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.65); }
.bg-navy .subtitle { color: var(--gold); }

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid var(--light-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover::before { transform: scaleX(1); }

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

.service-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 20px; }

.service-card .card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-smooth), color 0.3s;
}
.service-card:hover .card-link { gap: 12px; color: var(--navy); }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--light-border);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--cream); }

.stat-item h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.trust-item svg {
  width: 24px; height: 24px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* --- Why Choose Us / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  transition: all 0.35s var(--ease-smooth);
}

.feature-item:hover {
  background: var(--cream);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200,162,78,0.12), rgba(200,162,78,0.05));
  border-radius: 16px;
  transition: all 0.35s var(--ease-smooth);
}

.feature-icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
}

.feature-item:hover .feature-icon {
  background: var(--navy);
}

.feature-item:hover .feature-icon svg {
  stroke: var(--gold);
}

.feature-item h4 { margin-bottom: 10px; }
.feature-item p { font-size: 0.9rem; margin: 0 auto; }

/* --- Airport Grid --- */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.airport-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--light-border);
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.airport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.airport-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.airport-card-icon svg {
  width: 24px; height: 24px;
  fill: var(--gold);
}

.airport-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.airport-card p { font-size: 0.85rem; color: var(--muted); }
.airport-card .distance { font-size: 0.72rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* --- Area Coverage --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-tag {
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  border: 1px solid var(--light-border);
  transition: all 0.3s var(--ease-smooth);
}

.area-tag:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--light-border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth);
}

.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 22px; }

.faq-answer p { font-size: 0.95rem; line-height: 1.8; }

/* --- CTA Band --- */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,162,78,0.08), transparent 70%);
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.6); margin: 0 auto 32px; }

.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-block { margin-bottom: 32px; }

.contact-info-block h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info-block p { font-size: 1rem; line-height: 1.8; }

.contact-info-block a {
  color: var(--gold-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.contact-info-block a:hover { border-color: var(--gold-dark); }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  counter-increment: step;
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  line-height: 1;
  opacity: 0.5;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; margin: 0 auto; }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.35s var(--ease-smooth);
  animation: floatPulse 3s ease-in-out infinite;
}

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

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
}

.whatsapp-float-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label { opacity: 1; transform: translateX(0); }

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--light-border);
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}

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

.pricing-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.pricing-card-header .subtitle { color: var(--gold-light); margin-bottom: 8px; }
.pricing-card-header h3 { color: var(--white); font-size: 1.5rem; }

.pricing-card-body { padding: 28px 32px 32px; }

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
}
.pricing-item:last-of-type { border-bottom: none; }

.pricing-item-name { font-size: 0.92rem; color: var(--charcoal); }

.pricing-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

/* --- About Grid --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  padding: 40px;
}

.credentials-list { margin: 24px 0; }

.credentials-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--graphite);
}

.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 2px;
  background: var(--gold);
}

/* --- Mobile CTA Bar --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--light-border);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-cta-bar-inner { display: flex; gap: 10px; }

.mobile-cta-bar .btn {
  flex: 1;
  padding: 14px 10px;
  font-size: 0.7rem;
  text-align: center;
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-booking { margin-top: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .airport-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.5s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }

  .nav-links.open { right: 0; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
  .hero::after { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat { min-width: 100px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .airport-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -30px; }
  .form-row { grid-template-columns: 1fr; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }

  .whatsapp-float { bottom: 85px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-float-label { display: none; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
