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

  :root {
    --green: #0a7d3b;
    --green-dark: #075c2b;
    --green-light: #e8f5ee;
    --gold: #d4af37;
    --gold-light: #f0e4a0;
    --gold-dark: #a88b1d;
    --white: #ffffff;
    --off-white: #fafaf8;
    --grey-light: #f4f4f1;
    --grey-mid: #e8e8e2;
    --grey-text: #666660;
    --dark: #111110;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6vw;
    height: 72px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.18);
    transition: all 0.4s var(--ease);
  }
  nav.scrolled {
    height: 60px;
    box-shadow: 0 4px 32px rgba(10,125,59,0.08);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 38px; height: 38px;
    background: var(--green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-mark svg { width: 22px; height: 22px; fill: var(--gold); }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 600;
    color: var(--green);
    letter-spacing: 0.02em;
  }
  .nav-logo-text span:last-child {
    font-size: 0.6rem; font-weight: 400;
    color: var(--grey-text); letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex; align-items: center; gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.8rem; font-weight: 500;
    text-decoration: none; color: var(--dark);
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: var(--white) !important;
    padding: 10px 22px; border-radius: 6px;
    font-size: 0.75rem !important;
    transition: background 0.25s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 1.5px; background: var(--dark); transition: 0.3s; }

  /* ── HERO ── */
  #hero {
    height: 100vh; min-height: 640px;
    position: relative; display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(5,30,15,0.82) 0%, rgba(5,30,15,0.45) 55%, rgba(5,30,15,0.2) 100%),
      url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1800&q=80') center/cover no-repeat;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 8vw;
    max-width: 700px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s var(--ease) 0.3s forwards;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
  .hero-eyebrow span {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 300; line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 1rem; font-weight: 300;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--dark);
    padding: 15px 34px; border-radius: 6px;
    font-family: var(--font-body); font-size: 0.82rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s var(--ease);
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,175,55,0.35); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white); border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 28px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; z-index: 2;
    animation: fadeUp 1s var(--ease) 1s forwards; opacity: 0;
  }
  .hero-scroll-bar {
    width: 1px; height: 50px; background: rgba(255,255,255,0.25);
    position: relative; overflow: hidden;
  }
  .hero-scroll-bar::after {
    content: ''; position: absolute; top: -50px; left: 0;
    width: 100%; height: 50px;
    background: var(--gold);
    animation: scrollBar 2s ease-in-out infinite;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--green);
    padding: 1.1rem 6vw;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.85); font-size: 0.78rem;
    font-weight: 400; letter-spacing: 0.05em;
  }
  .trust-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

  /* ── ABOUT ── */
  #about {
    padding: 9rem 6vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
    background: var(--white);
  }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; border-radius: 4px;
    background: url('../images/hira.jpg') center/cover;
  }
  .about-img-accent {
    position: absolute; bottom: -2.5rem; right: -2.5rem;
    width: 42%; aspect-ratio: 1;
    background: url('../images/masjid.jpg') center/cover;
    border-radius: 4px;
    border: 6px solid var(--white);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  }
  .about-badge {
    position: absolute; top: 2rem; left: -1.5rem;
    background: var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(212,175,55,0.3);
  }
  .about-badge-num {
    display: block;
    font-family: var(--font-display); font-size: 2.2rem;
    font-weight: 600; color: var(--dark); line-height: 1;
  }
  .about-badge-label {
    font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark); opacity: 0.75;
  }
  .section-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
  }
  .eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
  .eyebrow-text {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-dark);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  .section-title strong { font-weight: 600; color: var(--green); }
  .section-body {
    font-size: 0.9rem; line-height: 1.85;
    color: var(--grey-text);
    margin-bottom: 2rem;
  }

  /* ── SERVICES ── */
  #services {
    padding: 8rem 6vw;
    background: var(--grey-light);
  }
  .services-header { max-width: 560px; margin-bottom: 4rem; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--grey-mid);
    border: 1.5px solid var(--grey-mid);
    border-radius: 10px; overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .service-card:hover { background: #fefef9; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
  }
  .service-icon svg { width: 22px; height: 22px; fill: var(--green); }
  .service-name {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 600; color: var(--dark);
    margin-bottom: 0.75rem; line-height: 1.25;
  }
  .service-desc {
    font-size: 0.82rem; line-height: 1.7;
    color: var(--grey-text);
  }

  /* ── FLEET ── */
  #fleet {
    padding: 8rem 6vw;
    background: var(--white);
  }
  .fleet-header { max-width: 560px; margin-bottom: 4rem; }
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .fleet-card {
    border: 1px solid var(--grey-mid);
    border-radius: 10px; overflow: hidden;
    transition: all 0.35s var(--ease);
  }
  .fleet-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(10,125,59,0.1);
    transform: translateY(-4px);
  }
  .fleet-img {
    height: 180px;
    background-size: cover; background-position: center;
    background-color: var(--grey-light);
    position: relative;
  }
  .fleet-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,20,10,0.5) 0%, transparent 60%);
  }
  .fleet-body { padding: 1.5rem; }
  .fleet-model {
    font-family: var(--font-display); font-size: 1.2rem;
    font-weight: 600; color: var(--dark);
    margin-bottom: 0.4rem;
  }
  .fleet-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px;
    margin-bottom: 0.75rem;
  }
  .fleet-desc {
    font-size: 0.8rem; line-height: 1.65; color: var(--grey-text);
  }

  /* ── WHY CHOOSE US ── */
  #why {
    padding: 8rem 6vw;
    background: var(--green);
    position: relative; overflow: hidden;
  }
  #why::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .why-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: start;
  }
  .why-left .section-title { color: var(--white); }
  .why-left .section-title strong { color: var(--gold); }
  .why-left .section-body { color: rgba(255,255,255,0.7); }
  .why-left .eyebrow-text { color: var(--gold-light); }
  .why-left .eyebrow-line { background: var(--gold); }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }
  .why-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.18);
    transition: all 0.3s;
  }
  .why-item:hover { background: rgba(255,255,255,0.11); }
  .why-item-icon {
    width: 36px; height: 36px;
    background: rgba(212,175,55,0.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.85rem;
  }
  .why-item-icon svg { width: 18px; height: 18px; fill: var(--gold); }
  .why-item-title {
    font-size: 0.85rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.35rem;
  }
  .why-item-desc {
    font-size: 0.77rem; line-height: 1.6;
    color: rgba(255,255,255,0.6);
  }

  /* ── JOURNEY EXPERIENCE ── */
  #journey {
    position: relative;
    padding: 10rem 6vw;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    min-height: 500px;
  }
  .journey-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(rgba(5,25,12,0.75), rgba(5,25,12,0.75)),
      url('../images/masjid2.jpg') center/cover;
  }
  .journey-content {
    position: relative; z-index: 2; max-width: 720px;
  }
  .journey-quote-mark {
    font-family: var(--font-display); font-size: 8rem;
    color: var(--gold); line-height: 0.5;
    margin-bottom: 1rem; display: block; opacity: 0.6;
  }
  .journey-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300; font-style: italic;
    color: var(--white); line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .journey-credit {
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
  }

  /* ── VIP SECTION ── */
  #vip {
    padding: 8rem 6vw;
    background: var(--dark);
    position: relative; overflow: hidden;
  }
  #vip::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .vip-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center;
  }
  .vip-left .section-eyebrow .eyebrow-text { color: var(--gold); }
  .vip-left .eyebrow-line { background: var(--gold); }
  .vip-left .section-title { color: var(--white); }
  .vip-left .section-title strong { color: var(--gold); }
  .vip-left .section-body { color: rgba(255,255,255,0.55); }
  .vip-notice {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px; padding: 1rem 1.25rem;
    font-size: 0.8rem; color: var(--gold-light);
    line-height: 1.6;
  }
  .vip-notice svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .vip-fleet {
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .vip-car {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    transition: all 0.3s;
  }
  .vip-car:hover { background: rgba(212,175,55,0.07); border-color: rgba(212,175,55,0.4); }
  .vip-car-icon {
    width: 44px; height: 44px;
    background: rgba(212,175,55,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .vip-car-icon svg { width: 22px; height: 22px; fill: var(--gold); }
  .vip-car-name {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 600; color: var(--white);
    margin-bottom: 0.2rem;
  }
  .vip-car-tag { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
  .vip-car-arrow { margin-left: auto; color: var(--gold); font-size: 1.2rem; }

  /* ── PARTNERSHIP ── */
  #partnership {
    padding: 8rem 6vw;
    background: var(--off-white);
  }
  .partnership-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
    align-items: center;
  }
  .partner-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  }
  .partner-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: 8px; padding: 1.5rem;
    transition: all 0.3s;
  }
  .partner-card:hover {
    border-color: var(--green);
    box-shadow: 0 6px 24px rgba(10,125,59,0.09);
  }
  .partner-card-icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    border-radius: 8px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center;
  }
  .partner-card-icon svg { width: 20px; height: 20px; fill: var(--green); }
  .partner-card-title {
    font-size: 0.9rem; font-weight: 600;
    color: var(--dark); margin-bottom: 0.3rem;
  }
  .partner-card-text {
    font-size: 0.78rem; color: var(--grey-text); line-height: 1.6;
  }
  .offer-list {
    list-style: none; margin-top: 1.75rem;
    display: flex; flex-direction: column; gap: 0.9rem;
  }
  .offer-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--dark);
  }
  .offer-list li::before {
    content: '';
    width: 18px; height: 18px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a7d3b'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 14px; background-repeat: no-repeat; background-position: center;
  }

  /* ── CTA ── */
  #cta {
    padding: 8rem 6vw;
    text-align: center;
    background: var(--white);
    position: relative;
  }
  .cta-inner { max-width: 680px; margin: 0 auto; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; line-height: 1.25;
    color: var(--dark); margin-bottom: 1.25rem;
  }
  .cta-title strong { font-weight: 600; color: var(--green); }
  .cta-sub {
    font-size: 0.9rem; color: var(--grey-text);
    line-height: 1.75; margin-bottom: 2.5rem;
  }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
  .btn-green {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--green); color: var(--white);
    padding: 15px 34px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s var(--ease);
  }
  .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,125,59,0.25); }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: var(--white);
    padding: 15px 34px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s var(--ease);
  }
  .btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
  .btn-whatsapp svg { width: 18px; height: 18px; fill: var(--white); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 4rem 6vw 2rem;
    color: rgba(255,255,255,0.55);
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }
  .footer-brand .nav-logo-text span:first-child { color: var(--white); }
  .footer-brand p {
    font-size: 0.8rem; line-height: 1.75;
    color: rgba(255,255,255,0.45); margin-top: 1rem;
  }
  .footer-col h4 {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollBar {
    0% { top: -50px; }
    100% { top: 100%; }
  }
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  }
  .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.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none;
    position: fixed; inset: 0; z-index: 99;
    background: var(--white);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 1.5rem; font-family: var(--font-display);
    color: var(--dark); text-decoration: none; font-weight: 300;
  }
  .mobile-close {
    position: absolute; top: 1.5rem; right: 2rem;
    font-size: 2rem; cursor: pointer; color: var(--dark);
    background: none; border: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    #about { grid-template-columns: 1fr; gap: 4rem; }
    .about-img-accent { right: 1rem; }
    .why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .vip-inner { grid-template-columns: 1fr; gap: 3rem; }
    .partnership-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .partner-cards { grid-template-columns: 1fr; }
    .hero-content { padding: 0 6vw; }
    .trust-bar { gap: 1.25rem; padding: 1rem 4vw; }
    .footer-top { grid-template-columns: 1fr; }
    #about { padding: 5rem 6vw; }
    #services, #fleet, #why, #journey, #vip, #partnership, #cta { padding: 5rem 6vw; }
    .about-badge { display: none; }
  }

  /* ── TRANSPORT PAGE ── */
  .transport-wrap { padding: 8rem 6vw 5rem; background: #f6f8f4; min-height: 100vh; }
  .transport-hero { margin-bottom: 1.5rem; max-width: 780px; }
  .transport-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 3.7vw, 3rem); color: #0c3420; margin-bottom: 0.5rem; }
  .transport-hero p { color: #516058; font-size: 0.94rem; }
  .transport-alert { border-radius: 8px; padding: 0.9rem 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
  .transport-alert.success { background: #eaf8ee; border: 1px solid #a9dbb6; color: #1f4a2e; }
  .transport-alert.error { background: #fff2f2; border: 1px solid #f2b7b7; color: #7a2020; }
  .transport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .flow-card { background: #fff; border: 1px solid #e0e6df; border-radius: 10px; padding: 1rem; }
  .flow-card h3 { font-size: 1rem; margin-bottom: 0.75rem; color: #123225; }
  .field-row { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.65rem; }
  .field-row label { font-size: 0.82rem; color: #3f5148; font-weight: 500; }
  .field-row input, .field-row select, .field-row textarea {
    border: 1px solid #ccd9d0; border-radius: 8px; padding: 0.65rem; font-family: var(--font-body); font-size: 0.9rem;
  }
  .field-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .car-selection { margin-bottom: 1rem; }
  .car-selection h3 { margin-bottom: 0.8rem; color: #123225; }
  .car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  .car-option { border: 1px solid #d8e0da; border-radius: 10px; overflow: hidden; background: #fff; cursor: pointer; transition: all 0.25s ease; }
  .car-option input { position: absolute; opacity: 0; pointer-events: none; }
  .car-option:has(input:checked) { border-color: #0a7d3b; box-shadow: 0 10px 28px rgba(10,125,59,0.12); }
  .car-image { height: 140px; background-size: cover; background-position: center; }
  .car-info { padding: 0.7rem; }
  .car-info h4 { font-size: 0.96rem; margin-bottom: 0.2rem; color: #1f3029; }
  .car-info p { font-size: 0.8rem; color: #58645e; margin: 0.1rem 0; }
  .car-price { color: #0a7d3b !important; font-weight: 600; }
  .fare-preview { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #dce5de; border-radius: 10px; padding: 1rem; }
  .fare-preview p { font-size: 1rem; color: #2c3d35; }

  /* ── ADMIN ── */
  .admin-auth-body { min-height: 100vh; display: grid; place-items: center; background: #f5f7f3; padding: 1.2rem; }
  .admin-auth-card { width: min(460px, 100%); background: #fff; border: 1px solid #e1e8e1; border-radius: 12px; padding: 1.3rem; box-shadow: 0 10px 32px rgba(0,0,0,0.06); }
  .admin-auth-card h1 { font-family: var(--font-display); color: #11412f; margin-bottom: 0.4rem; }
  .admin-error { color: #982c2c; font-size: 0.86rem; margin: 0.5rem 0; }
  .admin-auth-form { display: grid; gap: 0.45rem; margin-top: 0.6rem; }
  .admin-auth-form label { font-size: 0.82rem; color: #43564d; }
  .admin-auth-form input { border: 1px solid #cad6cf; border-radius: 8px; padding: 0.6rem; }

  .admin-page { background: #f4f7f4; min-height: 100vh; }
  .admin-topbar { background: #0d3a29; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 1rem 6vw; gap: 1rem; }
  .admin-topbar h1 { font-size: 1.1rem; font-weight: 600; }
  .admin-actions { display: flex; gap: 0.6rem; }
  .admin-main { padding: 1rem 6vw 2rem; display: grid; gap: 1rem; }
  .admin-card { background: #fff; border: 1px solid #dce4de; border-radius: 10px; padding: 1rem; }
  .admin-card h2 { font-size: 1.1rem; margin-bottom: 0.7rem; color: #143726; }
  .admin-grid-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem; }
  .admin-grid-form textarea { grid-column: 1 / -1; }
  .admin-grid-form input, .admin-grid-form textarea, .admin-grid-form select { border: 1px solid #cfdad3; border-radius: 8px; padding: 0.58rem; font-size: 0.87rem; }
  .admin-table-wrap { overflow: auto; }
  .admin-table { width: 100%; border-collapse: collapse; min-width: 940px; }
  .admin-table th, .admin-table td { border-bottom: 1px solid #e4ece6; padding: 0.55rem; font-size: 0.84rem; text-align: left; vertical-align: top; }
  .admin-table th { background: #f7faf8; color: #2d4d40; }
  .admin-inline-form { display: grid; gap: 0.4rem; margin: 0.4rem 0; }
  .admin-inline-form input, .admin-inline-form textarea { border: 1px solid #d0dbd3; border-radius: 7px; padding: 0.45rem; font-size: 0.82rem; }
  .status-form select { border: 1px solid #d4e0d7; border-radius: 7px; padding: 0.35rem; font-size: 0.82rem; }

  @media (max-width: 1024px) {
    .car-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-grid-form { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .transport-wrap { padding: 6.7rem 5vw 4rem; }
    .transport-grid, .field-inline, .car-grid, .fare-preview { grid-template-columns: 1fr; display: grid; }
    .fare-preview { gap: 0.7rem; }
    .admin-topbar { flex-direction: column; align-items: flex-start; }
    .admin-grid-form { grid-template-columns: 1fr; }
  }

  /* ── NEW ADMIN LAYOUT ── */
  .admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: #f3f6f4; }
  .admin-sidebar { background: linear-gradient(160deg, #0b5130, #083f26); color: #fff; padding: 1.2rem 1rem; display: flex; flex-direction: column; }
  .admin-brand h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
  .admin-brand p { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 0.2rem; }
  .admin-menu { margin-top: 1.2rem; display: grid; gap: 0.45rem; }
  .admin-menu a { text-decoration: none; color: #d7efe1; padding: 0.6rem 0.7rem; border-radius: 8px; font-size: 0.9rem; }
  .admin-menu a.active, .admin-menu a:hover { background: rgba(255,255,255,0.13); color: #fff; }
  .admin-side-actions { margin-top: auto; display: grid; gap: 0.5rem; }
  .admin-content { padding: 1.2rem; }
  .admin-header h1 { margin: 0; color: #153a2b; }
  .admin-header p { margin-top: 0.3rem; color: #5a6c62; }
  .admin-stats { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.8rem; }
  .stat-box { background: #fff; border: 1px solid #dee7e0; border-radius: 10px; padding: 1rem; }
  .stat-box h3 { margin: 0; color: #0a653a; font-size: 1.4rem; }
  .stat-box p { margin-top: 0.2rem; color: #5f7268; font-size: 0.85rem; }
  .admin-panel-card { background: #fff; border: 1px solid #dfe8e2; border-radius: 12px; padding: 1rem; margin-top: 1rem; }
  .admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.7rem; }
  .admin-form-grid .full { grid-column: 1 / -1; }
  .admin-form-grid label { display: block; font-size: 0.82rem; color: #4c6358; margin-bottom: 0.25rem; }
  .admin-form-grid input, .admin-form-grid textarea { width: 100%; border: 1px solid #cdd9d1; border-radius: 8px; padding: 0.65rem; font-size: 0.9rem; }
  .booking-head { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
  .search-form { display: flex; gap: 0.5rem; align-items: center; }
  .search-form input { width: 280px; border: 1px solid #ccd7d0; border-radius: 8px; padding: 0.62rem; }
  .booking-actions { display: flex; gap: 0.4rem; }
  .pagination { margin-top: 0.8rem; display: flex; gap: 0.8rem; align-items: center; }
  .pagination a { text-decoration: none; background: #e8f2ec; padding: 0.35rem 0.7rem; border-radius: 7px; color: #164d36; }
  .detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.4rem 1rem; margin-bottom: 0.8rem; }

  /* ── NEW 4-STEP BOOKING UI ── */
  .transport-pro-wrap { padding: 7.6rem 6vw 4rem; background: linear-gradient(180deg, #f6f9f7, #f2f6f3); min-height: 100vh; }
  .transport-pro-top h1 { margin: 0.2rem 0 0.45rem; color: #0f3f2b; font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3rem); }
  .transport-pro-top p { color: #5a6e63; max-width: 780px; }
  .step-booking-form { margin-top: 1rem; background: #fff; border: 1px solid #dce6df; border-radius: 12px; padding: 1rem; box-shadow: 0 12px 26px rgba(10,125,59,0.08); }
  .step-progress { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.55rem; margin-bottom: 1rem; }
  .step-item { text-align: center; position: relative; z-index: 2; }
  .step-item span { width: 34px; height: 34px; margin: 0 auto 0.2rem; border-radius: 50%; border: 1px solid #cadbd1; display: grid; place-items: center; background: #fff; color: #4e6559; font-weight: 600; }
  .step-item small { font-size: 0.77rem; color: #5c6f64; }
  .step-item.active span { background: #0a7d3b; color: #fff; border-color: #0a7d3b; }
  .step-item.active small { color: #0f5f34; font-weight: 600; }
  .progress-line { position: absolute; left: 8%; right: 8%; top: 17px; height: 4px; background: #e0ebe4; border-radius: 999px; z-index: 1; }
  .progress-line-fill { height: 100%; width: 0; background: linear-gradient(90deg, #0a7d3b, #19a156); border-radius: 999px; transition: width 0.25s ease; }
  .step-pane { display: none; }
  .step-pane.active { display: block; }
  .step-pane h3 { margin-bottom: 0.75rem; color: #15412e; }
  .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.75rem; }
  .form-grid .full { grid-column: 1 / -1; }
  .form-grid label { display: block; margin-bottom: 0.25rem; font-size: 0.84rem; color: #4a6257; font-weight: 500; }
  .form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #cddad2; border-radius: 8px; padding: 0.65rem; }
  .car-select-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; }
  .car-card-pro { border: 1px solid #d4e0d8; border-radius: 10px; overflow: hidden; background: #fff; cursor: pointer; }
  .car-card-pro input { position: absolute; opacity: 0; }
  .car-card-pro:has(input:checked) { border-color: #0a7d3b; box-shadow: 0 10px 22px rgba(10,125,59,0.14); }
  .car-photo { height: 140px; background-size: cover; background-position: center; }
  .car-meta { padding: 0.7rem; }
  .car-meta h4 { margin: 0; font-size: 0.95rem; color: #1e372c; }
  .car-meta p { margin: 0.15rem 0; font-size: 0.8rem; color: #607166; }
  .car-meta strong { color: #0a7d3b; }
  .payment-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.7rem; }
  .pay-box { border: 1px solid #d1ddd5; border-radius: 10px; padding: 0.8rem; background: #fff; display: grid; gap: 0.2rem; cursor: pointer; }
  .pay-box input { margin-bottom: 0.3rem; }
  .pay-icon { font-size: 1.2rem; }
  .pay-box small { color: #6a7c72; font-size: 0.76rem; }
  .fare-box { margin-top: 0.8rem; padding: 0.8rem; border-radius: 9px; background: #ecf7ef; border: 1px solid #b9dec2; color: #1f5136; font-size: 1rem; }
  .step-nav { margin-top: 0.9rem; display: flex; justify-content: flex-end; gap: 0.5rem; }
  .booking-popup { position: fixed; inset: 0; background: rgba(9,24,16,0.7); display: none; align-items: center; justify-content: center; z-index: 9999; }
  .booking-popup.show { display: flex; }
  .popup-card { width: min(420px, 92%); background: #fff; border-radius: 12px; padding: 1rem; text-align: center; }
  .popup-card h3 { color: #13472f; margin-bottom: 0.4rem; }
  .popup-card p { color: #4f6459; margin-bottom: 0.35rem; }

  @media (max-width: 1024px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: sticky; top: 0; z-index: 10; }
    .admin-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .car-select-grid, .payment-options { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 768px) {
    .form-grid, .admin-form-grid, .detail-grid, .car-select-grid, .payment-options, .admin-stats { grid-template-columns: 1fr; }
    .search-form { width: 100%; }
    .search-form input { width: 100%; }
  }