:root {
    --navy: #061426;
    --navy-2: #0a223f;
    --blue: #006ee8;
    --blue-dark: #004ba8;
    --cyan: #16a9ff;
    --green-light: #b9ff7a;
    --brand-green: #43d111;
    --brand-green-dark: #209000;
    --green-deep: #0f4f12;
    --silver: #d9e2ec;
    --steel: #6d7f94;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --ivory: #f5f9fd;
    --white: #ffffff;
    --charcoal: #111827;
    --muted: #64748b;
    --line: #e2e8f0;
    --green: #38c912;
    --red: #ef4444;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 10px 30px rgba(4, 17, 33, .08);
    --shadow: 0 24px 70px rgba(4, 17, 33, .14);
    --font-body: "Inter", system-ui, sans-serif;
    --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
    --green-gradient: linear-gradient(135deg, #b9ff7a 0%, #43d111 38%, #209000 72%, #0f4f12 100%);
    --blue-gradient: linear-gradient(135deg, #e5f5ff 0%, #16a9ff 32%, #006ee8 68%, #003a82 100%);
    --brand-gradient: var(--green-gradient);
    --metal-gradient: linear-gradient(135deg, #ffffff 0%, #ccd6e2 36%, #73859b 54%, #f8fbff 74%, #a4b2c3 100%);
    --motion-shadow-green: 0 16px 34px rgba(67, 209, 17, .24);
    --motion-shadow-blue: 0 16px 34px rgba(0, 110, 232, .2);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
    max-width: 100%;
    margin: 0;
    overflow-x: clip;
    color: var(--charcoal);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0;
}
h1 { font-size: clamp(2.6rem, 5vw, 5.15rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.12; }
h3 { font-size: 1.18rem; line-height: 1.3; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(56, 189, 248, .75); outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 40px)); }
.narrow { max-width: 850px; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 9999; padding: 12px 18px; border-radius: 0 0 10px 10px; color: #fff; background: var(--blue); }
.skip-link:focus { top: 0; }
.section { padding: 110px 0; }
.section-sm { padding: 48px 0; }
.section-muted { background: var(--ivory); }
.section-dark { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, #061426, #0a2749 62%, #04101f); }
.section-dark::before { position: absolute; inset: 0; background: linear-gradient(100deg, transparent 0 12%, rgba(22,169,255,.12) 13%, transparent 18% 58%, rgba(255,255,255,.08) 59%, transparent 64%); background-size: 260% 100%; content: ""; opacity: .6; pointer-events: none; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.eyebrow.light { color: #8bd9fc; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 11px 21px; border-radius: 12px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { position: relative; overflow: hidden; color: #fff; border: 0; background: var(--green-gradient); box-shadow: var(--motion-shadow-green); }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { color: #fff; background: linear-gradient(135deg, #d5ffad 0%, #55e11e 40%, #28a304 72%, #0b3c0d 100%); box-shadow: 0 18px 40px rgba(67, 209, 17, .32); }
.btn-primary i { color: inherit; }
.btn-amber { color: #fff; border: 0; background: linear-gradient(135deg, #55bbff 0%, #006ee8 48%, #003a82 100%); box-shadow: var(--motion-shadow-blue); }
.btn-amber:hover { color: #fff; box-shadow: 0 18px 40px rgba(0, 110, 232, .3); }
.btn-soft { color: var(--blue); border: 1px solid #cbdcff; background: #eff6ff; }
.btn-soft:hover { color: var(--blue-dark); border-color: #a7c3fd; background: #e0ecff; }
.text-link { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; color: var(--blue); font-weight: 800; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid rgba(226, 232, 240, .8); background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }
.site-header .navbar { min-height: 96px; padding: 0; }
.brand { display: inline-flex; align-items: center; color: var(--navy); line-height: 1; }
.brand:hover { color: var(--navy); }
.brand-logo { display: block; width: auto; height: 76px; max-width: min(360px, 62vw); flex: 0 0 auto; object-fit: contain; object-position: left center; transition: transform .25s ease; }
.brand:hover .brand-logo { transform: translateY(-1px); }
.footer-about .brand { margin-bottom: 4px; }
.footer-about .brand-logo { height: 54px; max-width: min(260px, 70vw); }
.site-header .nav-link { position: relative; margin: 0 4px; padding: 26px 9px; color: #334155; font-size: .9rem; font-weight: 700; }
.site-header .nav-link:hover { color: var(--blue); }
.site-header .nav-link::after { position: absolute; right: 9px; bottom: 20px; left: 9px; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); content: ""; transition: transform .2s ease; }
.site-header .nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 11px;
    border: 1px solid #d7e3ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}
.navbar-toggler-icon {
    width: 22px;
    height: 18px;
    background-image: linear-gradient(var(--navy), var(--navy)), linear-gradient(var(--navy), var(--navy)), linear-gradient(var(--navy), var(--navy));
    background-position: center top, center center, center bottom;
    background-repeat: no-repeat;
    background-size: 22px 2px;
}
/* Header "Book a Driver" uses the same white-on-green primary button style */
/* Drawer chrome is hidden on desktop; only shown inside the mobile side drawer */
.nav-drawer-head, .nav-drawer-map { display: none; }
.nav-drawer-body { display: contents; }
.nav-backdrop { position: fixed; z-index: 1150; inset: 0; background: rgba(4, 12, 24, .5); backdrop-filter: blur(2px); opacity: 0; transition: opacity .3s ease; }
.nav-backdrop:not([hidden]) { opacity: 1; }
body.nav-open { overflow: hidden; }

/* Location map (shared partial) */
.location-map { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.location-map-head { display: flex; gap: 14px; padding: 18px 20px; }
.location-map-icon { display: grid; flex: 0 0 44px; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: #fff; background: var(--green-gradient); font-size: 1.2rem; }
.location-map-head .eyebrow { display: block; margin-bottom: 2px; }
.location-map-head strong { display: block; color: var(--charcoal); font-size: 1rem; }
.location-map-head p { margin: 4px 0 8px; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.location-map-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: .82rem; font-weight: 800; }
.location-map-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-top: 1px solid var(--line); }
.location-map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.05); }
.contact-map-section { margin-top: 28px; }

/* Hero */
.hero { position: relative; min-height: 760px; overflow: hidden; color: #fff; background: var(--navy); }
.hero::before { position: absolute; inset: 0; z-index: 0; background: linear-gradient(100deg, rgba(4, 12, 24, .99) 4%, rgba(4, 18, 34, .93) 45%, rgba(8, 44, 84, .72) 100%); content: ""; }
.hero::after { position: absolute; inset: auto -12% -34% -12%; z-index: 1; height: 55%; background: linear-gradient(115deg, transparent 0 28%, rgba(255,255,255,.18) 29%, transparent 31% 46%, rgba(22,169,255,.55) 47%, transparent 49% 66%, rgba(67,201,19,.52) 67%, transparent 69%), linear-gradient(0deg, rgba(2,8,15,.72), transparent 65%); background-size: 360px 100%, 100% 100%; content: ""; opacity: .7; pointer-events: none; transform: perspective(700px) rotateX(57deg); transform-origin: bottom; }
.hero-media { position: absolute; inset: 0; background: #071f12 url("/assets/images/seo/cta-bg.webp") center/cover no-repeat; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: .54; }
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 760px; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr); align-items: center; gap: 70px; padding-top: 60px; padding-bottom: 60px; }
.hero-copy { max-width: 690px; }
.hero h1 { max-width: 690px; margin-bottom: 25px; color: #fff; }
.hero h1 span { color: transparent; background: linear-gradient(100deg, #16a9ff, #fff 48%, #43c913); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 650px; margin-bottom: 31px; color: #cbd5e1; font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 35px; color: #dbeafe; font-size: .82rem; font-weight: 700; }
.hero-trust i { margin-right: 5px; color: var(--cyan); }
/* Quick booking: compact, slightly translucent white card with brand-green accents */
.quick-booking { padding: 15px 15px 14px; border: 1px solid rgba(255,255,255,.5); border-radius: 15px; background: rgba(255, 255, 255, .9); box-shadow: 0 22px 55px rgba(0,0,0,.32); backdrop-filter: blur(7px); color: var(--charcoal); }
.quick-booking .row { --bs-gutter-x: .45rem; --bs-gutter-y: .4rem; }
.quick-booking h2 { margin: 3px 0 2px; color: var(--charcoal); font-size: 1.15rem; }
.quick-booking > p { margin-bottom: 9px; color: var(--muted); font-size: .74rem; }
.quick-booking label, .booking-form-card label, .contact-form-card label { display: block; margin-bottom: 7px; color: inherit; font-size: .76rem; font-weight: 800; }
.quick-booking label { margin-bottom: 2px; color: #1f2a3a; font-size: .68rem; }
.quick-booking .form-control, .quick-booking .form-select { min-height: 37px; padding-top: 5px; padding-bottom: 5px; color: var(--charcoal); border-color: #d6e0ec; background-color: rgba(255,255,255,.96); font-size: .84rem; }
.quick-booking .form-select { color-scheme: light; }
.quick-booking .form-control:focus, .quick-booking .form-select:focus { border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(67,201,19,.18); }
.quick-booking .form-control::placeholder { color: #9aa7b8; }
.quick-booking .btn-primary { min-height: 42px; margin-top: 7px !important; }
.quick-booking small { display: block; margin-top: 7px; color: var(--muted); font-size: .7rem; text-align: center; }
.form-kicker { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-green-dark); font-size: .68rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(56, 189, 248, .16); border-radius: 50%; }
.hero-orbit-one { width: 620px; height: 620px; right: -280px; bottom: -300px; }
.hero-orbit-two { width: 220px; height: 220px; right: 35%; top: -150px; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 8px 30px rgba(15, 23, 42, .04); }
.trust-grid { display: grid; min-height: 82px; grid-template-columns: repeat(5, 1fr); align-items: center; }
.trust-grid span { display: flex; align-items: center; justify-content: center; gap: 9px; color: #334155; border-right: 1px solid var(--line); font-size: .8rem; font-weight: 800; text-align: center; }
.trust-grid span:last-child { border-right: 0; }
.trust-grid i { color: var(--blue); font-size: 1.15rem; }

/* Shared blocks */
.answer-card { display: flex; max-width: 1030px; align-items: flex-start; gap: 24px; margin: auto; padding: 32px 36px; border: 1px solid #dbeafe; border-radius: var(--radius); background: linear-gradient(120deg, #f8fbff, #fff); box-shadow: var(--shadow-sm); }
.answer-card h2 { margin-bottom: 10px; font-size: 1.55rem; }
.answer-card p { max-width: 880px; margin: 0; color: #475569; font-size: 1rem; }
.answer-icon { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border-radius: 15px; color: #fff; background: var(--green-gradient); box-shadow: 0 10px 25px rgba(67, 209, 17, .22); font-size: 1.3rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 45px; }
.section-heading h2 { max-width: 700px; margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin: 0; }
.section-heading.centered { display: block; max-width: 720px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered p { margin: 18px auto 0; color: #b7c4d6; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.popular-bookings { padding-top: 85px; padding-bottom: 35px; }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.popular-card { display: flex; min-height: 150px; align-items: flex-start; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.popular-card:hover { border-color: #98e976; box-shadow: var(--shadow); transform: translateY(-6px); }
.popular-card > i:first-child { display: grid; width: 43px; height: 43px; flex: 0 0 43px; place-items: center; border-radius: 13px; color: var(--blue); background: linear-gradient(135deg, #edf7ff, #efffe9); font-size: 1.12rem; }
.popular-card > i:last-child { margin-left: auto; color: var(--blue); }
.popular-card strong, .popular-card small { display: block; }
.popular-card strong { color: var(--charcoal); font-size: .88rem; line-height: 1.35; }
.popular-card small { margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.location-route-block .section-heading { margin-bottom: 26px; }
.route-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.route-card {
    --route-accent: var(--blue);
    --route-soft: #edf7ff;
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 286px;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid #cfe2f7;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--route-soft) 0%, #fff 38%, #fff 100%);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
    isolation: isolate;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.route-card::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--route-accent); content: ""; }
.route-card:nth-child(4n+2) { --route-accent: #2aaf06; --route-soft: #f2fdec; }
.route-card:nth-child(4n+3) { --route-accent: #e94365; --route-soft: #fff2f5; }
.route-card:nth-child(4n+4) { --route-accent: #7340df; --route-soft: #f6f2ff; }
.route-card:hover { border-color: var(--route-accent); box-shadow: 0 22px 48px rgba(15, 23, 42, .11); transform: translateY(-5px); }
.route-card-head { display: grid; min-width: 0; grid-template-columns: 52px minmax(0, 1fr); align-items: center; gap: 16px; }
.route-card-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255, 255, 255, .9); border-radius: 15px; color: var(--route-accent); background: #fff; box-shadow: 0 10px 24px rgba(15, 23, 42, .08); font-size: 1.25rem; }
.route-card-kicker { display: block; margin-bottom: 4px; color: var(--route-accent); font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.route-card h3 { margin: 0; overflow-wrap: anywhere; color: var(--charcoal); font-size: 1.08rem; line-height: 1.35; }
.route-card-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.route-card-meta span { display: inline-flex; min-width: 0; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid #dbe7f2; border-radius: 999px; color: #475569; background: rgba(255, 255, 255, .82); font-size: .73rem; font-weight: 700; line-height: 1.35; }
.route-card-meta i { flex: 0 0 auto; color: var(--route-accent); }
.route-card-copy { display: grid; align-content: start; gap: 7px; }
.route-card-copy p { margin: 0; color: #64748b; font-size: .82rem; line-height: 1.55; }
.route-card .btn { width: fit-content; min-height: 44px; padding: 9px 16px; justify-self: start; }
.route-card .btn i { font-size: .9rem; transition: transform .2s ease; }
.route-card .btn:hover i { transform: translateX(3px); }
.driver-apply-band { padding: 52px 0; color: #fff; background: linear-gradient(120deg, #061426, #0a2749 54%, #0f4f12); }
.driver-apply-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.driver-apply-inner h2 { max-width: 760px; margin-bottom: 10px; color: #fff; font-size: clamp(1.85rem, 3vw, 3rem); }
.driver-apply-inner p { max-width: 850px; margin: 0; color: #cbd5e1; }
.form-entry-section { background: linear-gradient(180deg, #f8fbff 0%, #fff 100%); }
.form-entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-entry-card {
    display: grid;
    min-height: 210px;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.form-entry-card:hover { border-color: #98e976; box-shadow: var(--shadow); transform: translateY(-5px); }
.form-entry-card > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--blue);
    background: linear-gradient(135deg, #edf7ff, #efffe9);
    font-size: 1.25rem;
}
.form-entry-card strong,
.form-entry-card small,
.form-entry-card em { display: block; }
.form-entry-card strong { margin-bottom: 7px; color: var(--charcoal); font-size: .98rem; line-height: 1.35; }
.form-entry-card small { color: var(--muted); font-size: .78rem; line-height: 1.55; }
.form-entry-card em { align-self: end; color: var(--blue); font-size: .76rem; font-style: normal; font-weight: 800; }
.form-entry-driver { border-color: #bdf2aa; background: linear-gradient(150deg, #f0ffe8 0%, #fff 40%, #fff 100%); }
.service-card { position: relative; min-height: 260px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 25px rgba(15, 23, 42, .04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { position: absolute; width: 140px; height: 140px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(56, 189, 248, .1); content: ""; transition: transform .25s ease; }
.service-card:hover { border-color: #98e976; box-shadow: var(--shadow); transform: translateY(-8px) rotateX(1deg); }
.service-card:hover::after { transform: scale(1.7); }
.service-icon { display: grid; width: 51px; height: 51px; margin-bottom: 23px; place-items: center; border-radius: 15px; color: var(--blue); background: linear-gradient(135deg, #edf7ff, #efffe9); font-size: 1.35rem; }
.service-card h3, .service-card h2 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { margin-bottom: 20px; font-size: .88rem; line-height: 1.6; }
.service-card a { position: absolute; z-index: 1; bottom: 25px; color: var(--blue); font-size: .82rem; font-weight: 800; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 255px; padding: 31px 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.step-card > span { position: absolute; right: 22px; top: 18px; color: rgba(255,255,255,.16); font-family: var(--font-heading); font-size: 2rem; font-weight: 800; }
.step-card > i { display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center; border-radius: 15px; color: #fff; background: var(--brand-gradient); font-size: 1.3rem; }
.step-card h3 { margin-bottom: 11px; }
.step-card p { margin: 0; color: #a9b8cc; font-size: .88rem; }
.steps-light .step-card { border-color: var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.steps-light .step-card > span { color: #dbeafe; }
.steps-light .step-card h3 { color: var(--charcoal); }
.steps-light .step-card p { color: var(--muted); }
.split-layout { display: grid; grid-template-columns: .9fr 1fr; align-items: center; gap: 90px; }
.feature-visual { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(4,15,29,.98), rgba(8,43,82,.9)), url("/assets/images/seo/cta-bg.webp") center/cover no-repeat; }
.feature-visual::before, .feature-visual::after { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.feature-visual::before { width: 420px; height: 420px; left: -130px; bottom: -170px; }
.feature-visual::after { width: 230px; height: 230px; right: -100px; top: -80px; }
.visual-card { position: relative; z-index: 2; color: #fff; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); box-shadow: 0 22px 45px rgba(0,0,0,.25); backdrop-filter: blur(15px); }
.visual-main { display: flex; width: min(360px, calc(100% - 70px)); flex-direction: column; padding: 34px; border-radius: 24px; }
.visual-main i { margin-bottom: 28px; color: #76dcff; font-size: 3.2rem; }
.visual-main strong { margin-bottom: 12px; font-family: var(--font-heading); font-size: 1.5rem; }
.visual-main span { color: #cbd5e1; font-size: .9rem; }
.visual-float { position: absolute; right: 28px; bottom: 35px; display: flex; align-items: center; gap: 10px; padding: 15px 18px; border-radius: 15px; font-weight: 800; }
.visual-float i { color: var(--amber-light); }
.feature-copy h2 { margin-bottom: 22px; }
.feature-copy > p { margin-bottom: 30px; font-size: 1.04rem; }
.check-list { display: grid; gap: 17px; margin-bottom: 32px; }
.check-list > div { display: flex; align-items: flex-start; gap: 13px; color: #475569; }
.check-list i { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .8rem; }
.safety-band { position: relative; overflow: hidden; padding: 85px 0; color: #fff; background: linear-gradient(120deg, #071f12, #0f4f12 58%, #05230a); }
.safety-band-grid { display: grid; grid-template-columns: 1.05fr .75fr; align-items: center; gap: 70px; }
.safety-band h2 { margin-bottom: 17px; color: #fff; }
.safety-band p { max-width: 700px; margin-bottom: 27px; color: #cbd5e1; }
.verification-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.verification-grid span { display: flex; min-height: 115px; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.07); font-size: .76rem; font-weight: 800; text-align: center; backdrop-filter: blur(12px); }
.verification-grid i { color: #7dd3fc; font-size: 1.55rem; }
.area-section { position: relative; background: var(--ivory); }
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.area-card { display: flex; min-height: 104px; align-items: center; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 7px 20px rgba(15,23,42,.04); transition: transform .2s ease, box-shadow .2s ease; }
.area-card:hover { color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.area-card > i:first-child { color: var(--blue); font-size: 1.3rem; }
.area-card > i:last-child { margin-left: auto; color: #94a3b8; }
.area-card span { font-weight: 800; }
.area-card small { display: block; color: var(--muted); font-size: .7rem; font-weight: 600; }
.coverage-city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.coverage-city-card, .locality-link-card { display: grid; min-width: 0; align-items: center; color: var(--charcoal); background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.coverage-city-card { min-height: 112px; grid-template-columns: 52px minmax(0, 1fr) 36px; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.coverage-city-card:hover, .coverage-city-card:focus-visible, .locality-link-card:hover, .locality-link-card:focus-visible { color: var(--charcoal); border-color: var(--green); box-shadow: 0 16px 34px rgba(47,158,0,.13); transform: translateY(-3px); }
.coverage-city-card strong, .coverage-city-card small, .locality-link-card small { display: block; }
.coverage-city-card strong { font-size: 1.02rem; }
.coverage-city-card small, .locality-link-card small { margin-top: 4px; color: var(--muted); font-size: .72rem; font-weight: 600; }
.coverage-city-card > i:last-child, .locality-link-card > i:last-child { justify-self: end; color: var(--green); }
.coverage-flag { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid #cdeebf; border-radius: 14px; color: #217a07; background: #effbe9; font-size: 1.2rem; }
.coverage-directory { display: grid; gap: 14px; }
.coverage-city-group { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.coverage-city-group summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; cursor: pointer; list-style: none; }
.coverage-city-group summary::-webkit-details-marker { display: none; }
.coverage-city-group summary span, .coverage-city-group summary small { display: block; }
.coverage-city-group summary small { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.coverage-city-group summary > i { color: var(--green); transition: transform .2s ease; }
.coverage-city-group[open] summary > i { transform: rotate(180deg); }
.coverage-city-group .locality-directory-grid { padding: 0 18px 18px; }
.locality-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.locality-link-card { min-height: 88px; grid-template-columns: 42px minmax(0, 1fr) 24px; gap: 12px; padding: 15px; border: 1px solid #e3eaf2; border-radius: 14px; font-size: .88rem; font-weight: 800; }
.locality-link-card .coverage-flag { width: 42px; height: 42px; border-radius: 12px; font-size: 1rem; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-rate-badge {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 8px 14px;
    border: 1px solid rgba(67,201,19,.45); border-radius: 999px; color: #dcfce7;
    background: rgba(15,79,18,.55); box-shadow: 0 12px 28px rgba(4,17,33,.22);
    font-size: .82rem; font-weight: 800;
}
.hero-rate-badge i { color: #86efac; }
.btn-whatsapp {
    color: #fff; border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, #5fd000, #2f9e00 55%, #1a7a00);
    box-shadow: 0 14px 30px rgba(47,158,0,.35);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    color: #fff; border-color: rgba(255,255,255,.28);
    background: linear-gradient(135deg, #6fe010, #38b000 55%, #228b00);
    box-shadow: 0 16px 34px rgba(47,158,0,.45);
}

.trust-matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-matrix-card {
    padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius);
    background: linear-gradient(160deg, #fff, #f5fbff); box-shadow: var(--shadow-sm);
}
.trust-matrix-icon {
    display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 18px;
    border-radius: 16px; color: #fff; background: var(--green-gradient);
    box-shadow: 0 12px 26px rgba(67,209,17,.24); font-size: 1.35rem;
}
.trust-matrix-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.trust-matrix-card p { margin: 0; color: #64748b; font-size: .9rem; }

.value-banner-section { padding: 0 0 20px; }
.value-banner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-banner {
    display: flex; align-items: flex-start; gap: 18px; padding: 28px 30px;
    border: 1px solid rgba(22,169,255,.18); border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f8fbff, #fff); box-shadow: var(--shadow-sm);
}
.value-banner-alt {
    border-color: rgba(56,176,0,.22);
    background: linear-gradient(135deg, #f6fff2, #fff);
}
.value-banner-icon {
    display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center;
    border-radius: 14px; color: #fff; background: var(--blue-gradient); font-size: 1.3rem;
}
.value-banner-alt .value-banner-icon { background: var(--green-gradient); }
.value-banner h2 { margin-bottom: 8px; font-size: 1.35rem; }
.value-banner p { margin: 0; color: #64748b; font-size: .92rem; }

.wa-flow-shell {
    display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 34px; align-items: center;
    padding: 34px; border: 1px solid rgba(56,176,0,.2); border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f3fff0, #f8fbff 58%, #fff);
    box-shadow: var(--shadow-sm);
}
.wa-flow-copy h2 { margin-bottom: 12px; }
.wa-flow-copy p { margin-bottom: 20px; color: #64748b; }
.wa-flow-steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.wa-flow-step {
    display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
    padding: 16px 18px; border: 1px solid rgba(11,55,108,.08); border-radius: 14px; background: #fff;
    box-shadow: 0 10px 22px rgba(4,17,33,.06);
}
.wa-step-no {
    display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%;
    color: #fff; background: linear-gradient(135deg, #5fd000, #2f9e00); font-size: .82rem; font-weight: 800;
}
.wa-flow-step strong { display: block; margin-bottom: 4px; }
.wa-flow-step p { margin: 0; color: #64748b; font-size: .84rem; }
.wa-flow-step > i { color: var(--cyan); font-size: 1.2rem; }

.image-cta { position: relative; min-height: 440px; overflow: hidden; padding: 46px; border-radius: var(--radius-lg); background: var(--navy) url("/assets/images/seo/cta-bg.webp") center/cover no-repeat; }
.image-cta::before { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(4,12,24,.96), rgba(0,76,168,.64)); content: ""; }
.cta-airport::before { background: linear-gradient(145deg, rgba(4,12,24,.96), rgba(35,147,0,.48)); }
.image-cta > * { position: relative; }
.image-cta h2 { max-width: 480px; margin: 70px 0 16px; color: #fff; font-size: 2.15rem; }
.image-cta p { max-width: 480px; margin-bottom: 28px; color: #cbd5e1; }
.customer-needs { background: var(--ivory); }
.needs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.need-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.need-card i { color: var(--blue); font-size: 1.7rem; }
.need-card h3 { margin: 24px 0 10px; }
.need-card p { margin: 0; font-size: .86rem; }
.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.2fr; align-items: start; gap: 85px; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro p { max-width: 380px; margin-bottom: 25px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border: 0; border-bottom: 1px solid var(--line); }
.accordion-button { padding: 23px 4px; color: var(--charcoal); background: transparent; box-shadow: none !important; font-family: var(--font-heading); font-size: 1rem; font-weight: 800; }
.accordion-button:not(.collapsed) { color: var(--blue); background: transparent; }
.accordion-body { padding: 0 4px 25px; color: var(--muted); }
.final-cta, .compact-cta { padding: 75px 0; color: #fff; background: linear-gradient(120deg, #071f12, #116215); }
.final-cta-inner, .compact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2, .compact-cta h2 { max-width: 790px; margin-bottom: 12px; color: #fff; }
.final-cta p, .compact-cta p { max-width: 760px; margin: 0; color: #cbd5e1; }
.compact-cta { padding: 60px 0; }
.compact-cta h2 { font-size: 2.2rem; }
/* On the green CTA banners, a solid white button with brand-green text reads cleaner/more premium than blue-on-green */
.final-cta .btn-amber, .compact-cta .btn-amber {
    color: var(--brand-green-dark);
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .4);
}
.final-cta .btn-amber:hover, .compact-cta .btn-amber:hover {
    color: #0d3f10;
    background: #f1fff0;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .55);
}
.final-cta .btn-amber i, .compact-cta .btn-amber i { transition: transform .2s ease; }
.final-cta .btn-amber:hover i, .compact-cta .btn-amber:hover i { transform: translateX(3px); }
.seo-copy { background: #fbfdff; }
.seo-copy h2 { font-size: 1.8rem; }
.seo-copy p { font-size: .95rem; }

/* Interior pages */
.page-hero, .booking-hero { position: relative; overflow: hidden; padding: 95px 0 100px; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(22,169,255,.18), transparent 28%), linear-gradient(120deg, var(--navy), #0a2749); }
.page-hero::after, .booking-hero::after { position: absolute; width: 430px; height: 430px; right: -180px; bottom: -280px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.page-hero h1, .booking-hero h1 { max-width: 830px; margin-bottom: 20px; color: #fff; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.page-hero > .container > p, .booking-hero > .container > p { max-width: 750px; margin: 0; color: #cbd5e1; font-size: 1.08rem; }
.page-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: center; gap: 50px; }
.page-hero-inner > div:first-child > p { max-width: 750px; margin: 0; color: #cbd5e1; font-size: 1.08rem; }
.breadcrumb-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 35px; color: #a9b8cc; font-size: .78rem; font-weight: 700; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav i { font-size: .65rem; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .3fr; align-items: center; gap: 45px; }
.service-page-hero { padding-bottom: 80px; }
.service-hero-icon { display: grid; width: 185px; height: 185px; justify-self: end; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 45px; color: #fff; background: rgba(255,255,255,.08); box-shadow: 0 25px 50px rgba(0,0,0,.2); font-size: 5rem; transform: rotate(4deg); }
.detail-columns, .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.content-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.content-card > i { display: grid; width: 52px; height: 52px; margin-bottom: 26px; place-items: center; border-radius: 15px; color: var(--blue); background: #eff6ff; font-size: 1.35rem; }
.content-card h2 { font-size: 1.5rem; }
.card-label { display: block; margin-bottom: 10px; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.icon-list { display: grid; gap: 15px; margin: 25px 0 0; padding: 0; list-style: none; }
.icon-list li { display: flex; gap: 10px; color: #475569; }
.icon-list i { color: var(--green); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: flex; min-height: 135px; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.related-card > i:first-child { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border-radius: 14px; color: var(--blue); background: #eff6ff; font-size: 1.2rem; }
.related-card > i:last-child { margin-left: auto; color: var(--blue); }
.related-card small { display: block; margin-top: 4px; color: var(--muted); font-size: .75rem; line-height: 1.4; }
.prose-block { margin-top: 55px; }
.prose-block .answer-card + .notice-card { margin-top: 30px; }
.prose-block h2 { margin-top: 40px; font-size: 1.65rem; }
.prose-block p { color: #475569; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.notice-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border: 1px solid #fde68a; border-radius: 15px; background: #fffbeb; }
.notice-card > i { color: var(--amber); font-size: 1.25rem; }
.notice-card p { margin: 3px 0 0; font-size: .86rem; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg, #fff, #f6fbff 48%, #fff); }
.pricing-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(0,110,232,.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, #f3faff 58%, #f5fff0);
    box-shadow: var(--shadow);
}
.pricing-hero-card h2 { max-width: 720px; margin-bottom: 15px; }
.pricing-hero-card p { max-width: 760px; margin-bottom: 22px; color: #475569; }
.pricing-contact-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pricing-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(0,110,232,.16);
    border-radius: 13px;
    color: var(--blue);
    background: #fff;
    font-weight: 800;
}
.driver-query-visual {
    --vg: #38b000;
    --az: #16a9ff;
    position: relative;
    min-height: 280px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255,255,255,.97), rgba(232,245,255,.9));
    box-shadow: 0 34px 70px rgba(4,17,33,.45), inset 0 1px 0 rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    animation: sceneEntrance .9s cubic-bezier(.2,.8,.2,1) both;
}
/* faint HUD / map grid */
.driver-query-visual::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(rgba(11,55,108,.05) 1px, transparent 1px) 0 0 / 26px 26px,
      linear-gradient(90deg, rgba(11,55,108,.05) 1px, transparent 1px) 0 0 / 26px 26px;
    -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 52%, transparent 100%);
            mask-image: radial-gradient(circle at 50% 46%, #000 52%, transparent 100%);
    content: "";
    pointer-events: none;
}
/* azure ambient glow */
.driver-query-visual::after {
    position: absolute;
    z-index: 0;
    width: 220px;
    height: 220px;
    right: -56px;
    top: -76px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,169,255,.26), transparent 70%);
    content: "";
    pointer-events: none;
    animation: hudGlow 8s ease-in-out infinite;
}
.page-hero-visual { align-self: stretch; min-height: 320px; opacity: 1; }
/* (legacy hero-scene markup replaced by the premium HUD system below) */

/* ============================================================
   Premium motion-infographic header system — filled HUD scenes
   ============================================================ */
.hero-scene { position: relative; }
.hero-scene--pricing, .hero-scene--contact, .hero-scene--about,
.hero-scene--safety, .hero-scene--privacy, .hero-scene--terms,
.hero-scene--services, .hero-scene--booking, .hero-scene--areas,
.hero-scene--service-detail { background: linear-gradient(160deg, rgba(255,255,255,.97), rgba(232,245,255,.9)); }

.hud-spotlight {
    position: absolute; z-index: 1; left: 50%; top: 50%; width: 220px; height: 220px;
    border-radius: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(22,169,255,.22) 0%, rgba(56,176,0,.12) 42%, transparent 72%);
    animation: spotlightPulse 5s ease-in-out infinite; pointer-events: none;
}

.hud-glow { position: absolute; z-index: 0; left: -30px; bottom: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(56,176,0,.28), transparent 68%); animation: hudGlow 8s ease-in-out infinite; pointer-events: none; }
.hud-glow-alt { left: auto; right: -20px; top: -30px; bottom: auto; width: 160px; height: 160px; background: radial-gradient(circle, rgba(22,169,255,.3), transparent 68%); animation-delay: 2s; }
.hud-particle { position: absolute; z-index: 2; width: 7px; height: 7px; border-radius: 50%; background: var(--az); box-shadow: 0 0 14px rgba(22,169,255,.85); opacity: .35; pointer-events: none; }
.hud-particle.hp-1 { left: 14%; bottom: 22%; animation: hudFloat 5s ease-in-out infinite; }
.hud-particle.hp-2 { left: 84%; bottom: 38%; animation: hudFloat 6s ease-in-out 1.2s infinite; }
.hud-particle.hp-3 { left: 58%; bottom: 14%; animation: hudFloat 5.5s ease-in-out 2.4s infinite; }
.hud-particle.hp-4 { left: 32%; top: 28%; animation: hudFloat 6.5s ease-in-out .8s infinite; }
.hud-particle.hp-5 { left: 72%; top: 22%; background: var(--vg); box-shadow: 0 0 14px rgba(56,176,0,.75); animation: hudFloat 5.2s ease-in-out 1.6s infinite; }
.hud-particle.hp-6 { left: 48%; bottom: 8%; background: var(--vg); box-shadow: 0 0 14px rgba(56,176,0,.75); animation: hudFloat 6.8s ease-in-out 2.8s infinite; }

.hero-live {
    position: absolute; z-index: 6; right: 12px; top: 12px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 12px; border: 1px solid rgba(56,176,0,.25); border-radius: 999px;
    color: #0a2e14; background: rgba(255,255,255,.96);
    box-shadow: 0 10px 24px rgba(4,17,33,.14);
    font-size: .7rem; font-weight: 800;
}
.hero-live-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--vg); box-shadow: 0 0 0 0 rgba(56,176,0,.65); animation: livePing 1.6s ease-out infinite; }

/* shared focal elements — larger & bolder */
.hud-core {
    position: absolute; z-index: 4; left: 50%; top: 50%;
    display: grid; width: 88px; height: 88px; place-items: center;
    border-radius: 22px; color: #fff;
    background: linear-gradient(135deg, #4cc8ff, #0a78e0 55%, #0848a8);
    box-shadow: 0 20px 42px rgba(10,90,208,.45), 0 0 0 6px rgba(22,169,255,.12), inset 0 1px 0 rgba(255,255,255,.5);
    font-size: 2.2rem; transform: translate(-50%, -50%);
    animation: hudCorePop 6s ease-in-out infinite;
}
.hud-core-xl { width: 96px; height: 96px; font-size: 2.5rem; border-radius: 24px; }
.hud-ring { position: absolute; z-index: 2; left: 50%; top: 50%; width: 140px; height: 140px; border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hud-ring-lg { width: 168px; height: 168px; }
.hud-ring::before { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(22,169,255,.38); content: ""; animation: orbitRoll 14s linear infinite; }
.hud-ring::after { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 250deg, var(--vg) 310deg, transparent 360deg); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px)); mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px)); content: ""; animation: orbitRoll 5s linear infinite; }
.hud-progress { position: absolute; z-index: 2; left: 50%; top: 50%; width: 148px; height: 148px; border-radius: 50%; transform: translate(-50%, -50%); background: conic-gradient(from -90deg, var(--vg) 0deg, rgba(56,176,0,.15) 0deg); animation: progressRing 4s ease-in-out infinite; -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px)); mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px)); }

.hud-status {
    position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 11px; border: 1px solid rgba(22,169,255,.18); border-radius: 12px;
    background: rgba(255,255,255,.97); box-shadow: 0 14px 28px rgba(4,17,33,.16);
    color: #0f2438; font-size: .7rem; font-weight: 800; white-space: nowrap;
    animation: hudCardSlide 6s ease-in-out infinite;
}
.hud-status > i:first-child { color: var(--az); font-size: 1rem; }
.hud-status .hud-tick { color: var(--vg); font-size: 1rem; animation: tickReveal 4s ease-in-out infinite; }
.hud-status.status-a { left: 12px; top: auto; bottom: 52px; }
.hud-status.status-b { right: 12px; bottom: 14px; animation-delay: .5s; }
.hud-status.status-a .hud-tick { animation-delay: 1s; }
.hud-status.status-b .hud-tick { animation-delay: 2.2s; }

.hud-chip {
    position: absolute; z-index: 5; left: 50%; bottom: 52px; display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px; border-radius: 999px; color: #0a2e14;
    background: linear-gradient(135deg, #e8ffe0, #fff);
    border: 1px solid rgba(56,176,0,.3); box-shadow: 0 8px 20px rgba(56,176,0,.2);
    font-size: .64rem; font-weight: 800; transform: translateX(-50%);
    animation: chipBounce 3s ease-in-out infinite;
}
.hud-chip i { color: var(--vg); font-size: .85rem; }

@keyframes hudGlow { 0%, 100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes spotlightPulse { 0%, 100% { opacity: .75; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); } }
@keyframes sceneEntrance { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hudFloat { 0% { transform: translateY(10px) scale(.5); opacity: .2; } 20% { opacity: 1; } 80% { opacity: .9; } 100% { transform: translateY(-52px) scale(1.1); opacity: .15; } }
@keyframes hudCorePop { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, calc(-50% - 6px)) scale(1.06); } }
@keyframes hudCardSlide { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes livePing { 0% { box-shadow: 0 0 0 0 rgba(56,176,0,.65); } 70% { box-shadow: 0 0 0 10px rgba(56,176,0,0); } 100% { box-shadow: 0 0 0 0 rgba(56,176,0,0); } }
@keyframes tickReveal { 0%, 15% { transform: scale(0); opacity: 0; } 30% { transform: scale(1.35); opacity: 1; } 45%, 100% { transform: scale(1); opacity: 1; } }
@keyframes chipBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-4px); } }
@keyframes progressRing { 0% { background: conic-gradient(from -90deg, var(--vg) 0deg, rgba(56,176,0,.12) 0deg); } 55% { background: conic-gradient(from -90deg, var(--vg) 280deg, rgba(56,176,0,.12) 280deg); } 100% { background: conic-gradient(from -90deg, var(--vg) 0deg, rgba(56,176,0,.12) 0deg); } }

/* --- Pricing --- */
.fare-token { position: absolute; z-index: 4; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #5fd000, #2f9e00); box-shadow: 0 10px 20px rgba(47,158,0,.45); font-size: .85rem; font-weight: 900; opacity: 0; }
.fare-token.tok-1 { left: 22%; bottom: 34%; animation: tokenRise 3.2s ease-in-out infinite; }
.fare-token.tok-2 { left: 50%; bottom: 28%; animation: tokenRise 3.2s ease-in-out 1s infinite; }
.fare-token.tok-3 { right: 22%; bottom: 34%; animation: tokenRise 3.2s ease-in-out 2s infinite; }
.hud-bar { position: absolute; z-index: 4; left: 50%; bottom: 22px; width: 72%; max-width: 200px; height: 10px; overflow: hidden; border-radius: 999px; background: rgba(11,55,108,.12); transform: translateX(-50%); box-shadow: inset 0 1px 3px rgba(4,17,33,.08); }
.hud-bar-fill { position: absolute; inset: 0; width: 28%; border-radius: 999px; background: linear-gradient(90deg, #38c0ff, var(--vg)); box-shadow: 0 0 14px rgba(56,176,0,.4); animation: barFill 3.4s cubic-bezier(.5,0,.2,1) infinite; }
.hud-flow { position: absolute; z-index: 1; left: 18%; right: 18%; top: 58%; height: 2px; background: linear-gradient(90deg, transparent, rgba(22,169,255,.5) 20%, rgba(56,176,0,.6) 80%, transparent); animation: flowPulse 2.8s ease-in-out infinite; }

/* --- Contact --- */
.signal-ring { position: absolute; z-index: 1; left: 50%; top: 50%; width: 84px; height: 84px; border: 2px solid rgba(22,169,255,.55); border-radius: 50%; transform: translate(-50%,-50%); opacity: 0; }
.signal-ring.ring-1 { animation: signalPulse 2.6s ease-out infinite; }
.signal-ring.ring-2 { animation: signalPulse 2.6s ease-out .85s infinite; }
.signal-ring.ring-3 { animation: signalPulse 2.6s ease-out 1.7s infinite; }
.flow-node { position: absolute; z-index: 3; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #4cc8ff, #0a5bd0); box-shadow: 0 10px 22px rgba(10,90,208,.35); font-size: .95rem; animation: nodePulse 3s ease-in-out infinite; }
.flow-node.fn-1 { left: 16%; top: 42%; }
.flow-node.fn-2 { left: calc(50% - 18px); top: 28%; animation-delay: .4s; }
.flow-node.fn-3 { right: 16%; top: 42%; animation-delay: .8s; }
.flow-line { position: absolute; z-index: 2; height: 2px; background: linear-gradient(90deg, rgba(22,169,255,.4), rgba(56,176,0,.7)); border-radius: 2px; animation: lineGlow 2.5s ease-in-out infinite; }
.flow-line.fl-1 { left: 22%; top: 48%; width: 28%; transform: rotate(-12deg); }
.flow-line.fl-2 { right: 22%; top: 48%; width: 28%; transform: rotate(12deg); animation-delay: .5s; }
.flow-packet { position: absolute; z-index: 3; left: 22%; top: 47%; width: 10px; height: 10px; border-radius: 50%; background: var(--vg); box-shadow: 0 0 12px rgba(56,176,0,.8); animation: packetTravel 2.8s ease-in-out infinite; }

/* --- About --- */
.route-track { position: absolute; z-index: 1; left: 10%; right: 10%; top: 58%; height: 0; border-top: 3px dashed rgba(22,169,255,.45); animation: dashMove 1.2s linear infinite; }
.net-dot { position: absolute; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: var(--vg); box-shadow: 0 0 0 4px rgba(56,176,0,.2), 0 0 14px rgba(56,176,0,.5); animation: dotBlink 2.4s ease-in-out infinite; }
.net-dot.nd-1 { left: 12%; top: 54%; }
.net-dot.nd-2 { left: 50%; top: 50%; transform: translateX(-50%); animation-delay: .6s; }
.net-dot.nd-3 { right: 12%; top: 54%; animation-delay: 1.2s; }
.hud-orbit { position: absolute; z-index: 3; left: 50%; top: 50%; width: 168px; height: 168px; transform: translate(-50%,-50%); animation: orbitSpin 8s linear infinite; }
.orbit-pin { position: absolute; left: 50%; top: -14px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--vg), #2f9e00); box-shadow: 0 8px 18px rgba(47,158,0,.5); font-size: .9rem; transform: translateX(-50%); animation: orbitCounter 8s linear infinite; }

/* --- Safety (filled shield + scan + verify layers) --- */
.hero-scene--safety .hud-ring.ring-radar::after { background: conic-gradient(from 0deg, rgba(56,176,0,.65), rgba(56,176,0,.1) 65deg, transparent 110deg); -webkit-mask: none; mask: none; animation: orbitRoll 3s linear infinite; }
.shield-plate {
    position: absolute; z-index: 4; left: 50%; top: 50%; width: 128px; height: 128px;
    display: grid; place-items: center; border-radius: 28px;
    background: linear-gradient(145deg, #5fd000, #2f9e00 55%, #1a7a00);
    box-shadow: 0 24px 48px rgba(47,158,0,.42), 0 0 0 8px rgba(56,176,0,.14), inset 0 1px 0 rgba(255,255,255,.35);
    transform: translate(-50%, -50%); animation: shieldPlatePop 4.5s ease-in-out infinite;
}
.safety-shield { position: relative; display: grid; place-items: center; color: #fff; font-size: 4.2rem; filter: drop-shadow(0 8px 16px rgba(4,17,33,.25)); }
.safety-shield .shield-tick {
    position: absolute; right: -6px; bottom: -4px; color: #fff; font-size: 1rem;
    background: #0a5bd0; width: 32px; height: 32px; border-radius: 50%;
    display: grid; place-items: center; box-shadow: 0 8px 20px rgba(10,90,208,.45);
    animation: tickReveal 3s ease-in-out infinite;
}
.safety-scan { position: absolute; z-index: 3; left: 50%; top: 50%; width: 188px; height: 188px; border-radius: 50%; background: conic-gradient(from 0deg, rgba(56,176,0,.5), transparent 55deg); transform: translate(-50%, -50%); animation: orbitRoll 3.2s linear infinite; }
.safety-beam {
    position: absolute; z-index: 3; left: 50%; top: 50%; width: 200px; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(56,176,0,.85), transparent);
    transform-origin: left center; animation: safetyBeam 4s ease-in-out infinite; pointer-events: none;
}
.shield-orbit {
    position: absolute; z-index: 5; left: 50%; top: 50%; width: 200px; height: 200px;
    transform: translate(-50%, -50%); animation: orbitSpin 10s linear infinite; pointer-events: none;
}
.shield-orbit.so-2 { animation-duration: 12s; animation-direction: reverse; }
.shield-orbit.so-3 { animation-duration: 14s; }
.shield-orbit > i {
    position: absolute; left: 50%; top: -2px; display: grid; width: 32px; height: 32px; place-items: center;
    border-radius: 50%; color: #fff; background: linear-gradient(135deg, #4cc8ff, #0a5bd0);
    box-shadow: 0 10px 22px rgba(10,90,208,.4); font-size: .85rem; transform: translateX(-50%);
    animation: orbitCounter 10s linear infinite;
}
.shield-orbit.so-2 > i { animation-duration: 12s; animation-direction: reverse; }
.shield-orbit.so-3 > i { animation-duration: 14s; }
.verify-layer { position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; border-radius: 10px; background: #fff; border: 1px solid rgba(56,176,0,.3); box-shadow: 0 12px 26px rgba(4,17,33,.16); color: #0f2438; font-size: .68rem; font-weight: 800; animation: layerReveal 4s ease-in-out infinite; }
.verify-layer i { color: var(--vg); font-size: .9rem; }
.verify-layer.vl-1 { left: 10%; top: 22%; animation-delay: 0s; }
.verify-layer.vl-2 { right: 10%; top: 20%; animation-delay: .8s; }
.verify-layer.vl-3 { left: 50%; bottom: 18%; margin-left: -32px; animation-delay: 1.6s; }
.verify-link { position: absolute; z-index: 2; height: 2px; background: linear-gradient(90deg, rgba(56,176,0,.2), rgba(56,176,0,.75), rgba(56,176,0,.2)); border-radius: 2px; animation: linkGlow 2.6s ease-in-out infinite; }
.verify-link.vk-1 { left: 22%; top: 42%; width: 26%; transform: rotate(-18deg); }
.verify-link.vk-2 { right: 22%; top: 40%; width: 26%; transform: rotate(18deg); animation-delay: .5s; }
.verify-link.vk-3 { left: 34%; bottom: 32%; width: 32%; animation-delay: 1s; }

/* --- Privacy --- */
.priv-data { position: absolute; z-index: 2; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--az); box-shadow: 0 0 12px rgba(22,169,255,.85); opacity: 0; }
.priv-data.pd-1 { --dx: -72px; --dy: -40px; animation: dataIn 2.8s ease-in-out infinite; }
.priv-data.pd-2 { --dx: 74px; --dy: -28px; animation: dataIn 2.8s ease-in-out .7s infinite; }
.priv-data.pd-3 { --dx: -50px; --dy: 56px; animation: dataIn 2.8s ease-in-out 1.4s infinite; }
.priv-data.pd-4 { --dx: 52px; --dy: 48px; animation: dataIn 2.8s ease-in-out 2.1s infinite; }
.priv-card { position: absolute; z-index: 3; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: var(--az); background: #fff; border: 1px solid rgba(22,169,255,.2); box-shadow: 0 10px 22px rgba(4,17,33,.12); font-size: 1rem; animation: privCardFloat 3.5s ease-in-out infinite; }
.priv-card.pc-1 { left: 18%; top: 32%; }
.priv-card.pc-2 { right: 18%; top: 30%; animation-delay: .9s; }

/* --- Terms --- */
.t-doc { position: absolute; z-index: 4; left: 50%; top: 50%; width: 168px; height: 132px; border-radius: 16px; background: #fff; box-shadow: 0 22px 44px rgba(4,17,33,.22), inset 0 0 0 1px rgba(11,55,108,.08); transform: translate(-50%,-50%); animation: hudCorePop 5s ease-in-out infinite; }
.t-row { position: absolute; left: 44px; height: 8px; border-radius: 999px; background: rgba(11,55,108,.14); animation: rowGrow 3s ease-in-out infinite; }
.t-row.r1 { top: 26px; width: 0; animation-delay: 0s; }
.t-row.r2 { top: 54px; width: 0; animation-delay: .4s; }
.t-row.r3 { top: 82px; width: 0; animation-delay: .8s; }
.t-row.r4 { top: 110px; width: 0; animation-delay: 1.2s; }
.t-tick { position: absolute; left: 18px; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #5fd000, #2f9e00); font-size: .75rem; animation: tickReveal 3.5s ease-in-out infinite; }
.t-tick.dt-1 { top: 22px; animation-delay: .3s; }
.t-tick.dt-2 { top: 50px; animation-delay: .7s; }
.t-tick.dt-3 { top: 78px; animation-delay: 1.1s; }
.t-tick.dt-4 { top: 106px; animation-delay: 1.5s; }
.t-seal { position: absolute; z-index: 5; right: 22px; bottom: 20px; display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--vg); background: #fff; box-shadow: 0 12px 28px rgba(56,176,0,.25); font-size: 1.45rem; animation: sealPulse 2.8s ease-in-out infinite; }

/* --- Services (grid + route + elegant tyre) --- */
.svc-grid { position: absolute; z-index: 4; left: 50%; top: 50%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; transform: translate(-50%, -50%); }
.svc-cell { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--az); background: #fff; box-shadow: 0 10px 22px rgba(4,17,33,.12), inset 0 0 0 1px rgba(11,55,108,.08); font-size: 1.1rem; animation: svcPulse 4s ease-in-out infinite; }
.svc-cell:nth-child(1) { animation-delay: 0s; }
.svc-cell:nth-child(2) { animation-delay: .2s; }
.svc-cell:nth-child(3) { animation-delay: .4s; }
.svc-cell:nth-child(4) { animation-delay: .6s; }
.svc-cell:nth-child(6) { animation-delay: .8s; }
.svc-cell:nth-child(7) { animation-delay: 1s; }
.svc-cell:nth-child(8) { animation-delay: 1.2s; }
.svc-cell:nth-child(9) { animation-delay: 1.4s; }
.svc-cell.svc-hub { color: #fff; background: linear-gradient(135deg, #4cc8ff, #0a5bd0); box-shadow: 0 14px 28px rgba(10,90,208,.45); font-size: 1.2rem; animation: hudCorePop 4s ease-in-out infinite; }
.svc-route { position: absolute; z-index: 1; left: 8%; right: 8%; bottom: 18%; height: 50px; border-bottom: 4px solid rgba(22,169,255,.35); border-radius: 0 0 60% 40%; transform: skewX(-8deg); }
.svc-route::before { position: absolute; width: 60%; height: 4px; left: 12%; top: 22px; background: repeating-linear-gradient(90deg, rgba(56,176,0,.7) 0 16px, transparent 16px 32px); content: ""; animation: dashMove 1s linear infinite; }
.svc-tyre { position: absolute; z-index: 3; right: 14%; bottom: 22%; width: 48px; height: 48px; border: 9px solid #0f2438; border-radius: 50%; background: radial-gradient(circle, #e8eef5 0 18%, #3a4f66 20% 38%, #0f2438 40%); box-shadow: 0 12px 24px rgba(4,17,33,.3); animation: tyreRoll 2.4s linear infinite; }
.svc-tyre::before { position: absolute; inset: 10px; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 20deg, rgba(56,176,0,.8) 20deg 30deg, transparent 30deg 80deg, rgba(22,169,255,.7) 80deg 90deg, transparent 90deg); content: ""; animation: tyreRoll 2.4s linear infinite; }

/* --- Booking --- */
.book-track { position: absolute; z-index: 2; left: 14%; right: 14%; bottom: 24%; height: 3px; border-radius: 999px; background: rgba(11,55,108,.12); }
.book-track::after { position: absolute; inset: 0; border-radius: 999px; background: linear-gradient(90deg, rgba(22,169,255,.3), rgba(56,176,0,.8)); content: ""; animation: barFill 3.6s cubic-bezier(.5,0,.2,1) infinite; transform-origin: left; }
.book-step {
    position: absolute; z-index: 5; display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 6px 8px; border-radius: 12px; background: #fff; border: 1px solid rgba(22,169,255,.2);
    box-shadow: 0 12px 24px rgba(4,17,33,.14); color: #0f2438; font-size: .58rem; font-weight: 800;
    animation: bookStepPop 4s ease-in-out infinite;
}
.book-step i { color: var(--az); font-size: 1rem; }
.book-step.bs-1 { left: 12%; bottom: 18%; animation-delay: 0s; }
.book-step.bs-2 { left: 50%; bottom: 14%; margin-left: -24px; animation-delay: .6s; }
.book-step.bs-3 { right: 12%; bottom: 18%; animation-delay: 1.2s; }
.book-car {
    position: absolute; z-index: 6; left: 14%; bottom: 22%; display: grid; width: 34px; height: 34px; place-items: center;
    border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--vg), #2f9e00);
    box-shadow: 0 10px 22px rgba(47,158,0,.45); font-size: 1rem;
    animation: bookCarMove 3.6s cubic-bezier(.45,0,.2,1) infinite;
}

/* --- Areas / coverage (page hero animation only — do not reuse .area-grid) --- */
.hero-scene--areas .hud-area-grid {
    position: absolute; z-index: 1; inset: 18% 12% 28%;
    border: 1px dashed rgba(22,169,255,.28); border-radius: 14px;
    background: linear-gradient(rgba(22,169,255,.04) 1px, transparent 1px) 0 0 / 18px 18px,
                linear-gradient(90deg, rgba(22,169,255,.04) 1px, transparent 1px) 0 0 / 18px 18px;
}
.hero-scene--areas .hud-area-pin {
    position: absolute; z-index: 5; display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 4px 6px; border-radius: 10px; background: #fff; border: 1px solid rgba(56,176,0,.25);
    box-shadow: 0 10px 22px rgba(4,17,33,.14); color: #0f2438; font-size: .52rem; font-weight: 800;
    animation: areaPinPop 3.2s ease-in-out infinite;
}
.hero-scene--areas .hud-area-pin i { color: var(--vg); font-size: .9rem; }
.hero-scene--areas .hud-area-pin.ap-1 { left: 16%; top: 28%; animation-delay: 0s; }
.hero-scene--areas .hud-area-pin.ap-2 { left: 42%; top: 22%; animation-delay: .5s; }
.hero-scene--areas .hud-area-pin.ap-3 { right: 18%; top: 26%; animation-delay: 1s; }
.hero-scene--areas .hud-area-pin.ap-4 { left: 24%; bottom: 22%; animation-delay: 1.5s; }
.hero-scene--areas .hud-area-pin.ap-5 { right: 22%; bottom: 20%; animation-delay: 2s; }
.hero-scene--areas .hud-area-wave {
    position: absolute; z-index: 2; left: 50%; top: 50%; width: 80px; height: 80px; border: 2px solid rgba(56,176,0,.45);
    border-radius: 50%; transform: translate(-50%, -50%); animation: signalPulse 2.8s ease-out infinite;
}

/* --- Service detail --- */
.detail-orbit {
    position: absolute; z-index: 3; left: 50%; top: 50%; width: 180px; height: 180px;
    transform: translate(-50%, -50%); animation: orbitSpin 9s linear infinite; pointer-events: none;
}
.detail-orbit.do-2 { animation-duration: 11s; animation-direction: reverse; }
.detail-orbit.do-3 { animation-duration: 13s; }
.detail-orbit > i {
    position: absolute; left: 50%; top: 0; display: grid; width: 30px; height: 30px; place-items: center;
    border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--vg), #2f9e00);
    box-shadow: 0 8px 18px rgba(47,158,0,.45); font-size: .8rem; transform: translateX(-50%);
    animation: orbitCounter 9s linear infinite;
}
.detail-orbit.do-2 > i { animation-duration: 11s; animation-direction: reverse; }
.detail-orbit.do-3 > i { animation-duration: 13s; }

@keyframes tokenRise { 0% { transform: translateY(18px) scale(.5); opacity: 0; } 25% { opacity: 1; } 70% { opacity: 1; } 100% { transform: translateY(-52px) scale(1.1); opacity: 0; } }
@keyframes barFill { 0% { width: 20%; } 55% { width: 94%; } 100% { width: 20%; } }
@keyframes flowPulse { 0%, 100% { opacity: .4; transform: scaleX(.9); } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes signalPulse { 0% { transform: translate(-50%,-50%) scale(.65); opacity: .9; } 100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; } }
@keyframes nodePulse { 0%, 100% { transform: scale(1); box-shadow: 0 10px 22px rgba(10,90,208,.35); } 50% { transform: scale(1.12); box-shadow: 0 14px 28px rgba(56,176,0,.35); } }
@keyframes lineGlow { 0%, 100% { opacity: .5; } 50% { opacity: 1; box-shadow: 0 0 8px rgba(56,176,0,.5); } }
@keyframes packetTravel { 0% { left: 22%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 72%; opacity: 0; } }
@keyframes dashMove { from { background-position: 0 0; } to { background-position: 32px 0; } }
@keyframes dotBlink { 0%, 100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbitCounter { from { transform: translateX(-50%) rotate(0); } to { transform: translateX(-50%) rotate(-360deg); } }
@keyframes shieldPulse { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%, calc(-50% - 5px)) scale(1.04); } }
@keyframes shieldPlatePop { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, calc(-50% - 8px)) scale(1.05); } }
@keyframes safetyBeam { 0% { transform: translate(-50%, -50%) rotate(0deg); opacity: .3; } 50% { opacity: 1; } 100% { transform: translate(-50%, -50%) rotate(360deg); opacity: .3; } }
@keyframes linkGlow { 0%, 100% { opacity: .35; } 50% { opacity: 1; box-shadow: 0 0 10px rgba(56,176,0,.5); } }
@keyframes bookStepPop { 0%, 100% { transform: translateY(0) scale(1); } 15% { transform: translateY(-6px) scale(1.08); } }
@keyframes bookCarMove { 0% { left: 14%; opacity: .6; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 78%; opacity: .6; } }
@keyframes areaPinPop { 0%, 70%, 100% { transform: scale(1); opacity: .85; } 10% { transform: scale(1.15); opacity: 1; box-shadow: 0 14px 28px rgba(56,176,0,.28); } }
@keyframes layerReveal { 0%, 10% { transform: translateY(8px) scale(.85); opacity: 0; } 25%, 80% { transform: translateY(0) scale(1); opacity: 1; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes dataIn { 0% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1); opacity: 0; } 20% { opacity: 1; } 100% { transform: translate(-50%, -50%) scale(.3); opacity: 0; } }
@keyframes privCardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes rowGrow { 0%, 15% { width: 0; } 40%, 100% { width: 88px; } }
@keyframes sealPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); box-shadow: 0 14px 32px rgba(56,176,0,.35); } }
@keyframes svcPulse { 0%, 65%, 100% { color: var(--az); transform: translateY(0) scale(1); } 10% { color: var(--vg); transform: translateY(-5px) scale(1.08); box-shadow: 0 14px 26px rgba(56,176,0,.3); } }
@keyframes tyreRoll { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rate-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rate-card::after {
    position: absolute;
    width: 150px;
    height: 150px;
    right: -95px;
    bottom: -95px;
    border-radius: 50%;
    background: rgba(67,201,19,.1);
    content: "";
    transition: transform .25s ease;
}
.rate-card:hover { border-color: #98e976; box-shadow: var(--shadow); transform: translateY(-7px); }
.rate-card:hover::after { transform: scale(1.8); }
.rate-icon { display: grid; width: 50px; height: 50px; margin-bottom: 21px; place-items: center; border-radius: 15px; color: var(--blue); background: linear-gradient(135deg, #edf7ff, #efffe9); font-size: 1.28rem; }
.rate-card h2 { margin-bottom: 8px; color: var(--blue-dark); font-size: 1.55rem; }
.rate-card strong { display: block; margin-bottom: 12px; color: var(--charcoal); }
.rate-card p { margin: 0; font-size: .86rem; line-height: 1.6; }
.pricing-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid rgba(67,201,19,.24);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f5fff0, #fff);
    box-shadow: var(--shadow-sm);
}
.pricing-note > i { color: var(--brand-green-dark); font-size: 1.6rem; }
.pricing-note h2 { margin-bottom: 5px; font-size: 1.35rem; }
.pricing-note p { margin: 0; color: #475569; }
.distance-rate-panel {
    padding: 34px;
    border: 1px solid rgba(0,110,232,.14);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
}
.distance-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
.distance-rate-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.distance-rate-table th, .distance-rate-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.distance-rate-table th { color: var(--charcoal); background: linear-gradient(90deg, #f3faff, #f5fff0); font-size: .78rem; text-transform: uppercase; }
.distance-rate-table td:nth-child(2) { color: var(--blue-dark); font-weight: 800; }
.distance-rate-table tr:last-child td { border-bottom: 0; }
.distance-rate-table a { color: var(--blue); font-weight: 800; }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.safety-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.safety-card > span { position: absolute; right: 20px; top: 15px; color: #dbeafe; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; }
.safety-card > i { color: var(--blue); font-size: 2rem; }
.safety-card h2 { margin: 25px 0 10px; font-size: 1.2rem; }
.safety-card p { margin: 0; font-size: .86rem; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .65fr; align-items: start; gap: 35px; }
.contact-grid-dual { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-options-wide { grid-column: 1 / -1; }
.contact-form-primary { border-color: rgba(0, 110, 232, .28); box-shadow: 0 18px 40px rgba(0, 110, 232, .08); }
.callback-form-card .btn-soft { width: 100%; }
.quote-form-card, .corporate-form-card { max-width: 920px; margin-inline: auto; }
.checkbox-line { display: flex; align-items: center; gap: 10px; min-height: 46px; font-weight: 700; }
.contact-form-card { padding: 38px 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.contact-form-card h2 { margin-bottom: 18px; font-size: 1.75rem; }
.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card .phone-input-group,
.contact-form-card .indian-name-input { background-color: #fff; }
.contact-grid-dual { align-items: start; gap: 28px; }
.form-control, .form-select { min-height: 51px; padding: 11px 14px; border-color: #cbd5e1; border-radius: 11px; color: var(--charcoal); }
textarea.form-control { padding-top: 13px; }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .1); }
.field-validation-error, .client-error, .validation-summary-errors { display: block; margin-top: 6px; color: #dc2626; font-size: .76rem; font-weight: 700; }
.validation-summary:empty { display: none; }
.validation-summary ul { margin: 0 0 20px; padding: 14px 14px 14px 34px; border-radius: 10px; color: #991b1b; background: #fef2f2; }
.contact-options { display: grid; gap: 14px; }
.contact-options > a, .contact-options > div { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-options > * > i { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 12px; color: var(--blue); background: #eff6ff; }
.contact-options span { min-width: 0; }
.contact-options small { display: block; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.contact-options strong { overflow-wrap: anywhere; font-size: .88rem; }
.contact-options p { margin: 5px 0 0; font-size: .78rem; }
.contact-options .launch-warning { border-color: #fde68a; background: #fffbeb; }
.contact-options .launch-warning i { color: #b45309; background: #fef3c7; }
.not-found, .success-page { display: grid; min-height: 75vh; place-items: center; padding: 80px 0; background: radial-gradient(circle at center, #eef6ff, #fff 55%); }
.not-found-code { color: transparent; background: linear-gradient(120deg, var(--blue), var(--cyan)); -webkit-background-clip: text; background-clip: text; font-family: var(--font-heading); font-size: clamp(6rem, 20vw, 13rem); font-weight: 800; line-height: .85; }
.not-found h1 { margin-top: 12px; font-size: 2.6rem; }
.error-icon { display: grid; width: 86px; height: 86px; margin: 0 auto 28px; place-items: center; border-radius: 25px; color: #b45309; background: #fffbeb; font-size: 2.3rem; }
.request-id { display: block; margin-top: 28px; color: var(--muted); }

/* Booking */
.booking-hero { padding: 80px 0 160px; }
.booking-hero h1 { font-size: 3.8rem; }
.booking-section { position: relative; margin-top: -100px; padding-bottom: 110px; }
.booking-shell { position: relative; display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: 24px; }
.booking-sidebar, .booking-form-card { border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.booking-sidebar { position: sticky; top: 100px; padding: 27px; }
.booking-progress-copy { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; color: var(--muted); font-size: .75rem; }
.booking-progress-copy strong { color: var(--charcoal); }
.booking-sidebar .progress { height: 6px; margin-bottom: 28px; background: #e2e8f0; }
.booking-sidebar .progress-bar { width: 25%; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: width .3s ease; }
.booking-sidebar .progress-step-1 { width: 14.285%; }
.booking-sidebar .progress-step-2 { width: 28.57%; }
.booking-sidebar .progress-step-3 { width: 42.855%; }
.booking-sidebar .progress-step-4 { width: 57.14%; }
.booking-sidebar .progress-step-5 { width: 71.425%; }
.booking-sidebar .progress-step-6 { width: 85.71%; }
.booking-sidebar .progress-step-7 { width: 100%; }
.booking-steps { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.booking-steps li { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; color: #94a3b8; }
.booking-steps li > span { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: #f8fafc; }
.booking-steps small { display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase; }
.booking-steps strong { display: block; font-size: .8rem; }
.booking-steps li.active { color: var(--blue); background: #eff6ff; }
.booking-steps li.active > span { color: #fff; border-color: var(--blue); background: var(--blue); }
.booking-steps li.complete { color: #15803d; }
.booking-steps li.complete > span { color: #fff; border-color: var(--green); background: var(--green); }
.booking-help { display: flex; gap: 12px; margin-top: 25px; padding: 16px; border-radius: 13px; background: var(--navy); }
.booking-help i { color: var(--cyan); }
.booking-help strong, .booking-help span { display: block; color: #fff; font-size: .7rem; line-height: 1.45; }
.booking-help span { margin-top: 4px; color: #9fb1c8; font-weight: 500; }
.booking-form-card { min-height: 520px; padding: 32px 34px; }
.form-step { display: none; }
.form-step.active { display: block; animation: formFade .3s ease both; }
.form-step.active + .form-step.active { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.form-step-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.form-step-heading.compact-heading { margin-bottom: 16px; }
.form-step-heading.compact-heading .form-step-icon { width: 38px; height: 38px; flex-basis: 38px; border-radius: 11px; font-size: .95rem; }
.form-step-heading.compact-heading h2 { font-size: 1.2rem; margin: 2px 0 0; }
.form-step-icon { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 12px; color: #fff; background: var(--brand-gradient); font-size: 1.05rem; }
.form-step-heading small { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.form-step-heading h2 { margin: 4px 0 5px; font-size: 1.45rem; }
.form-step-heading p { margin: 0; font-size: .84rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-choices { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trip-choices { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.choice-card { position: relative; display: flex !important; min-height: 92px; flex-direction: column; gap: 8px; margin: 0 !important; padding: 12px; cursor: pointer; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.choice-card:hover { border-color: #98e976; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-card:has(input:checked) { border-color: var(--blue); background: linear-gradient(135deg, #f5f9ff, #f3ffef); box-shadow: 0 0 0 2px rgba(0, 110, 232, .1); }
.choice-card:has(input:focus-visible) { outline: 3px solid rgba(56, 189, 248, .75); outline-offset: 2px; }
.choice-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; color: var(--blue); background: #eff6ff; font-size: .88rem; }
.choice-card strong { display: block; color: var(--charcoal); font-size: .72rem; line-height: 1.3; }
.choice-card small { display: block; margin-top: 3px; color: var(--muted); font-size: .62rem; font-weight: 500; line-height: 1.35; }
.choice-check { position: absolute; right: 8px; top: 8px; color: var(--blue); opacity: 0; font-size: .85rem; }
.choice-card:has(input:checked) .choice-check { opacity: 1; }
.compact-choices .choice-card { min-height: 64px; }
.trip-choices .choice-card { min-height: 58px; flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; }
.trip-choices .choice-card > span:last-of-type { flex: 1; min-width: 0; }
.trip-choices .choice-card strong { font-size: .74rem; }
.preference-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.preference-choices .choice-card { min-height: 56px; flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; }
.preference-choices .choice-card > span:last-of-type { flex: 1; min-width: 0; }
.preference-choices .choice-card strong { font-size: .72rem; line-height: 1.25; }
.booking-form-card .form-control, .booking-form-card .form-select { min-height: 48px; background-color: #fbfdff; }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: .7rem; }
.conditional-field[hidden] { display: none !important; }
.form-navigation { display: flex; align-items: center; margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); }
.form-navigation [hidden] { display: none !important; }
.booking-summary { display: grid; grid-template-columns: repeat(2, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.booking-summary > div { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-summary > div:nth-child(even) { border-right: 0; }
.booking-summary small { display: block; margin-bottom: 3px; color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.booking-summary strong { font-size: .85rem; }
.consent-box { display: flex; align-items: flex-start; gap: 11px; margin-top: 25px; padding: 18px; border-radius: 13px; background: #f8fafc; }
.consent-box input { flex: 0 0 auto; margin-top: 5px; }
.consent-box label { margin: 0; color: #475569; font-size: .8rem; font-weight: 600; }
.submit-notice { display: flex; gap: 11px; margin-top: 15px; color: #475569; }
.submit-notice i { color: var(--blue); }
.submit-notice p { margin: 0; font-size: .75rem; }
.success-card { max-width: 780px; padding: 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); text-align: center; }
.success-icon { display: grid; width: 80px; height: 80px; margin: 0 auto 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 15px 35px rgba(34,197,94,.25); font-size: 2.2rem; }
.success-card h1 { font-size: 2.7rem; }
.success-card > p { max-width: 600px; margin: 0 auto 30px; }
.reference-box { max-width: 430px; margin: 0 auto 30px; padding: 18px; border: 1px dashed #93c5fd; border-radius: 14px; background: #eff6ff; }
.reference-box small, .reference-box strong, .reference-box span { display: block; }
.reference-box small { color: var(--muted); font-size: .68rem; text-transform: uppercase; }
.reference-box strong { color: var(--blue); font-family: var(--font-heading); font-size: 1.45rem; }
.reference-box span { color: var(--muted); font-size: .7rem; }
.success-summary { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; text-align: left; }
.success-summary div { padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.success-summary div:nth-child(even) { border-right: 0; }
.success-summary small, .success-summary strong { display: block; }
.success-summary small { color: var(--muted); font-size: .68rem; text-transform: uppercase; }

/* Footer and floating actions */
.site-footer { padding: 80px 0 0; color: #9fb1c8; background: #050d18; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr .7fr; gap: 60px; padding-bottom: 60px; }
.brand-light { color: #fff; }
.brand-light:hover { color: #fff; }
.footer-about p { max-width: 360px; margin: 22px 0; color: #8799af; font-size: .85rem; }
.footer-about .footer-legal { margin-top: -8px; margin-bottom: 0; color: #9fb0c7; font-size: .78rem; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact a, .footer-contact span { color: #8799af; font-size: .78rem; }
.footer-social-section { margin-top: 20px; }
.footer-social-section h2 { margin-bottom: 10px; font-size: .9rem; letter-spacing: .02em; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-socials a { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #fff; font-size: .85rem; }
.footer-grid h2 { margin-bottom: 19px; color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: 0; text-transform: uppercase; }
.footer-grid > div:not(.footer-about) > a { display: block; margin-bottom: 10px; color: #8799af; font-size: .8rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: .74rem; }
.footer-bottom-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px; }
.footer-action { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #fff; background: rgba(255,255,255,.07); font-weight: 800; }
.footer-action.primary { color: #fff; border: 0; background: var(--green-gradient); box-shadow: 0 10px 24px rgba(67,209,17,.22); }
.footer-action:hover { color: #fff; transform: translateY(-2px); }
.footer-action.primary:hover, .footer-action.primary:focus { color: #fff; }
.footer-action.primary i { color: inherit; }
.floating-whatsapp-wrap,
.floating-contact-wrap {
    position: fixed;
    z-index: 1090;
    inset: 0;
    max-width: none;
    pointer-events: none;
}
.floating-contact {
    position: fixed;
    bottom: 24px;
    display: grid;
    width: 57px;
    height: 57px;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #22c55e;
    box-shadow: 0 13px 30px rgba(15,23,42,.25);
    font-size: 1.45rem;
    transform-origin: center center;
    pointer-events: auto;
}
.floating-call {
    left: 24px;
    background: #006ee8;
}
.floating-whatsapp {
    right: 24px;
    background: #22c55e;
}
.floating-contact::before,
.floating-contact::after {
    position: absolute;
    border: 2px solid rgba(34, 197, 94, .45);
    border-radius: 50%;
    content: "";
    inset: -10px;
    pointer-events: none;
}
.floating-call::before { border-color: rgba(0, 110, 232, .38); }
.floating-call::after { border-color: rgba(0, 110, 232, .18); }
.floating-contact::after { inset: -18px; border-color: rgba(34, 197, 94, .22); }
.floating-call::after { border-color: rgba(0, 110, 232, .18); }
.floating-contact:hover { color: #fff; transform: translateY(-3px) scale(1.03); }
.floating-contact i { position: relative; z-index: 1; }
.booking-session-alert { grid-column: 1 / -1; margin-bottom: 18px; }
.turnstile-widget { margin: 18px 0 10px; min-height: 65px; }
.mobile-cta-bar { display: none !important; }

/* DOW brand polish */
.site-header { border-bottom-color: rgba(0, 110, 232, .12); }
.site-header.scrolled { box-shadow: 0 14px 34px rgba(4, 17, 33, .12); }
.hero-orbit { border-radius: 999px; border-color: rgba(217, 226, 236, .18); box-shadow: inset 0 0 0 12px rgba(0, 110, 232, .04); }
.hero-orbit-one { border-style: dashed; }
.hero-orbit-two { border-color: rgba(67, 201, 19, .22); }
.quick-booking { position: relative; overflow: hidden; }
.quick-booking::before, .image-cta::after, .safety-band::before, .final-cta::before, .compact-cta::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 28%, rgba(255,255,255,.16) 32%, transparent 37% 100%);
    background-size: 240% 100%;
    content: "";
    opacity: .55;
    pointer-events: none;
}
.quick-booking > *, .safety-band > *, .final-cta > *, .compact-cta > * { position: relative; }
.route-line {
    position: absolute;
    z-index: 1;
    width: min(460px, 86%);
    height: 150px;
    right: 4%;
    bottom: 6%;
    border-bottom: 6px solid rgba(22,169,255,.75);
    border-radius: 0 0 68% 18%;
    transform: skewX(-24deg);
}
.route-line::before {
    position: absolute;
    width: 58%;
    height: 5px;
    left: 7%;
    top: 52%;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.9) 0 22px, transparent 22px 42px);
    content: "";
    transform: rotate(-12deg);
}
.route-line::after {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 4px;
    bottom: -11px;
    border-radius: 50% 50% 50% 0;
    background: var(--brand-green);
    box-shadow: 0 0 22px rgba(67,201,19,.65);
    content: "";
    transform: rotate(-45deg);
}
.service-card, .popular-card, .area-card, .need-card, .content-card, .choice-card, .contact-options > a, .contact-options > div {
    will-change: transform;
}
.service-card::before, .popular-card::before, .need-card::before, .content-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 36%, rgba(22,169,255,.08) 44%, rgba(67,201,19,.08) 51%, transparent 60%);
    background-size: 260% 100%;
    content: "";
    opacity: 0;
    pointer-events: none;
}
.popular-card, .need-card, .content-card { position: relative; overflow: hidden; }
.service-card:hover::before, .popular-card:hover::before, .need-card:hover::before, .content-card:hover::before { opacity: 1; }
.service-card > *, .popular-card > *, .need-card > *, .content-card > * { position: relative; z-index: 1; }
.trust-strip { background: linear-gradient(90deg, #fff, #f3faff 50%, #f5fff1); }
.trust-grid i, .popular-card > i:last-child, .area-card > i:last-child, .related-card > i:last-child { transition: transform .25s ease, color .25s ease; }
.popular-card > i:last-child, .area-card > i:last-child, .related-card > i:last-child { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; transition: transform .25s ease, color .25s ease, background .25s ease; }
.popular-card:hover > i:last-child, .area-card:hover > i:last-child, .related-card:hover > i:last-child {
    color: var(--card-accent);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
    transform: translate(2px, -2px) scale(1.1);
    padding: 8px;
}
.verification-grid span, .step-card { transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.verification-grid span:hover, .step-card:hover { border-color: rgba(67,201,19,.28); background: rgba(255,255,255,.1); transform: translateY(-5px); }
.final-cta, .compact-cta { position: relative; overflow: hidden; background: linear-gradient(120deg, #071f12, #116215); }
.mobile-cta-bar a.active { color: #fff; background: var(--brand-gradient); }

/* Soft resting tint comes from each card's own accent (see 6n accent cycle below) */
.service-card::before, .rate-card::before, .content-card::before, .need-card::before, .popular-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.75) 44%, transparent 54%);
    background-size: 240% 100%;
    content: "";
    opacity: 0;
    pointer-events: none;
}
.service-card:hover::before, .rate-card:hover::before, .content-card:hover::before, .need-card:hover::before, .popular-card:hover::before { opacity: .8; }
.service-card::after, .rate-card::after, .content-card::after, .need-card::after, .popular-card::after {
    box-shadow: 0 0 0 18px rgba(255,255,255,.34);
}

/* Premium card treatment */
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card) {
    --card-accent: #0078ff;
    --card-accent-soft: #eaf5ff;
    --card-border: #bfe0ff;
    --card-glow: rgba(0, 120, 255, .18);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: var(--card-border);
    background: linear-gradient(150deg, var(--card-accent-soft) 0%, #fff 34%, #fff 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card)::after {
    position: absolute;
    z-index: 0;
    width: 168px;
    height: 168px;
    right: -82px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    box-shadow: inset 0 0 0 22px rgba(255, 255, 255, .42), 0 0 0 1px rgba(255,255,255,.7);
    content: "";
    pointer-events: none;
    transition: transform .34s ease, opacity .34s ease;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card)::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, transparent 0 32%, rgba(255,255,255,.72) 42%, transparent 55%);
    background-size: 240% 100%;
    content: "";
    opacity: 0;
    pointer-events: none;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card) > * {
    position: relative;
    z-index: 1;
}

:is(.service-icon, .rate-icon, .choice-icon),
:is(.content-card, .related-card, .area-card, .safety-card) > i:first-child,
.popular-card > i:first-child,
.need-card > i {
    color: var(--card-accent);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover {
    border-color: var(--card-accent);
    background: var(--card-accent);
    background-image: linear-gradient(150deg, rgba(255, 255, 255, .16) 0%, rgba(0, 0, 0, .12) 100%);
    box-shadow: 0 24px 54px var(--card-glow), 0 16px 38px rgba(15, 23, 42, .08);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(h2, h3, h4, p, span, small, strong, a, .card-label) {
    color: #fff;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover::before {
    opacity: .72;
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover::after {
    opacity: .96;
    transform: scale(1.08);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(.service-icon, .rate-icon, .choice-icon),
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(.content-card, .related-card, .area-card, .safety-card) > i:first-child,
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover .popular-card > i:first-child,
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover .need-card > i {
    color: var(--card-accent);
    background: #fff;
    box-shadow: 0 16px 34px var(--card-glow);
}

/* Keep the glyph itself accent-colored on the white chip (overrides text whitening for spans like .rate-icon) */
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(.service-icon, .rate-icon, .choice-icon) i,
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(.content-card, .related-card, .area-card) > i:first-child,
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover .popular-card > i:first-child {
    color: var(--card-accent);
}

/* Whiten every remaining text node (list items + their glyphs) so nothing stays low-contrast on the filled card */
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):hover :is(li, ul, .icon-list i) {
    color: #fff;
}

/* Safety card: number badge sits first, so give its icon a white chip on hover too */
.safety-card > i { transition: color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease; }
.safety-card:hover > i {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: var(--card-accent);
    background: #fff;
    box-shadow: 0 16px 34px var(--card-glow);
}

/* Trailing arrow inside a card link (e.g. service card "Learn more ->") -- high-contrast white chip + pop */
:is(.service-card, .rate-card, .content-card) a i {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    border-radius: 50%;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
:is(.service-card, .rate-card, .content-card):hover a i {
    color: var(--card-accent);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
    transform: translateX(2px) scale(1.1);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+1) {
    --card-accent: #0078ff;
    --card-accent-soft: #edf7ff;
    --card-border: #baddff;
    --card-glow: rgba(0, 120, 255, .22);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+2) {
    --card-accent: #2fc100;
    --card-accent-soft: #f0ffe8;
    --card-border: #bdf2aa;
    --card-glow: rgba(47, 193, 0, .2);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+3) {
    --card-accent: #ff4f70;
    --card-accent-soft: #fff0f3;
    --card-border: #ffc3cf;
    --card-glow: rgba(255, 79, 112, .2);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+4) {
    --card-accent: #7c3cff;
    --card-accent-soft: #f5f0ff;
    --card-border: #d7c9ff;
    --card-glow: rgba(124, 60, 255, .2);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+5) {
    --card-accent: #f29b00;
    --card-accent-soft: #fff8e5;
    --card-border: #ffe0a3;
    --card-glow: rgba(242, 155, 0, .22);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+6) {
    --card-accent: #00a5b8;
    --card-accent-soft: #e9fbff;
    --card-border: #b9edf5;
    --card-glow: rgba(0, 165, 184, .2);
}

:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+1):hover { transform: translateY(-9px) scale(1.012); }
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+2):hover { transform: translateY(-8px) rotate(-.45deg); }
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+3):hover { transform: translateY(-8px) rotate(.45deg); }
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+4):hover { transform: translateY(-9px) scale(1.018); }
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+5):hover { transform: translateY(-8px); }
:is(.service-card, .rate-card, .content-card, .need-card, .popular-card, .related-card, .area-card, .safety-card):nth-child(6n+6):hover { transform: translateY(-8px) skewX(-.25deg); }

/* Location directories use a calmer, compact treatment than promotional cards. */
.area-grid .area-card {
    display: grid;
    min-width: 0;
    min-height: 112px;
    grid-template-columns: 48px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    border-color: #d7e3ef;
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fbff 0%, #fff 52%, #fff 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    isolation: isolate;
}
.area-grid .area-card::before { opacity: 0; }
.area-grid .area-card::after { width: 118px; height: 118px; right: -72px; bottom: -82px; opacity: .7; }
.area-grid .area-card > i:first-child {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #e1eaf3;
    border-radius: 14px;
    color: var(--card-accent);
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
    font-size: 1.15rem;
}
.area-grid .area-card > span { min-width: 0; overflow-wrap: anywhere; color: var(--charcoal); font-size: .96rem; font-weight: 800; line-height: 1.35; }
.area-grid .area-card strong { display: block; color: var(--charcoal); font-size: .96rem; line-height: 1.35; }
.area-grid .area-card small { margin-top: 5px; color: var(--muted); font-size: .72rem; font-weight: 600; line-height: 1.45; }
.area-grid .area-card > i:last-child { width: 36px; height: 36px; justify-self: end; margin: 0; color: var(--card-accent); border: 1px solid #e1eaf3; background: rgba(255, 255, 255, .86); }
.area-grid .area-card:hover {
    color: var(--charcoal);
    border-color: var(--card-accent);
    background: linear-gradient(145deg, var(--card-accent-soft) 0%, #fff 58%, #fff 100%);
    box-shadow: 0 18px 38px var(--card-glow), 0 12px 28px rgba(15, 23, 42, .07);
    transform: translateY(-4px);
}
.area-grid .area-card:hover::before { opacity: 0; }
.area-grid .area-card:hover::after { opacity: .82; transform: scale(1.04); }
.area-grid .area-card:hover > span,
.area-grid .area-card:hover strong { color: var(--charcoal); }
.area-grid .area-card:hover small { color: var(--muted); }
.area-grid .area-card:hover > i:first-child { color: var(--card-accent); background: #fff; }
.area-grid .area-card:hover > i:last-child { color: #fff; background: var(--card-accent); box-shadow: 0 8px 18px var(--card-glow); transform: translate(2px, -2px); }

.consent-banner {
    position: fixed;
    z-index: 1100;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    max-width: 920px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--charcoal);
    background: #fff;
    box-shadow: 0 22px 70px rgba(7, 31, 18, .22);
}
.consent-banner[hidden] { display: none; }
.consent-banner h2 { margin: 0 0 5px; font-size: 1rem; }
.consent-banner p { margin: 0; font-size: .9rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-actions form { margin: 0; }
.consent-actions .btn { min-height: 44px; white-space: nowrap; }
@media (max-width: 767px) {
    .consent-banner { bottom: 86px; flex-direction: column; align-items: stretch; }
    .consent-actions .btn { width: 100%; }
    .consent-actions form { flex: 1 1 140px; }
}
