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

    :root {
      --bg: #12151F;
      --bg2: #1A1F2E;
      --bg3: #222840;
      --ivory: #F5F0E8;
      --amber: #F59B00;
      --amber-dim: #c27a00;
      --terra: #C4694F;
      --sage: #6B8F71;
      --muted: #7A8099;
      --border: rgba(245,240,232,0.1);
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Lato', sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--ivory);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ─── NAVIGATION ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(18,21,31,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 5vw;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
      transition: background 0.3s;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: -0.5px;
      display: flex; align-items: center; gap: 8px;
    }
    .nav-logo span { color: var(--amber); }
    .nav-logo .van-icon { font-size: 1.3rem; }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a {
      font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px;
      color: rgba(245,240,232,0.75);
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--amber); }
    .nav-cta {
      background: var(--amber); color: #12151F !important;
      padding: 8px 20px; border-radius: 6px;
      font-weight: 600; font-size: 0.85rem !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: #ffb020 !important; transform: translateY(-1px); }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--ivory); font-size: 1.5rem; }
    .mobile-menu {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: var(--bg2); border-bottom: 1px solid var(--border);
      flex-direction: column; padding: 1rem 5vw; gap: 0.75rem; z-index: 999;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--border); color: rgba(245,240,232,0.8); }

    /* ─── PAGE SECTIONS (hidden by default, shown via JS) ─── */
    .page { display: none; }
    .page.active { display: block; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 5vw 80px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(135deg, #12151F 0%, #1e2438 50%, #12151F 100%);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: 0; opacity: 0.06;
      background-image: linear-gradient(var(--border) 1px, transparent 1px),
                        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-glow {
      position: absolute; top: 20%; right: -10%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(245,155,0,0.12) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    .hero-content { position: relative; z-index: 1; max-width: 780px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,155,0,0.12); border: 1px solid rgba(245,155,0,0.3);
      color: var(--amber); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 1.2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: normal; color: var(--amber); }
    .hero p {
      font-size: 1.1rem; color: rgba(245,240,232,0.65);
      max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
    .btn-primary {
      background: var(--amber); color: #12151F;
      padding: 14px 30px; border-radius: 8px;
      font-weight: 700; font-size: 0.95rem; font-family: var(--font-display);
      cursor: pointer; border: none; transition: all 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: #ffb020; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,155,0,0.25); }
    .btn-secondary {
      background: transparent; color: var(--ivory);
      padding: 14px 30px; border-radius: 8px;
      font-weight: 600; font-size: 0.95rem;
      border: 1px solid rgba(245,240,232,0.25);
      cursor: pointer; transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: var(--amber); color: var(--amber); }
    .hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
    .stat-item { }
    .stat-num {
      font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
      color: var(--amber); line-height: 1;
    }
    .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.8px; }

    /* Van illustration in hero */
    .hero-visual {
      position: absolute; right: 4vw; bottom: 0; z-index: 1;
      width: clamp(300px, 42vw, 620px);
      opacity: 0.9;
    }

    /* ─── BOOKING STRIP ─── */
    .booking-strip {
      background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 2rem 5vw;
    }
    .booking-strip-inner {
      display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
      gap: 1rem; align-items: end; max-width: 1200px; margin: 0 auto;
    }
    .form-group label {
      display: block; font-size: 0.72rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1px; color: var(--muted);
      margin-bottom: 6px;
    }
    .form-group input, .form-group select {
      width: 100%; background: var(--bg3); border: 1px solid var(--border);
      color: var(--ivory); padding: 10px 14px; border-radius: 8px;
      font-family: var(--font-body); font-size: 0.9rem; outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--amber); }
    .form-group select option { background: var(--bg2); }
    .strip-btn {
      background: var(--amber); color: #12151F;
      padding: 11px 28px; border-radius: 8px; border: none;
      font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.2s;
      white-space: nowrap; font-family: var(--font-display);
    }
    .strip-btn:hover { background: #ffb020; }

    /* ─── SECTION BASE ─── */
    section { padding: 80px 5vw; }
    .section-eyebrow {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800; letter-spacing: -1px; line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-sub { color: var(--muted); font-size: 1rem; max-width: 540px; line-height: 1.7; }
    .section-head { margin-bottom: 3rem; }
    .section-head.center { text-align: center; }
    .section-head.center .section-sub { margin: 0 auto; }

    /* ─── FLEET CARDS ─── */
    .fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .fleet-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }
    .fleet-card:hover { transform: translateY(-6px); border-color: rgba(245,155,0,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
    .fleet-card-img {
      height: 200px; background: var(--bg3);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; position: relative; overflow: hidden;
    }
    .fleet-card-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, var(--bg2) 100%);
    }
    .fleet-badge {
      position: absolute; top: 12px; left: 12px; z-index: 1;
      background: var(--sage); color: #fff;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px;
    }
    .fleet-card-body { padding: 1.25rem 1.5rem 1.5rem; }
    .fleet-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
    .fleet-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
    .fleet-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
    .fleet-tag {
      background: var(--bg3); font-size: 0.75rem; padding: 4px 10px;
      border-radius: 100px; color: rgba(245,240,232,0.7);
      border: 1px solid var(--border);
    }
    .fleet-pricing { display: flex; align-items: baseline; justify-content: space-between; }
    .fleet-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--amber); }
    .fleet-price span { font-size: 0.78rem; font-weight: 400; color: var(--muted); }
    .fleet-btn {
      background: transparent; border: 1px solid var(--amber); color: var(--amber);
      padding: 7px 18px; border-radius: 6px; font-size: 0.82rem; font-weight: 600;
      cursor: pointer; transition: all 0.2s; font-family: var(--font-display);
    }
    .fleet-btn:hover { background: var(--amber); color: #12151F; }

    /* ─── WHY US ─── */
    .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
    .why-card {
      background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 2rem; transition: border-color 0.2s;
    }
    .why-card:hover { border-color: rgba(245,155,0,0.35); }
    .why-icon { font-size: 2rem; margin-bottom: 1rem; }
    .why-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .why-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

    /* ─── TESTIMONIALS ─── */
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .testi-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 1.75rem;
    }
    .testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 1rem; }
    .testi-text { font-size: 0.92rem; line-height: 1.7; color: rgba(245,240,232,0.8); margin-bottom: 1.25rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%; background: var(--bg3);
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    }
    .testi-name { font-weight: 600; font-size: 0.9rem; }
    .testi-role { font-size: 0.78rem; color: var(--muted); }

    /* ─── USE CASES ─── */
    .usecases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
    .usecase-card {
      background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 1.75rem 1.25rem; text-align: center; transition: all 0.2s; cursor: pointer;
    }
    .usecase-card:hover { border-color: var(--amber); transform: translateY(-4px); }
    .usecase-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
    .usecase-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
    .usecase-desc { font-size: 0.78rem; color: var(--muted); }

    /* ─── CITIES ─── */
    .cities-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
    .city-pill {
      background: var(--bg2); border: 1px solid var(--border);
      padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
      transition: all 0.2s; cursor: pointer;
    }
    .city-pill:hover { background: var(--amber); color: #12151F; border-color: var(--amber); font-weight: 600; }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, var(--bg3) 0%, #2a1f38 100%);
      border: 1px solid rgba(245,155,0,0.2); border-radius: var(--radius);
      padding: 3.5rem; text-align: center; margin: 0 5vw 80px;
    }
    .cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
    .cta-banner p { color: var(--muted); margin-bottom: 2rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 60px 5vw 30px;
    }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand p { font-size: 0.88rem; color: var(--muted); margin: 1rem 0 1.5rem; max-width: 280px; line-height: 1.7; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 8px; background: var(--bg3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; border: 1px solid var(--border); transition: all 0.2s; cursor: pointer;
    }
    .social-btn:hover { background: var(--amber); border-color: var(--amber); }
    .footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; margin-bottom: 1.25rem; }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--amber); }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 1rem; }
    .footer-bottom p { font-size: 0.8rem; color: var(--muted); }

    /* ─── FLEET PAGE ─── */
    .page-hero {
      padding: 120px 5vw 60px;
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
      border-bottom: 1px solid var(--border);
    }
    .filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem; }
    .filter-btn {
      padding: 8px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
      border: 1px solid var(--border); background: transparent; color: var(--muted);
      cursor: pointer; transition: all 0.2s;
    }
    .filter-btn:hover, .filter-btn.active { background: var(--amber); color: #12151F; border-color: var(--amber); }

    /* ─── BOOKING PAGE ─── */
    .booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
    .booking-form-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2rem;
    }
    .booking-form-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .booking-summary {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 90px;
      height: fit-content;
    }
    .summary-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 1.25rem; }
    .summary-line { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
    .summary-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; padding: 1rem 0 0; }
    .summary-total span:last-child { color: var(--amber); }

    /* ─── ABOUT PAGE ─── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-visual {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 3rem; text-align: center; font-size: 8rem;
      position: relative; overflow: hidden;
    }
    .about-visual::before {
      content: ''; position: absolute; top: -30%; right: -20%;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(245,155,0,0.15) 0%, transparent 70%);
    }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
    .about-stat { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
    .about-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--amber); }
    .about-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
    .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
    .team-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
    .team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--bg3); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 2px solid rgba(245,155,0,0.3); }
    .team-name { font-family: var(--font-display); font-weight: 700; }
    .team-role { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

    /* ─── CONTACT PAGE ─── */
    .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
    .contact-info-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
    .contact-method { display: flex; align-items: flex-start; gap: 14px; padding: 1rem 0; border-bottom: 1px solid var(--border); }
    .contact-method:last-child { border-bottom: none; }
    .contact-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(245,155,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
    .contact-method h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
    .contact-method p { font-size: 0.84rem; color: var(--muted); }

    /* ─── BLOG PAGE ─── */
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
    .blog-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
    .blog-card:hover { transform: translateY(-4px); border-color: rgba(245,155,0,0.35); }
    .blog-card-img { height: 200px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
    .blog-card-body { padding: 1.5rem; }
    .blog-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
    .blog-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.35; }
    .blog-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
    .blog-meta { font-size: 0.78rem; color: var(--muted); }

    /* ─── FAQ PAGE ─── */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.25rem 0; cursor: pointer;
      font-family: var(--font-display); font-weight: 600; font-size: 1rem;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--amber); }
    .faq-icon { font-size: 1.2rem; color: var(--amber); transition: transform 0.3s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

    /* ─── BREADCRUMB ─── */
    .breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
    .breadcrumb a { color: var(--amber); }
    .breadcrumb a:after { content: ' /'; color: var(--muted); margin: 0 6px; }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-float {
      position: fixed; bottom: 100px; right: 24px; z-index: 900;
      background: #ffcc00; color: #fff;
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      cursor: pointer; transition: transform 0.2s;
      animation: float-pulse 2s ease-in-out infinite;
    }
    .whatsapp-float:hover { transform: scale(1.1); }
    @keyframes float-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 32px rgba(37,211,102,0.6)} }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: block; }
      .booking-strip-inner { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .booking-layout { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .booking-strip-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      .cta-banner { padding: 2rem 1.5rem; }
      section { padding: 60px 5vw; }
    }

    /* ─── SCROLL FADE IN ─── */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .fade-in.visible { opacity: 1; transform: none; }