/* ==========================================================================
   CallTaxi — Public marketing site
   Self-contained stylesheet (independent of the admin panel's app.css)
   ========================================================================== */

:root {
    --gold:        #f6b100;
    --gold-dark:   #e0a000;
    --gold-soft:   #fff6db;
    --ink:         #0e1524;   /* dark navy used on headers / hero */
    --ink-2:       #131c2e;
    --text:        #1d2433;
    --muted:       #6b7280;
    --line:        #e7e9ee;
    --bg:          #ffffff;
    --bg-soft:     #f6f7f9;
    --radius:      14px;
    --shadow-sm:   0 2px 10px rgba(16, 24, 40, .06);
    --shadow-md:   0 12px 30px rgba(16, 24, 40, .10);
    --container:   1200px;
    --font:        'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .95rem;
    padding: .72rem 1.4rem;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold      { background: var(--gold); color: #1a1400; box-shadow: 0 6px 16px rgba(246,177,0,.30); }
.btn-gold:hover{ background: var(--gold-dark); color: #1a1400; }
.btn-ghost     { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.10); }
.btn-dark      { background: var(--ink); color: #fff; }
.btn-dark:hover{ background: var(--ink-2); }
.btn-block     { width: 100%; }
.btn-sm        { padding: .5rem 1rem; font-size: .85rem; }

/* ---------- Header / nav ---------- */
.site-topbar {
    background: #0a0f1c;
    color: rgba(255,255,255,.75);
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-topbar .container {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    min-height: 40px; flex-wrap: wrap;
}
.site-topbar a { color: var(--gold); font-weight: 600; }

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.site-header .container {
    display: flex; align-items: center; gap: 1.5rem;
    min-height: 68px;
}
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.3rem; letter-spacing: -.01em; }
.brand .brand-badge {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--gold); color: #1a1400;
    display: grid; place-items: center; font-size: 1.1rem;
}
.brand b { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 1.35rem; margin-left: auto; }
.main-nav a {
    color: rgba(255,255,255,.82);
    font-size: .93rem; font-weight: 500;
    padding: .4rem 0; position: relative;
    transition: color .15s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.header-cta { margin-left: .5rem; }

.nav-toggle {
    display: none; margin-left: auto;
    background: transparent; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer;
}

/* ---------- Page header (sub pages) ---------- */
.page-header {
    position: relative;
    background: linear-gradient(120deg, #0b1220 0%, #16263f 100%);
    color: #fff;
    padding: 74px 0;
    overflow: hidden;
}
.page-header::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(600px 240px at 85% -10%, rgba(246,177,0,.18), transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 39h40M39 0v40' stroke='%23ffffff10' stroke-width='1'/%3E%3C/svg%3E");
    opacity: .6;
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; margin: 0 0 .5rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.6); font-size: .9rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
    display: inline-block; color: var(--gold); font-weight: 700;
    font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.15rem); font-weight: 800; margin: 0 0 .6rem; letter-spacing: -.015em; }
.section-sub { color: var(--muted); font-size: 1.02rem; margin: 0; }
.text-left.section-head { margin-inline: 0; text-align: left; }

/* ---------- Hero (home) ---------- */
.hero {
    position: relative;
    background: linear-gradient(115deg, #0a0f1c 0%, #101b30 55%, #14243c 100%);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content:""; position:absolute; right:-8%; top:-20%; width:620px; height:620px; border-radius:50%;
    background: radial-gradient(circle at center, rgba(246,177,0,.20), transparent 62%);
    pointer-events:none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); line-height: 1.1; font-weight: 800; margin: 0 0 1rem; letter-spacing: -.02em; }
.hero-copy h1 .hl { color: var(--gold); }
.hero-copy p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 460px; margin: 0 0 1.6rem; }

.hero-visual { position: relative; }
.hero-card {
    background: linear-gradient(160deg,#182740,#0e1626);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px; padding: 26px; box-shadow: var(--shadow-md);
}
.taxi-illus { width: 100%; height: auto; }

/* Booking widget */
.booking {
    background: #fff; color: var(--text);
    border-radius: 16px; box-shadow: var(--shadow-md);
    padding: 8px; margin-top: -46px; position: relative; z-index: 3;
    border: 1px solid var(--line);
}
.booking-tabs { display: flex; gap: 4px; padding: 6px; }
.booking-tabs button {
    flex: 0 0 auto; border: 0; background: transparent; color: var(--muted);
    font-weight: 600; font-size: .9rem; padding: .55rem 1.1rem; border-radius: 9px; cursor: pointer;
    display: inline-flex; align-items: center; gap: .4rem;
}
.booking-tabs button.active { background: var(--ink); color: #fff; }
.booking-form {
    display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; padding: 12px; align-items: end;
}
.field label { display: block; font-size: .74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.field .control {
    display: flex; align-items: center; gap: .5rem;
    border: 1px solid var(--line); border-radius: 10px; padding: .65rem .8rem; background: var(--bg-soft);
}
.field .control i { color: var(--gold); }
.field .control input, .field .control select {
    border: 0; background: transparent; outline: none; width: 100%; font-size: .92rem; color: var(--text); font-family: inherit;
}

/* trust strip */
.trust {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    padding: 30px 0 6px;
}
.trust-item { display: flex; align-items: center; gap: .8rem; }
.trust-item .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.25rem; flex: none; }
.trust-item h4 { margin: 0; font-size: .95rem; font-weight: 700; }
.trust-item p { margin: 0; font-size: .8rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 22px; box-shadow: var(--shadow-sm);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    display: flex; flex-direction: column; gap: .5rem;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #f0d68a; }
.service-card .ic {
    width: 58px; height: 58px; border-radius: 14px;
    background: var(--ink); color: var(--gold); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: .4rem;
}
.service-card h3 { margin: 0; font-size: 1.15rem; font-weight: 700; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.service-card .more { color: var(--gold-dark); font-weight: 700; font-size: .88rem; margin-top: .4rem; }

/* thumbnail service card (home) */
.svc-thumb {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease;
    display: flex; flex-direction: column;
}
.svc-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-thumb .thumb { aspect-ratio: 16/11; position: relative; display: grid; place-items: center; }
.svc-thumb .thumb i { font-size: 3rem; color: #fff; opacity: .95; }
.svc-thumb .body { padding: 16px 18px 20px; text-align: center; }
.svc-thumb h4 { margin: 0 0 .5rem; font-size: 1.02rem; font-weight: 700; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; display: grid; gap: .7rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .98rem; }
.feature-list li i { color: var(--gold-dark); margin-top: .2rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat .num { font-size: 2rem; font-weight: 800; color: var(--gold-dark); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .9rem; margin-top: .4rem; }

/* mission/vision dark band */
.band { background: var(--ink); color: #fff; border-radius: 18px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.band h3 { color: var(--gold); margin: 0 0 .6rem; font-size: 1.2rem; }
.band p { color: rgba(255,255,255,.72); margin: 0; }

/* value props row */
.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; text-align: center; }
.value .ic { width: 60px; height: 60px; margin: 0 auto .8rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.5rem; }
.value h4 { margin: 0 0 .3rem; font-size: 1.02rem; }
.value p { margin: 0; color: var(--muted); font-size: .88rem; }

/* ---------- Media split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split .media {
    border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md);
    aspect-ratio: 4/3; position: relative; display: grid; place-items: center;
}
.split .media i { font-size: 5rem; color: #fff; opacity: .9; }

/* photo/gradient tiles reused as image stand-ins */
.tile-grad-a { background: linear-gradient(135deg,#1b2b47,#243b60); }
.tile-grad-b { background: linear-gradient(135deg,#2a2f3a,#454b57); }
.tile-grad-c { background: linear-gradient(135deg,#1a3a2f,#2f6f57); }
.tile-grad-d { background: linear-gradient(135deg,#3a2f1a,#7a5a1f); }
.tile-grad-airport { background: linear-gradient(135deg,#12233d,#2b6c8f); }
.tile-grad-hills { background: linear-gradient(135deg,#1f3d33,#4c7a53); }
.tile-grad-corp { background: linear-gradient(135deg,#15151c,#33343f); }

/* ---------- Fleet ---------- */
.fleet-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.fleet-tabs button {
    border: 1px solid var(--line); background: #fff; color: var(--text);
    font-weight: 600; font-size: .9rem; padding: .55rem 1.25rem; border-radius: 999px; cursor: pointer; transition: all .15s ease;
}
.fleet-tabs button.active, .fleet-tabs button:hover { background: var(--gold); border-color: var(--gold); color: #1a1400; }

.vehicle-card {
    background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1.2fr .8fr;
}
.vehicle-card .pic { position: relative; display: grid; place-items: center; min-height: 230px; }
.vehicle-card .pic i { font-size: 4.5rem; color:#fff; opacity:.92; }
.vehicle-card .info { padding: 26px; }
.vehicle-card .info h3 { margin: 0 0 1rem; font-size: 1.35rem; font-weight: 800; }
.vehicle-card .specs { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.vehicle-card .specs li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--text); }
.vehicle-card .specs li i { color: var(--gold-dark); width: 18px; }
.vehicle-card .price { font-size: .85rem; color: var(--muted); }
.vehicle-card .price b { font-size: 1.6rem; color: var(--text); }

.fleet-thumbs { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.fleet-thumb { width: 92px; height: 62px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); font-size: 1.5rem; background: var(--bg-soft); cursor: pointer; transition: all .15s ease; }
.fleet-thumb:hover, .fleet-thumb.active { border-color: var(--gold); background: var(--gold-soft); }

/* ---------- Airports / route cards ---------- */
.mini-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.mini-card { text-align: center; padding: 26px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.mini-card .ic { width: 52px; height: 52px; margin: 0 auto .7rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.35rem; }
.mini-card h4 { margin: 0 0 .25rem; font-size: .98rem; }
.mini-card p { margin: 0; font-size: .8rem; color: var(--muted); }
.mini-card .from { margin-top: .5rem; font-size: .82rem; color: var(--muted); }
.mini-card .from b { color: var(--gold-dark); font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info .row { display: flex; gap: 1rem; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-info .row:last-child { border-bottom: 0; }
.contact-info .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.contact-info h4 { margin: 0 0 .15rem; font-size: 1rem; }
.contact-info p { margin: 0; color: var(--muted); font-size: .92rem; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; transition: background .15s ease; }
.socials a:hover { background: var(--gold); color: #1a1400; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control-wrap { margin-bottom: 16px; }
.form-control-wrap label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.form-control-wrap input, .form-control-wrap textarea, .form-control-wrap select {
    width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: .7rem .85rem;
    font-family: inherit; font-size: .93rem; background: var(--bg-soft); outline: none; transition: border .15s ease;
}
.form-control-wrap input:focus, .form-control-wrap textarea:focus, .form-control-wrap select:focus { border-color: var(--gold); background: #fff; }
.full { grid-column: 1 / -1; }
.map-embed { border-radius: 18px; overflow: hidden; min-height: 100%; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(115deg,#0b1220,#1a2c49);
    color: #fff; border-radius: 20px; padding: 46px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::after { content:""; position:absolute; right:-6%; bottom:-40%; width:360px; height:360px; border-radius:50%; background: radial-gradient(circle,rgba(246,177,0,.22),transparent 62%); }
.cta-band h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 0 0 .6rem; position: relative; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0 0 1.4rem; position: relative; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0f1c; color: rgba(255,255,255,.65); padding: 62px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 42px; }
.site-footer h5 { color: #fff; font-size: 1rem; margin: 0 0 1.1rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer p { font-size: .9rem; line-height: 1.7; margin: 0 0 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { font-size: .9rem; transition: color .15s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-bottom: .7rem; }
.footer-contact li i { color: var(--gold); margin-top: .2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.center{ text-align:center; }
.lead-muted{ color: var(--muted); font-size:1.05rem; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 460px; }
    .booking-form { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .stats, .trust, .values { grid-template-columns: repeat(2,1fr); }
    .mini-cards { grid-template-columns: repeat(3,1fr); }
    .split, .contact-grid, .band { grid-template-columns: 1fr; }
    .vehicle-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .main-nav { display: none; }
    .nav-toggle { display: block; }
    .main-nav.open {
        display: flex; flex-direction: column; align-items: flex-start; gap: .2rem;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--ink-2); padding: 14px 20px; box-shadow: var(--shadow-md);
    }
    .main-nav.open a { padding: .6rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
    .header-cta { display: none; }
    .booking-form { grid-template-columns: 1fr; }
    .grid-4, .grid-3, .grid-2, .stats, .trust, .values, .mini-cards, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 52px 0; }
    .band, .cta-band, .form-card { padding: 26px; }
}

/* ==========================================================================
   HOME v2 — full landing page matching the detailed mockup
   ========================================================================== */

/* header support phone */
.header-support { display: flex; align-items: center; gap: .55rem; margin-left: auto; color: rgba(255,255,255,.85); }
.header-support .ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(246,177,0,.15); color: var(--gold); display: grid; place-items: center; font-size: 1rem; }
.header-support small { display: block; font-size: .68rem; color: rgba(255,255,255,.55); line-height: 1; margin-bottom: 2px; }
.header-support b { font-size: .92rem; font-weight: 700; }
.site-header .main-nav { margin-left: 0; }
.site-header .container.hdr { gap: 1.1rem; }

/* accent word in section titles */
.section-title .g, .g { color: var(--gold); }

/* section head with side link */
.sec-head { position: relative; text-align: center; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; margin: 0; letter-spacing: -.015em; }
.sec-head .view-all { position: absolute; right: 0; bottom: 6px; color: var(--muted); font-weight: 600; font-size: .86rem; }
.sec-head .view-all:hover { color: var(--gold-dark); }
.sec-head .sub { color: var(--muted); margin: .5rem 0 0; }

/* ---------- HERO v2 (photographic / dusk) ---------- */
.hero2 { position: relative; overflow: hidden; color: #fff; padding-bottom: 90px; }
.hero2-bg { position: absolute; inset: 0; z-index: 0; }
.hero2-bg .sky { position: absolute; inset: 0; background: linear-gradient(180deg, #0a1020 0%, #142138 42%, #3a3550 66%, #7a5a3a 84%, #b97d3e 100%); }
.hero2-bg .glow { position: absolute; right: 12%; top: 34%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,180,90,.55), transparent 62%); filter: blur(6px); }
.hero2-bg .skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 62%; }
.hero2-bg .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,22,.86) 0%, rgba(8,12,22,.55) 42%, rgba(8,12,22,0) 70%); }
.hero2 .container { position: relative; z-index: 2; }
.hero2-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; min-height: 470px; padding-top: 56px; }
.hero2-copy h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.05; margin: 0 0 1rem; letter-spacing: -.02em; }
.hero2-copy h1 .g { color: var(--gold); }
.hero2-copy p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 420px; margin: 0 0 1.6rem; }
.hero2-badges { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero2-badges .b { display: flex; align-items: center; gap: .6rem; }
.hero2-badges .b .ic { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(246,177,0,.5); color: var(--gold); display: grid; place-items: center; font-size: 1.05rem; }
.hero2-badges .b h4 { margin: 0; font-size: .9rem; font-weight: 700; }
.hero2-badges .b p { margin: 0; font-size: .74rem; color: rgba(255,255,255,.6); }
.hero2-car { position: relative; z-index: 2; }
.hero2-car svg { width: 100%; height: auto; filter: drop-shadow(0 24px 30px rgba(0,0,0,.5)); }

/* booking widget v2 overlapping hero */
.booking2 { position: relative; z-index: 3; margin-top: -44px; background: #fff; color: var(--text); border-radius: 16px; box-shadow: var(--shadow-md); border: 1px solid var(--line); overflow: hidden; }
.booking2 .tabs { display: flex; gap: 0; background: var(--bg-soft); padding: 8px; }
.booking2 .tabs button { flex: 1; border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: .92rem; padding: .7rem; border-radius: 10px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.booking2 .tabs button.active { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }
.booking2 .tabs button.active i { color: var(--gold-dark); }
.booking2 form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 16px; padding: 20px; align-items: end; }

/* ---------- Why choose (5 up) ---------- */
.why { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.why .item { text-align: center; padding: 10px; }
.why .item .ic { width: 60px; height: 60px; margin: 0 auto .8rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.5rem; }
.why .item h4 { margin: 0 0 .25rem; font-size: .98rem; font-weight: 700; }
.why .item p { margin: 0; font-size: .82rem; color: var(--muted); }

/* ---------- Services v2 (image cards) ---------- */
.cards5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard .pic { aspect-ratio: 16/11; display: grid; place-items: center; position: relative; }
.pcard .pic i { font-size: 2.8rem; color: #fff; opacity: .95; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
.pcard .b { padding: 14px 12px 16px; text-align: center; }
.pcard .b h4 { margin: 0 0 .2rem; font-size: 1rem; font-weight: 700; }
.pcard .b p { margin: 0 0 .7rem; font-size: .8rem; color: var(--muted); }
.pcard .b a.book { color: var(--gold-dark); font-weight: 700; font-size: .85rem; }
.pcard .b a.book:hover { text-decoration: underline; }

/* ---------- Dark stats band ---------- */
.stats-band { background: #111418; border-radius: 16px; padding: 30px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stats-band .s { display: flex; align-items: center; gap: 1rem; justify-content: center; color: #fff; }
.stats-band .s .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(246,177,0,.14); color: var(--gold); display: grid; place-items: center; font-size: 1.4rem; }
.stats-band .s .num { font-size: 1.9rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stats-band .s .lbl { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ---------- How it works ---------- */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: nowrap; }
.steps .step { flex: 1; text-align: center; padding: 0 10px; max-width: 220px; }
.steps .step .ic { width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.8rem; }
.steps .step h4 { margin: 0 0 .3rem; font-size: 1rem; font-weight: 700; }
.steps .step p { margin: 0; font-size: .84rem; color: var(--muted); }
.steps .arrow { flex: 0 0 60px; display: grid; place-items: center; color: #c9ccd3; font-size: 1.2rem; margin-top: 26px; }

/* ---------- Fleet v2 ---------- */
.fcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard .pic { aspect-ratio: 16/10; display: grid; place-items: center; }
.fcard .pic i { font-size: 2.8rem; color: #fff; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }
.fcard .b { padding: 14px; text-align: center; }
.fcard .b h4 { margin: 0 0 .3rem; font-size: 1.02rem; font-weight: 700; }
.fcard .b .meta { font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.fcard .b .price { color: var(--gold-dark); font-weight: 800; font-size: .95rem; }

/* ---------- Popular routes ---------- */
.rcard { position: relative; border-radius: 14px; overflow: hidden; min-height: 150px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); }
.rcard .ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.78) 100%); }
.rcard .txt { position: relative; z-index: 1; padding: 14px; color: #fff; }
.rcard .txt h4 { margin: 0 0 .15rem; font-size: .96rem; font-weight: 700; }
.rcard .txt .price { font-size: .82rem; color: var(--gold); font-weight: 700; }
.rcard .ic-badge { position: absolute; top: 12px; left: 12px; z-index: 1; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; }

/* ---------- App download band ---------- */
.appband { background: linear-gradient(120deg,#12161d,#1d2530); border-radius: 18px; padding: 44px; color: #fff; display: grid; grid-template-columns: 1.1fr .9fr .8fr; gap: 30px; align-items: center; }
.appband h2 { font-size: 1.7rem; font-weight: 800; margin: 0 0 .6rem; }
.appband h2 .g { color: var(--gold); }
.appband p { color: rgba(255,255,255,.72); margin: 0 0 1.2rem; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: .55rem; background: #000; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; padding: .55rem 1rem; color: #fff; }
.store-btn i { font-size: 1.5rem; }
.store-btn small { display: block; font-size: .62rem; opacity: .7; line-height: 1; }
.store-btn b { font-size: .92rem; font-weight: 700; }
.app-mid { display: flex; align-items: center; gap: 18px; justify-content: center; }
.qr { width: 108px; height: 108px; background: #fff; border-radius: 10px; padding: 8px; }
.phone-mock { width: 150px; height: 250px; border-radius: 22px; border: 4px solid #2a3240; background: linear-gradient(160deg,#e9edf3,#cfd6e0); position: relative; box-shadow: var(--shadow-md); overflow: hidden; }
.phone-mock::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 46px; height: 5px; background: #2a3240; border-radius: 3px; }
.phone-mock .scr { position: absolute; inset: 16px 8px 8px; border-radius: 12px; background: #fff; padding: 8px; }
.phone-mock .map { height: 60%; border-radius: 8px; background: repeating-linear-gradient(45deg,#e7eef6,#e7eef6 8px,#dde6f0 8px,#dde6f0 16px); position: relative; }
.phone-mock .pin { position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); color: var(--gold-dark); font-size: 1.1rem; }
.phone-mock .row { display: flex; gap: 6px; align-items: center; margin-top: 8px; }
.phone-mock .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft); }
.phone-mock .ln { height: 7px; border-radius: 4px; background: #e7e9ee; flex: 1; }
.app-benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.app-benefits li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.app-benefits li i { color: var(--gold); }

/* ---------- Testimonials ---------- */
.tst-wrap { position: relative; }
.tst { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tst .card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--gold); margin-bottom: .7rem; font-size: .9rem; }
.tst .quote { color: var(--text); font-size: .95rem; margin: 0 0 1.2rem; }
.tst .who { display: flex; align-items: center; gap: .7rem; }
.tst .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-size: 1.2rem; }
.tst .who h5 { margin: 0; font-size: .92rem; font-weight: 700; }
.tst .who span { font-size: .78rem; color: var(--muted); }
.tst-nav { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--text); display: grid; place-items: center; position: absolute; top: 50%; transform: translateY(-50%); box-shadow: var(--shadow-sm); cursor: pointer; }
.tst-nav.prev { left: -18px; } .tst-nav.next { right: -18px; }

/* ---------- Corporate band ---------- */
.corp-band { background: linear-gradient(100deg,#0c0f14 0%, #1a1f27 55%, #262b34 100%); border-radius: 18px; color: #fff; padding: 46px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.corp-band .badge-ic { position: absolute; right: 40px; top: 40px; width: 62px; height: 62px; border-radius: 50%; background: rgba(246,177,0,.14); color: var(--gold); display: grid; place-items: center; font-size: 1.5rem; }
.corp-band h2 { font-size: 1.7rem; font-weight: 800; margin: 0 0 1.2rem; }
.corp-band ul { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .6rem; }
.corp-band ul li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.corp-band ul li i { color: var(--gold); }

/* ---------- Driver band ---------- */
.driver-band { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); padding: 32px 40px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; margin-top: -40px; position: relative; z-index: 2; }
.driver-band h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 .4rem; }
.driver-band h3 .g { color: var(--gold); }
.driver-band p { color: var(--muted); margin: 0 0 1rem; }
.driver-illus { font-size: 4rem; color: var(--gold-dark); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq details { border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 0; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 600; font-size: .95rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "\F282"; font-family: "bootstrap-icons"; color: var(--muted); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details[open] summary { color: var(--gold-dark); }
.faq .ans { padding: 0 18px 16px; color: var(--muted); font-size: .9rem; }

/* footer support column already handled by footer-grid; widen to 5 cols */
.footer-grid.f5 { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; }

@media (max-width: 992px) {
    .hero2-inner { grid-template-columns: 1fr; text-align: center; }
    .hero2-badges { justify-content: center; }
    .hero2-car { max-width: 460px; margin: 20px auto 0; }
    .hero2-bg .veil { background: linear-gradient(180deg, rgba(8,12,22,.7), rgba(8,12,22,.55)); }
    .booking2 form { grid-template-columns: 1fr 1fr; }
    .why, .cards5 { grid-template-columns: repeat(3,1fr); }
    .stats-band { grid-template-columns: repeat(2,1fr); }
    .steps { flex-wrap: wrap; gap: 24px; } .steps .arrow { display: none; } .steps .step { flex: 1 1 40%; max-width: none; }
    .appband { grid-template-columns: 1fr; text-align: center; } .app-mid { order: 3; } .app-benefits { justify-items: center; }
    .tst { grid-template-columns: 1fr; } .tst-nav { display: none; }
    .corp-band, .driver-band { grid-template-columns: 1fr; }
    .faq { grid-template-columns: 1fr; }
    .footer-grid.f5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .header-support { display: none; }
    .booking2 form { grid-template-columns: 1fr; }
    .why, .cards5, .stats-band { grid-template-columns: 1fr; }
    .why .item, .pcard { text-align: center; }
    .appband, .corp-band, .driver-band { padding: 26px; }
    .footer-grid.f5 { grid-template-columns: 1fr; }
}
