/* =====================================================================
   YuvaRide — landing page
   Standalone stylesheet. Deliberately independent of front-style.css so
   the two designs cannot fight each other.
   ===================================================================== */

:root {
    --brand: #fb6d00;
    --brand-2: #ff9838;
    --ink: #0d1017;
    --ink-2: #1a1f2b;
    --muted: rgba(255, 255, 255, .68);
    --muted-2: rgba(255, 255, 255, .45);
    --line: rgba(255, 255, 255, .10);
    --glass: rgba(255, 255, 255, .06);
    --glass-2: rgba(255, 255, 255, .09);
    --radius: 22px;
    --shell: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp {
    margin: 0;
    background: var(--ink);
    color: #fff;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.lp-shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- ambient colour blobs ---------- */
.lp-aura {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}
.lp-aura--1 { width: 520px; height: 520px; top: -180px; left: -140px; background: var(--brand); opacity: .28; }
.lp-aura--2 { width: 420px; height: 420px; top: 40%; right: -160px; background: #6d5bff; opacity: .20; }
.lp-aura--3 { width: 380px; height: 380px; bottom: -160px; left: 30%; background: var(--brand-2); opacity: .16; }

.lp main, .lp header, .lp footer { position: relative; z-index: 1; }

/* ---------- shared bits ---------- */
.glass {
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(251, 109, 0, .13);
    border: 1px solid rgba(251, 109, 0, .28);
    color: var(--brand-2);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sec-head { max-width: 640px; margin-bottom: 46px; }
.sec-head.center { margin-inline: auto; text-align: center; }

.sec-head h2 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.sec-head p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.grad { background: linear-gradient(100deg, var(--brand) 0%, var(--brand-2) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn-lp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, background .22s ease;
}
.btn-lp i { font-size: 18px; }
.btn-lp--solid {
    background: linear-gradient(100deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #fff;
    box-shadow: 0 14px 30px -14px rgba(251, 109, 0, .9);
}
.btn-lp--solid:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -14px rgba(251, 109, 0, 1); }
.btn-lp--ghost {
    background: var(--glass-2);
    border: 1px solid var(--line);
    color: #fff;
    backdrop-filter: blur(10px);
}
.btn-lp--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }

section { padding: 96px 0; }

/* =====================================================================
   NAV
   ===================================================================== */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: rgba(13, 16, 23, .72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.lp-nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.4px; }
.lp-brand__mark {
    display: grid; place-items: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(140deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 18px -10px rgba(251,109,0,.95);
}
.lp-brand__mark i { font-size: 21px; color: #fff; }
.lp-brand img { width: 40px; height: 40px; border-radius: 12px; object-fit: contain; background: #fff; }

.lp-nav__links { display: flex; align-items: center; gap: 30px; }
.lp-nav__links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .18s ease; }
.lp-nav__links a:hover { color: #fff; }
.lp-nav__cta { display: flex; align-items: center; gap: 10px; }
.lp-burger { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; padding: 4px; }

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero { padding: 74px 0 90px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(38px, 5.6vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
}
.hero p { margin: 0 0 30px; color: var(--muted); font-size: 17px; max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__avatars span {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 13px; font-weight: 700; color: #fff;
    border: 2px solid var(--ink);
    margin-left: -11px;
    background: linear-gradient(140deg, var(--brand), var(--brand-2));
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__trust b { display: block; font-size: 15px; }
.hero__trust small { color: var(--muted-2); font-size: 13px; }
.hero__stars { color: #ffc14d; font-size: 14px; letter-spacing: 2px; }

/* booking card */
.book {
    padding: 26px;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 26px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 30px 70px -40px rgba(0,0,0,.9);
}
.book__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.book__head h3 { margin: 0; font-size: 18px; font-weight: 700; }
.book__pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid var(--line);
    font-size: 12px; font-weight: 600; color: var(--muted);
}
.book__pill i { font-size: 15px; color: var(--brand-2); }

.book__lead { margin: 0 0 22px; color: var(--muted); font-size: 14.5px; }

.book__points { display: grid; gap: 12px; }
.book__points li {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 14px 16px; border-radius: 14px;
    background: rgba(255,255,255,.05); border: 1px solid var(--line);
    transition: border-color .22s ease, transform .22s ease;
}
.book__points li:hover { border-color: rgba(251,109,0,.38); transform: translateX(4px); }
.book__points i { flex-shrink: 0; font-size: 21px; color: var(--brand-2); line-height: 1.3; }
.book__points b { display: block; font-size: 14.5px; font-weight: 700; }
.book__points small { color: var(--muted-2); font-size: 12.5px; }

.book .btn-lp { width: 100%; }

/* =====================================================================
   2. STATS
   ===================================================================== */
.stats { padding: 0 0 96px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
    padding: 28px 24px;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
    transition: transform .25s cubic-bezier(.2,.8,.3,1), border-color .25s ease;
}
.stat:hover { transform: translateY(-5px); border-color: rgba(251,109,0,.42); }
.stat i { font-size: 27px; color: var(--brand-2); }
.stat b { display: block; margin: 12px 0 4px; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -1px; }
.stat span { color: var(--muted); font-size: 13.5px; }

/* =====================================================================
   3. SERVICES
   ===================================================================== */
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
    position: relative;
    padding: 32px 28px;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform .28s cubic-bezier(.2,.8,.3,1), border-color .28s ease, background .28s ease;
}
.svc::after {
    content: "";
    position: absolute; inset: auto -50px -60px auto;
    width: 170px; height: 170px; border-radius: 50%;
    background: var(--brand); opacity: .10; filter: blur(30px);
    transition: opacity .3s ease;
}
.svc:hover { transform: translateY(-6px); border-color: rgba(251,109,0,.4); background: var(--glass-2); }
.svc:hover::after { opacity: .22; }
.svc__ico {
    display: grid; place-items: center;
    width: 56px; height: 56px; margin-bottom: 20px;
    border-radius: 17px;
    background: linear-gradient(140deg, var(--brand), var(--brand-2));
    box-shadow: 0 12px 26px -14px rgba(251,109,0,.95);
}
.svc__ico i { font-size: 26px; color: #fff; }
.svc h3 { margin: 0 0 9px; font-size: 19px; font-weight: 700; }
.svc p { margin: 0 0 16px; color: var(--muted); font-size: 14.5px; }
.svc__link { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-2); font-size: 14px; font-weight: 600; }
.svc__link i { transition: transform .2s ease; }
.svc:hover .svc__link i { transform: translateX(4px); }

/* =====================================================================
   4. HOW IT WORKS
   ===================================================================== */
.how { background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent); }
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.how__step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(14px); }
.how__step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute; top: 18px; right: 22px;
    font-size: 40px; font-weight: 800;
    color: rgba(255,255,255,.07);
    letter-spacing: -2px;
}
.how__step i { font-size: 26px; color: var(--brand-2); }
.how__step h4 { margin: 16px 0 8px; font-size: 17px; font-weight: 700; }
.how__step p { margin: 0; color: var(--muted); font-size: 14px; }

/* =====================================================================
   5. WHY / FEATURES
   ===================================================================== */
.why__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.why__list { display: grid; gap: 14px; }
.why__item { display: flex; gap: 15px; padding: 20px; border-radius: 18px; background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(14px); transition: border-color .25s ease, transform .25s ease; }
.why__item:hover { border-color: rgba(251,109,0,.4); transform: translateX(5px); }
.why__item i { flex-shrink: 0; font-size: 22px; color: var(--brand-2); }
.why__item h4 { margin: 0 0 5px; font-size: 16px; font-weight: 700; }
.why__item p { margin: 0; color: var(--muted); font-size: 14px; }

.why__panel { position: relative; padding: 34px; border-radius: 28px; background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(20px); }
.why__fare { display: grid; gap: 12px; }
.why__row { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-radius: 14px; background: rgba(255,255,255,.05); }
.why__row span { color: var(--muted); font-size: 14px; }
.why__row b { font-size: 15px; }
.why__row--total { background: rgba(251,109,0,.14); border: 1px solid rgba(251,109,0,.3); }
.why__row--total b { color: var(--brand-2); font-size: 19px; }
.why__map { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.05); }
.why__map i { font-size: 22px; color: var(--brand-2); }
.why__map small { display: block; color: var(--muted-2); font-size: 12px; }
.why__map b { font-size: 14.5px; }

/* =====================================================================
   6. APP / DOWNLOAD
   ===================================================================== */
.app__box {
    position: relative;
    padding: 60px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(251,109,0,.16), rgba(109,91,255,.12));
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: hidden;
}
.app__box::before {
    content: ""; position: absolute; top: -80px; right: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: var(--brand); opacity: .22; filter: blur(70px);
}
.app__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.app__grid h2 { margin: 18px 0 14px; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.app__grid p { margin: 0 0 28px; color: var(--muted); }
.app__badges { display: flex; flex-wrap: wrap; gap: 12px; }
.app__badge { display: flex; align-items: center; gap: 11px; padding: 12px 20px; border-radius: 14px; background: rgba(0,0,0,.35); border: 1px solid var(--line); transition: transform .22s ease, border-color .22s ease; }
.app__badge:hover { transform: translateY(-3px); border-color: rgba(251,109,0,.45); }
.app__badge i { font-size: 26px; }
.app__badge small { display: block; font-size: 11px; color: var(--muted-2); }
.app__badge b { font-size: 14.5px; }
.app__perks { display: grid; gap: 12px; }
.app__perk { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 15px; background: rgba(255,255,255,.07); border: 1px solid var(--line); }
.app__perk i { font-size: 20px; color: var(--brand-2); }
.app__perk span { font-size: 14.5px; font-weight: 500; }

/* =====================================================================
   7. TESTIMONIALS
   ===================================================================== */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 30px 26px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(16px); transition: transform .25s ease, border-color .25s ease; }
.quote:hover { transform: translateY(-5px); border-color: rgba(251,109,0,.4); }
.quote__stars { color: #ffc14d; letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.quote p { margin: 0 0 22px; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.65; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__who span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--brand), var(--brand-2)); font-weight: 700; }
.quote__who b { display: block; font-size: 14.5px; }
.quote__who small { color: var(--muted-2); font-size: 12.5px; }

/* =====================================================================
   8. FAQ
   ===================================================================== */
.faq__wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { border-radius: 18px; background: var(--glass); border: 1px solid var(--line); backdrop-filter: blur(14px); overflow: hidden; transition: border-color .22s ease; }
.faq__item.open { border-color: rgba(251,109,0,.42); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 21px 24px; background: none; border: 0; color: #fff; font-size: 16px; font-weight: 600; font-family: inherit; text-align: left; cursor: pointer; }
.faq__q i { flex-shrink: 0; font-size: 20px; color: var(--brand-2); transition: transform .25s ease; }
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; }
.faq__item.open .faq__a { max-height: 260px; }

/* =====================================================================
   9. CTA + FOOTER
   ===================================================================== */
.cta { text-align: center; }
.cta__box { padding: 64px 40px; border-radius: 32px; background: linear-gradient(135deg, rgba(251,109,0,.2), rgba(255,152,56,.08)); border: 1px solid rgba(251,109,0,.3); backdrop-filter: blur(20px); }
.cta__box h2 { margin: 16px 0 14px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; }
.cta__box p { margin: 0 auto 30px; color: var(--muted); max-width: 52ch; }
.cta__row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.lp-foot { padding: 62px 0 30px; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.lp-foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.lp-foot p { color: var(--muted); font-size: 14.5px; margin: 16px 0 20px; max-width: 34ch; }
.lp-foot h5 { margin: 0 0 16px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.lp-foot li { margin-bottom: 10px; }
.lp-foot li a { color: var(--muted); font-size: 14.5px; transition: color .18s ease; }
.lp-foot li a:hover { color: var(--brand-2); }
.lp-social { display: flex; gap: 10px; }
.lp-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid var(--line); font-size: 18px; transition: all .22s ease; }
.lp-social a:hover { background: var(--brand); transform: translateY(-3px); }
.lp-foot__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13.5px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
    .hero__grid, .why__grid, .app__grid { grid-template-columns: 1fr; }
    .stats__grid, .how__grid { grid-template-columns: repeat(2, 1fr); }
    .svc__grid, .quotes__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .app__box { padding: 44px 32px; }
}

@media (max-width: 860px) {
    .lp-nav__links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: flex-start; gap: 0;
        padding: 10px 24px 18px;
        background: rgba(13,16,23,.97);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(16px);
        display: none;
    }
    .lp-nav__links.show { display: flex; }
    .lp-nav__links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .lp-burger { display: block; }
    .lp-nav__cta .btn-lp--ghost { display: none; }
    section { padding: 68px 0; }
    .hero { padding: 46px 0 62px; }
}

@media (max-width: 620px) {
    .lp-shell { padding: 0 18px; }
    .stats__grid, .svc__grid, .quotes__grid, .how__grid { grid-template-columns: 1fr; }
    .lp-foot__grid { grid-template-columns: 1fr; }
    .book { padding: 20px; }
    .book__meta { flex-direction: column; }
    .app__box, .cta__box { padding: 36px 22px; }
    .hero__cta .btn-lp, .cta__row .btn-lp { width: 100%; }
    .hero__trust { gap: 16px; }
    .lp-foot__bar { justify-content: center; text-align: center; }
}

/* honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
