*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Brand colours — aligned with electrictransits.africa ── */
  --navy:       #011045;   /* Penn Blue — primary dark (matches parent site) */
  --navy-2:     #0a1d6b;   /* mid navy */
  --navy-3:     #071030;   /* deepest navy */
  --slate:      #0a1d6b;   /* Mid Navy Blue — accent sections */
  --cyan:       #7FF9FE;   /* Cyan — primary accent on dark */
  --green:      #90FFA7;   /* Light Green — secondary accent */
  --green-dark: #0a1d6b;   /* Mid Navy Blue — used on light backgrounds */
  --green-dim:  rgba(127,249,254,0.10);  /* cyan tint for dark section accents */
  --white:      #FFFFFF;
  --text:       rgba(255,255,255,0.88);
  --muted:      #8a93b0;   /* matches parent site muted text */
  --border:     rgba(127,249,254,0.15);  /* cyan-tinted border (matches parent) */
  --radius:     12px;
  /* ── Light section theme ── */
  --cream:          #EFEFEF;   /* Anti-Flash White */
  --cream-card:     #FFFFFF;
  --cream-2:        #F5F5F5;
  --text-l:         #2d3436;
  --heading-l:      #011045;   /* Penn Blue for headings on light */
  --muted-l:        #5f6b74;
  --border-l:       #d8d8d8;
  --border-l2:      #bebebe;
}
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; background: var(--cream); color: var(--heading-l); min-height: 100vh; }

/* ── Animations ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; } .fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; } .fade-up.d4 { transition-delay: 0.4s; }

/* ── Nav ────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(1,16,69,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo img { mix-blend-mode: screen; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; animation: pulseDot 2.5s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(127,249,254,0.4); } 50% { box-shadow: 0 0 0 5px rgba(127,249,254,0); } }
.nav-links { display: flex; gap: 0.1rem; align-items: center; }
.nav-link { background: none; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; color: var(--muted); padding: 0.5rem 0.85rem; border-radius: 6px; transition: color 0.2s, background 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { background: var(--cyan); color: var(--navy); border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.3rem; border-radius: 6px; transition: background 0.2s, transform 0.15s; margin-left: 0.5rem; text-decoration: none; display: inline-flex; align-items: center; }
.nav-cta:hover { background: #a5fbff; transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-login { background: rgba(255,255,255,0.07); color: var(--white); border: 1px solid rgba(255,255,255,0.18); cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 500; padding: 0.5rem 1.1rem; border-radius: 6px; transition: background 0.2s, border-color 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
.nav-login:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }
.nav-book-mobile { display: none; }
@media (max-width: 780px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-2); padding: 1rem 1.5rem 1.25rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 1.5rem; }
  .nav-book-mobile { display: flex; align-items: center; justify-content: center; background: var(--cyan); color: var(--navy) !important; font-weight: 700; border-radius: 7px; padding: 0.75rem 1.5rem; margin-top: 0.75rem; text-align: center; font-size: 0.9rem; letter-spacing: 0.01em; }
  .nav-book-mobile:hover { background: #a5fbff; }
}

/* ── Hero ───────────────────────────────────────── */
.hero-bg { border-bottom: 1px solid var(--border); position: relative; overflow: hidden; min-height: 680px; display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; z-index: 0; background-image: url("images/maasai mara.jpg"); background-size: cover; background-position: center 38%; }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(1,16,69,0.92) 0%, rgba(1,16,69,0.60) 42%, rgba(1,16,69,0.15) 100%), linear-gradient(to top, rgba(1,16,69,0.50) 0%, transparent 45%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; z-index: 1; background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero { max-width: 1200px; margin: 0 auto; padding: 9rem 2.5rem 7rem; position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 600px; }
.hero-pills-float { position: absolute; bottom: 2.75rem; right: 2.5rem; display: flex; flex-direction: column; gap: 0.65rem; z-index: 3; }
.hero-pills-float .hero-pill { position: static; transform: none; }
@media (max-width: 920px) { .hero { padding: 5.5rem 1.5rem 5rem; } .hero-pills-float { display: none; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.07; max-width: 600px; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 span { color: var(--cyan); }
.hero-lead { font-size: 1.05rem; color: var(--muted); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-pill { position: absolute; background: rgba(1,16,69,0.96); border: 1px solid rgba(127,249,254,0.28); border-radius: 100px; padding: 0.5rem 1.1rem; font-size: 0.76rem; font-weight: 500; color: var(--white); white-space: nowrap; backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 0.45rem; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.pill-1 { animation: pillFloat 4s ease-in-out infinite; }
.pill-2 { animation: pillFloat 4.5s ease-in-out infinite 0.6s; }
.pill-3 { animation: pillFloat 5s ease-in-out infinite 1.1s; }
@keyframes pillFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ── Buttons ────────────────────────────────────── */
.btn-primary { background: var(--cyan); color: var(--navy); border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 0.9rem 2.1rem; border-radius: 7px; transition: background 0.2s, transform 0.15s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-primary:hover { background: #a5fbff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.18); cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 400; padding: 0.9rem 2.1rem; border-radius: 7px; transition: border-color 0.2s, color 0.2s, transform 0.15s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── Stats ──────────────────────────────────────── */
.stats-bar { background: var(--cream-card); border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); padding: 2.25rem 2.5rem; display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { padding: 0.5rem 3rem; border-right: 1px solid var(--border-l); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--muted-l); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 6px; }
@media (max-width: 600px) { .stat-item { padding: 0.75rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border-l); } .stat-item:last-child { border-bottom: none; } }

/* ── Sections ───────────────────────────────────── */
.section { padding: 6.5rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--navy-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark .section { padding: 6.5rem 2.5rem; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; }
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-dark .section-eyebrow { color: var(--cyan); }
.section-dark .section-eyebrow::before { background: var(--cyan); }
.page-hero .section-eyebrow { color: var(--cyan); }
.page-hero .section-eyebrow::before { background: var(--cyan); }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 700; color: var(--heading-l); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.01em; }
.section-dark .section-title { color: var(--white); }
.section-sub { font-size: 0.97rem; color: var(--muted-l); line-height: 1.8; max-width: 540px; font-weight: 400; }
.section-dark .section-sub { color: var(--muted); }

/* ── Service cards ──────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }
.service-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(1,16,69,0.07); transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.service-card:hover { border-color: var(--navy); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(1,16,69,0.12); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--cream-2), var(--cream)); z-index: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.5s ease; display: block; position: relative; z-index: 1; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: linear-gradient(to top, var(--cream-card), transparent); z-index: 2; pointer-events: none; }
.service-body { padding: 1.5rem; }
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--heading-l); margin-bottom: 0.65rem; }
.service-card p { font-size: 0.85rem; color: var(--muted-l); line-height: 1.7; }

/* ── Why cards with images ──────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(1,16,69,0.07); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.why-card:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(1,16,69,0.08); }
.why-card-img { height: 150px; overflow: hidden; position: relative; }
.why-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 0.5s ease; }
.why-card:hover .why-card-img img { transform: scale(1.06); }
.why-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 36px; background: linear-gradient(to top, var(--cream-card), transparent); pointer-events: none; }
.why-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.why-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--heading-l); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.78rem; color: var(--muted-l); line-height: 1.6; }

/* ── Reviews carousel ───────────────────────────── */
.reviews-wrap { overflow: hidden; position: relative; }
.reviews-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.review-card { min-width: 100%; padding: 0 1rem; }
@media (min-width: 700px) { .review-card { min-width: 50%; } }
@media (min-width: 1000px) { .review-card { min-width: 33.333%; } }
.review-inner { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; height: 100%; box-shadow: 0 2px 8px rgba(1,16,69,0.07); }
.review-stars { color: var(--navy); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text { font-size: 0.88rem; color: var(--muted-l); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.review-role { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-top: 0; }
.reviews-nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.reviews-dot.active { background: var(--cyan); }
.reviews-arrows { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.reviews-btn { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; color: var(--muted); font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.reviews-btn:hover { background: var(--green-dim); color: var(--cyan); border-color: rgba(127,249,254,0.3); }

/* ── CTA strip ──────────────────────────────────── */
.cta-strip { background: var(--cream); padding: 5.5rem 2.5rem; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border-l); }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(1,16,69,0.06) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.cta-strip h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--heading-l); margin-bottom: 0.75rem; position: relative; }
.cta-strip p { font-size: 0.97rem; color: var(--muted-l); margin-bottom: 2rem; position: relative; }
.btn-dark { background: var(--navy); color: var(--white); border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 0.9rem 2.1rem; border-radius: 7px; transition: background 0.2s, transform 0.15s; position: relative; text-decoration: none; display: inline-flex; align-items: center; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }

/* ── Page hero (inner pages) ────────────────────── */
.page-hero { background: var(--navy-2); padding: 5.5rem 2.5rem 4rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); font-size: 1rem; font-weight: 400; max-width: 540px; line-height: 1.75; }
.page-hero-photo { min-height: 340px; display: flex; align-items: flex-end; }
.page-hero-photo .page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-photo .page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,16,69,0.95) 0%, rgba(1,16,69,0.55) 60%, rgba(1,16,69,0.2) 100%); }
.page-hero-photo .page-hero-inner { padding-bottom: 3.5rem; }

/* ── Fleet ──────────────────────────────────────── */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.fleet-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(1,16,69,0.07); transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.fleet-card:hover { transform: translateY(-6px); border-color: var(--navy); box-shadow: 0 20px 48px rgba(1,16,69,0.14); }
.fleet-visual { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.fleet-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-visual img { transform: scale(1.05); }
.fleet-visual::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, var(--cream-card), transparent); pointer-events: none; z-index: 1; }
.fleet-body { padding: 1.75rem; }
.fleet-tag { display: inline-block; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 4px; margin-bottom: 0.85rem; background: rgba(144,255,167,0.25); color: var(--navy); }
.fleet-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.45rem; }
.fleet-cap { font-size: 0.78rem; color: var(--green-dark); font-weight: 500; margin-bottom: 0.75rem; }
.fleet-card p { font-size: 0.84rem; color: var(--muted-l); line-height: 1.7; margin-bottom: 1.2rem; }
.fleet-specs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.spec { font-size: 0.71rem; color: var(--muted-l); display: flex; align-items: center; gap: 0.35rem; background: var(--cream-2); border: 1px solid var(--border-l); padding: 0.3rem 0.65rem; border-radius: 4px; }
.spec-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-dark); flex-shrink: 0; }

/* Lodge section */
.lodge-section { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 3rem; margin-top: 4rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
@media (max-width: 640px) { .lodge-section { grid-template-columns: 1fr; } }
.lodge-section h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.75rem; }
.lodge-section p { font-size: 0.9rem; color: var(--muted-l); line-height: 1.8; }

/* ── Booking ────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
.form-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2.25rem; box-shadow: 0 2px 12px rgba(1,16,69,0.07); }
.form-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.35rem; }
.form-card .subtitle { font-size: 0.84rem; color: var(--muted-l); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-l); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.72rem 1rem; border: 1px solid var(--border-l); border-radius: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: var(--heading-l); background: var(--cream-2); transition: border-color 0.2s, background 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0aca6; }
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px var(--cream-2) inset; -webkit-text-fill-color: var(--heading-l); border-color: var(--border-l); }
.form-group select option { background: var(--cream-card); color: var(--heading-l); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-dark); background: rgba(1,16,69,0.03); }
.form-group textarea { resize: vertical; min-height: 90px; }
.corporate-toggle { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding: 1rem; background: rgba(1,16,69,0.05); border: 1px solid rgba(1,16,69,0.2); border-radius: 8px; cursor: pointer; }
.corporate-toggle input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green-dark); cursor: pointer; flex-shrink: 0; }
.corporate-toggle span { font-size: 0.85rem; color: var(--heading-l); }
.trip-type { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; }
.trip-btn { flex: 1; padding: 0.65rem; border: 1px solid var(--border-l); border-radius: 7px; background: transparent; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; cursor: pointer; color: var(--muted-l); transition: all 0.2s; }
.trip-btn.active { background: var(--cyan); color: var(--navy); border-color: var(--cyan); font-weight: 600; }
.btn-submit { width: 100%; padding: 0.9rem; background: var(--cyan); color: var(--navy); border: none; border-radius: 7px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; transition: background 0.2s, transform 0.15s; margin-top: 0.5rem; }
.btn-submit:hover { background: #a5fbff; transform: translateY(-1px); }
.summary-card { background: var(--cream-2); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; position: sticky; top: 84px; box-shadow: 0 2px 12px rgba(1,16,69,0.07); }
.summary-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--heading-l); margin-bottom: 1.5rem; }
.summary-line { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border-l); }
.summary-line:last-of-type { border-bottom: none; }
.summary-label { font-size: 0.7rem; color: var(--muted-l); text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.summary-val { font-size: 0.85rem; color: var(--heading-l); text-align: right; }
.price-line { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(1,16,69,0.2); }
.price-label { font-size: 0.7rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.price-val { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); }
.features-list { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-l); }
.feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--muted-l); padding: 0.3rem 0; }
.check { width: 16px; height: 16px; border-radius: 50%; background: rgba(144,255,167,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 9px; color: var(--navy); }
.booking-confirm { display: none; text-align: center; padding: 3rem 2rem; }
.booking-confirm.show { display: block; }
.confirm-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }
.confirm-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; color: var(--heading-l); margin-bottom: 0.5rem; }
.confirm-sub { font-size: 0.9rem; color: var(--muted-l); margin-bottom: 1.5rem; }
.ref { font-family: monospace; background: rgba(144,255,167,0.25); border: 1px solid rgba(144,255,167,0.5); padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.9rem; color: var(--navy); display: inline-block; }

/* ── Pricing ────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; box-shadow: 0 2px 8px rgba(1,16,69,0.07); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.pricing-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(1,16,69,0.12); }
.pricing-card.featured { border-color: var(--green-dark); background: rgba(1,16,69,0.03); }
.pricing-badge { display: inline-block; font-size: 0.67rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 4px; margin-bottom: 1rem; background: rgba(144,255,167,0.25); color: var(--navy); }
.pricing-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.5rem; }
.pricing-card .price-from { font-size: 0.72rem; color: var(--muted-l); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card .price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 0.25rem; }
.pricing-card .price-unit { font-size: 0.78rem; color: var(--muted-l); margin-bottom: 1.5rem; }
.pricing-includes { list-style: none; margin-bottom: 1.5rem; }
.pricing-includes li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--muted-l); padding: 0.35rem 0; line-height: 1.5; }
.pricing-includes li::before { content: '✓'; color: var(--green-dark); font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 3.5rem; }
.pricing-table th { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-l); text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-l); }
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table td { padding: 1rem; border-bottom: 1px solid var(--border-l); font-size: 0.88rem; color: var(--heading-l); vertical-align: middle; }
.pricing-table td:not(:first-child) { text-align: center; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .td-service { font-weight: 500; color: var(--heading-l); }
.pricing-table .td-note { font-size: 0.74rem; color: var(--muted-l); display: block; }
.td-green { color: var(--green-dark); font-weight: 600; }
.corporate-banner { background: rgba(1,16,69,0.05); border: 1px solid rgba(1,16,69,0.2); border-radius: var(--radius); padding: 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
@media (max-width: 640px) { .corporate-banner { grid-template-columns: 1fr; } }
.corporate-banner h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.5rem; }
.corporate-banner p { font-size: 0.88rem; color: var(--muted-l); line-height: 1.75; }
.surcharge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.surcharge-item { background: var(--cream-2); border: 1px solid var(--border-l); border-radius: 8px; padding: 1rem 1.25rem; }
.surcharge-item dt { font-size: 0.78rem; font-weight: 600; color: var(--heading-l); margin-bottom: 0.25rem; }
.surcharge-item dd { font-size: 0.75rem; color: var(--muted-l); }

/* ── Price cards ────────────────────────────────── */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 700px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.price-card:hover { border-color: var(--green-dark); transform: translateY(-4px); }
.price-card-featured { border-color: var(--green-dark); background: rgba(1,16,69,0.03); }
.price-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-l); margin-bottom: 0.75rem; }
.price-card-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 0.75rem; }
.price-card-note { font-size: 0.82rem; color: var(--muted-l); line-height: 1.6; flex: 1; }

/* ── Safari calculator ──────────────────────────── */
.safari-calc { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; margin-top: 2.5rem; max-width: 680px; }
.safari-calc-controls { display: flex; gap: 1.5rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 1.5rem; }
.safari-toggle-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.safari-toggle-wrap label { font-size: 0.78rem; font-weight: 500; color: var(--muted-l); letter-spacing: 0.04em; text-transform: uppercase; }
.safari-price-result { background: rgba(1,16,69,0.06); border: 1px solid rgba(1,16,69,0.2); border-radius: 8px; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; min-height: 52px; }
#safari-price-label { font-size: 0.9rem; color: var(--muted-l); }
.safari-price-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--green-dark); }

/* ── Location autocomplete ──────────────────────── */
.loc-dropdown { position:absolute; top:100%; left:0; right:0; background:var(--cream-card); border:1px solid var(--border-l); border-radius:0 0 8px 8px; list-style:none; margin:0; padding:0; z-index:100; max-height:220px; overflow-y:auto; display:none; }
.loc-dropdown.open { display:block; }
.loc-dropdown li { padding:0.65rem 1rem; font-size:0.83rem; color:var(--text-l); cursor:pointer; border-bottom:1px solid var(--border-l); line-height:1.4; }
.loc-dropdown li:last-child { border-bottom:none; }
.loc-dropdown li:hover, .loc-dropdown li.active { background:rgba(1,16,69,0.06); color:var(--text-l); }
.loc-dropdown li.loading { color:var(--muted-l); font-style:italic; cursor:default; }

/* ── Contact ────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 760px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--heading-l); margin-bottom: 1rem; }
.contact-info > p { font-size: 0.92rem; color: var(--muted-l); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 400; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--border-l); }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(144,255,167,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-l); margin-bottom: 0.3rem; }
.contact-item span { font-size: 0.92rem; color: var(--heading-l); }
.success-msg { display: none; background: rgba(1,16,69,0.08); border: 1px solid rgba(1,16,69,0.25); border-radius: 7px; padding: 1rem 1.25rem; margin-top: 1rem; font-size: 0.88rem; color: var(--green-dark); text-align: center; }
.success-msg.show { display: block; }

/* ── Footer ─────────────────────────────────────── */
footer { background: var(--navy-2); border-top: 1px solid var(--border); padding: 4rem 2.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-logo img { mix-blend-mode: screen; }
.footer-green-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }
.footer-links-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.footer-links-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 0.65rem; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.75rem; text-align: center; }
footer p { font-size: 0.76rem; color: var(--muted); line-height: 1.7; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 420px) { .footer-inner { grid-template-columns: 1fr; } }

/* ── About page ──────────────────────────────────── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 860px) { .about-intro { grid-template-columns: 1fr; gap: 3rem; } }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-stat { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: 0 2px 8px rgba(1,16,69,0.06); }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--green-dark); line-height: 1; margin-bottom: 0.4rem; }
.about-stat-label { font-size: 0.7rem; color: var(--muted-l); letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.4; }
.mission-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.mission-card { background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2rem; box-shadow: 0 2px 8px rgba(1,16,69,0.06); }
.mission-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--heading-l); margin-bottom: 0.75rem; }
.mission-card p { font-size: 0.87rem; color: var(--muted-l); line-height: 1.75; }
.about-story { max-width: 720px; }
.about-story p { color: var(--muted-l); }
.about-story h2 { color: var(--heading-l); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid rgba(1,16,69,0.3); cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 500; padding: 0.9rem 2.1rem; border-radius: 7px; transition: border-color 0.2s, background 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-outline-dark:hover { background: rgba(1,16,69,0.06); }

/* ── FAQ page ────────────────────────────────────── */
.faq-page-wrap { max-width: 780px; margin: 0 auto; padding: 4rem 2.5rem 6rem; }
.faq-tabs-wrap { margin-bottom: 2.5rem; }
.faq-tabs { display: inline-flex; background: var(--cream-card); border: 1px solid var(--border-l); border-radius: 10px; padding: 4px; gap: 4px; }
.faq-tab { background: none; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--muted-l); padding: 0.55rem 1.3rem; border-radius: 7px; transition: background 0.2s, color 0.2s; }
.faq-tab.active { background: var(--cyan); color: var(--navy); font-weight: 600; }
.faq-tab:hover:not(.active) { color: var(--heading-l); background: var(--cream-2); }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-item:first-child { border-top: 1px solid var(--border-l); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 0.97rem; font-weight: 500; color: var(--heading-l); text-align: left; padding: 1.35rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; transition: color 0.2s; }
.faq-q:hover { color: var(--navy); }
.faq-q span { flex: 1; }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--border-l2); transition: transform 0.3s ease, color 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--navy); }
.faq-item.open .faq-q { color: var(--navy); }
.faq-a { display: none; padding: 0 0 1.5rem 0; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--muted-l); line-height: 1.9; }
.faq-a a { color: var(--green-dark); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }
.faq-a strong { color: var(--heading-l); }
.faq-cta { margin-top: 3.5rem; background: var(--cream-card); border: 1px solid var(--border-l); border-radius: var(--radius); padding: 2.5rem 3rem; box-shadow: 0 2px 8px rgba(1,16,69,0.06); }
.faq-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.faq-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--heading-l); margin-bottom: 0.4rem; }
.faq-cta p { font-size: 0.88rem; color: var(--muted-l); line-height: 1.7; }
.faq-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(1,16,69,0.08); border: 1px solid rgba(1,16,69,0.2); color: var(--green-dark); font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 500; padding: 0.65rem 1.2rem; border-radius: 7px; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.faq-whatsapp:hover { background: rgba(1,16,69,0.15); }
@media (max-width: 600px) { .faq-page-wrap { padding: 3rem 1.5rem 5rem; } .faq-cta { padding: 2rem 1.5rem; } }

/* ── About photo strip ───────────────────────────── */
.about-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 0.5rem; }
.about-photo { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.about-photo:hover img { transform: scale(1.04); }
.about-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,25,47,0.88)); color: var(--white); font-size: 0.8rem; font-weight: 500; padding: 1.25rem 1rem 0.85rem; letter-spacing: 0.02em; }
@media (max-width: 760px) { .about-photos { grid-template-columns: 1fr 1fr; } .about-photos .about-photo:last-child { display: none; } }
@media (max-width: 480px) { .about-photos { grid-template-columns: 1fr; } .about-photos .about-photo:last-child { display: block; } }

/* ── Responsive inline-grid replacements ─────────── */

/* Home: "Two ways to travel" service cards */
.home-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 640px) { .home-services-grid { grid-template-columns: 1fr; } }

/* Home: feature checklist inside service cards */
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin: 1rem 0; }
@media (max-width: 640px) { .service-features { grid-template-columns: 1fr; } }

/* Home: "Why ETA Transfers" 4-card grid */
.home-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 900px) { .home-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .home-why-grid { grid-template-columns: 1fr; } }

/* Mobile accordion for why-cards */
@media (max-width: 780px) {
  .home-why-grid .why-card { cursor: pointer; transition: border-color 0.2s; }
  .home-why-grid .why-card-img { display: none; }
  .home-why-grid .why-card-body { padding: 0.9rem 1.1rem; }
  .home-why-grid .why-card-body h4 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; }
  .home-why-grid .why-card-body h4::after { content: '+'; font-size: 1.1rem; color: var(--muted-l); font-weight: 400; flex-shrink: 0; }
  .home-why-grid .why-card-body p { display: none; margin-top: 0.65rem; margin-bottom: 0; }
  .home-why-grid .why-card.open .why-card-img { display: block; }
  .home-why-grid .why-card.open .why-card-body p { display: block; }
  .home-why-grid .why-card.open .why-card-body h4::after { content: '−'; }
  .home-why-grid .why-card.open { border-color: var(--navy); }
}

/* About: 3-photo strip */
.about-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; height: 280px; overflow: hidden; }
@media (max-width: 640px) { .about-photo-strip { grid-template-columns: 1fr 1fr; height: 200px; } }
@media (max-width: 380px) { .about-photo-strip { grid-template-columns: 1fr; height: 180px; } }
.about-photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Transfers: "What's included" checklist */
.whats-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 0.5rem; }
@media (max-width: 500px) { .whats-included-grid { grid-template-columns: 1fr; } }

/* ── Global mobile overrides ─────────────────────── */
@media (max-width: 780px) {
  .section { padding: 4rem 1.5rem; }
  .section-dark .section { padding: 4rem 1.5rem; }
  .cta-strip { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 560px; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}
