/* =========================================================
   KUMAUN TAXI — PREMIUM HIMALAYAN MOBILITY
   Luxury • Modern • Dark • Glassmorphism • Responsive
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* =========================================================
   ROOT
========================================================= */

:root {
    --bg: #07100d;
    --bg-2: #0b1713;
    --bg-card: rgba(18, 32, 26, 0.72);
    --bg-light: #f5f7f5;
    --white: #ffffff;

    --text: #f4f8f5;
    --text-dark: #122019;
    --muted: #9aa9a2;
    --muted-dark: #66746d;

    --green: #18a978;
    --green-bright: #27c88d;
    --green-dark: #087653;

    --gold: #dca86a;
    --gold-light: #f0c58d;

    --border: rgba(255, 255, 255, 0.09);
    --border-green: rgba(39, 200, 141, 0.22);

    --shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
    --shadow-green: 0 20px 55px rgba(24, 169, 120, 0.18);

    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;

    --container: 1200px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --transition: 300ms var(--ease);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

::selection {
    background: var(--green);
    color: white;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #07100d;
}

::-webkit-scrollbar-thumb {
    background: #1b6e52;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(5, 15, 11, 0.55);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 15, 11, 0.88);
    border-bottom-color: rgba(255,255,255,.09);
    box-shadow: 0 12px 45px rgba(0,0,0,.22);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: white;
    font-size: 20px;

    background:
        linear-gradient(
            145deg,
            #19ad7c,
            #07573f
        );

    box-shadow:
        0 10px 35px rgba(24,169,120,.25),
        inset 0 1px 0 rgba(255,255,255,.18);

    transition: transform var(--transition);
}

.brand:hover .brand-icon {
    transform: translateY(-3px) rotate(-4deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.04em;
    color: white;
}

.brand-text small {
    margin-top: 6px;

    color: var(--gold);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .25em;
    text-transform: uppercase;
}

/* =========================================================
   NAV
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav > a:not(.nav-book) {
    position: relative;

    color: #b5c0bb;

    font-size: 12px;
    font-weight: 600;

    transition: color var(--transition);
}

.main-nav > a:not(.nav-book)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--green-bright);
    border-radius: 20px;

    transition: width var(--transition);
}

.main-nav > a:not(.nav-book):hover {
    color: white;
}

.main-nav > a:not(.nav-book):hover::after {
    width: 100%;
}

.nav-book {
    padding: 12px 20px;

    color: #07130e !important;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius: 12px;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(220,168,106,.16);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-book:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 38px rgba(220,168,106,.25);
}

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;

    cursor: pointer;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;

    background: white;
    border-radius: 20px;

    transition: transform var(--transition);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    padding-top: 125px;
    padding-bottom: 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(24,169,120,.17),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(220,168,106,.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #06100c 0%,
            #091812 48%,
            #07120e 100%
        );
}

/* Ambient light */

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(39,200,141,.09);

    box-shadow:
        0 0 0 80px rgba(39,200,141,.025),
        0 0 0 160px rgba(39,200,141,.015);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    left: -200px;
    bottom: -300px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(24,169,120,.12),
            transparent 68%
        );

    pointer-events: none;
}

.hero-background {
    position: absolute;

    width: 700px;
    height: 700px;

    top: 40px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(39,200,141,.13),
            rgba(39,200,141,.035) 42%,
            transparent 70%
        );

    filter: blur(5px);

    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(390px, 510px);

    align-items: center;

    gap: 85px;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    padding-bottom: 25px;

    animation:
        heroReveal .9s var(--ease) both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    color: #a8dfca;

    background: rgba(39,200,141,.07);

    border: 1px solid rgba(39,200,141,.17);

    border-radius: 100px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .13em;
    text-transform: uppercase;

    backdrop-filter: blur(15px);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    background: var(--gold);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(220,168,106,.08),
        0 0 18px rgba(220,168,106,.5);
}

.hero h1 {
    max-width: 760px;

    margin-top: 25px;

    font-family: var(--font-heading);

    font-size: clamp(48px, 5.7vw, 79px);

    line-height: .98;

    letter-spacing: -.065em;

    color: white;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            135deg,
            #27c88d,
            #8be4c2
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 600px;

    margin-top: 28px;

    color: #9ba9a3;

    font-size: 15px;
    line-height: 1.85;
}

.hero-actions {
    margin-top: 34px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-trust {
    margin-top: 48px;

    display: flex;
    align-items: center;

    gap: 22px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-family: var(--font-heading);

    color: white;

    font-size: 17px;
    font-weight: 800;
}

.trust-item span {
    margin-top: 2px;

    color: #718078;

    font-size: 9px;
}

.trust-divider {
    width: 1px;
    height: 36px;

    background: rgba(255,255,255,.09);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 13px;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #06130e;

    background:
        linear-gradient(
            135deg,
            #2acb91,
            #16a978
        );

    box-shadow:
        0 15px 38px rgba(24,169,120,.20);
}

.btn-primary:hover {
    box-shadow:
        0 20px 45px rgba(24,169,120,.30);
}

.btn-whatsapp {
    color: white;

    background:
        linear-gradient(
            135deg,
            #25d366,
            #159f4d
        );

    box-shadow:
        0 15px 35px rgba(37,211,102,.15);
}

.btn-whatsapp:hover {
    box-shadow:
        0 20px 45px rgba(37,211,102,.25);
}

.btn-outline {
    color: white;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.13);

    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background: rgba(255,255,255,.09);

    border-color: rgba(255,255,255,.24);
}

.text-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green-bright);

    font-size: 11px;
    font-weight: 800;

    transition:
        gap var(--transition),
        color var(--transition);
}

.text-btn:hover {
    gap: 14px;
    color: #75e0b6;
}

/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {
    position: relative;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(28,45,37,.90),
            rgba(10,25,19,.84)
        );

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 28px;

    box-shadow:
        0 35px 100px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.07);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    animation:
        bookingFloat 6s ease-in-out infinite,
        heroReveal .9s .12s var(--ease) both;
}

.booking-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(39,200,141,.12),
            transparent 35%,
            rgba(220,168,106,.04)
        );

    pointer-events: none;
}

.booking-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(39,200,141,.13),
            transparent 70%
        );

    pointer-events: none;
}

@keyframes bookingFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.booking-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 27px;
}

.booking-label {
    color: var(--gold-light);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .2em;
}

.booking-card h2 {
    margin-top: 6px;

    color: white;

    font-family: var(--font-heading);

    font-size: 23px;
    line-height: 1.2;

    letter-spacing: -.04em;
}

.booking-car-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: #76e0b5;

    background:
        linear-gradient(
            145deg,
            rgba(39,200,141,.13),
            rgba(39,200,141,.04)
        );

    border: 1px solid rgba(39,200,141,.13);

    border-radius: 15px;

    font-size: 21px;
}

/* =========================================================
   FORM
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 13px;
}

.form-group {
    min-width: 0;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #9eaaa4;

    font-size: 9px;
    font-weight: 750;

    letter-spacing: .02em;
}

.input-wrap {
    min-height: 50px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 0 13px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 12px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.input-wrap:focus-within {
    background: rgba(255,255,255,.075);

    border-color: rgba(39,200,141,.45);

    box-shadow:
        0 0 0 4px rgba(39,200,141,.07);

    transform: translateY(-1px);
}

.input-wrap > span {
    flex-shrink: 0;

    color: #6dd7ac;

    font-size: 14px;
}

.input-wrap input,
.input-wrap select {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 11px;
    font-weight: 600;
}

.input-wrap input::placeholder {
    color: #66756d;
}

.input-wrap select {
    cursor: pointer;
}

.input-wrap select option {
    color: #122019;
    background: white;
}

.booking-submit {
    width: 100%;

    min-height: 56px;

    margin-top: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #06130e;

    background:
        linear-gradient(
            135deg,
            #35d39a,
            #16a978
        );

    border-radius: 13px;

    font-size: 11px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 15px 35px rgba(24,169,120,.19);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.booking-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 45px rgba(24,169,120,.30);
}

.booking-submit .arrow {
    margin-left: 4px;
    font-size: 17px;
}

.booking-note {
    margin-top: 11px;

    text-align: center;

    color: #64736b;

    font-size: 8px;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 52px;
}

.section-heading.centered {
    display: block;

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-kicker {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .23em;

    text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.founder-content h2,
.faq-intro h2,
.final-cta h2 {
    font-family: var(--font-heading);

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.04;

    letter-spacing: -.055em;
}

.section-heading h2 {
    color: var(--text-dark);
}

.section-heading > p {
    max-width: 450px;

    color: var(--muted-dark);

    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   ROUTES
========================================================= */

.routes-section {
    background:
        linear-gradient(
            180deg,
            #f7f9f7,
            #eef3ef
        );
}

.route-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.route-card {
    min-height: 110px;

    padding: 18px;

    display: grid;

    grid-template-columns: 45px 1fr 20px;

    align-items: center;

    gap: 12px;

    background: rgba(255,255,255,.78);

    border: 1px solid rgba(15,52,39,.08);

    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(10,40,28,.035);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.route-card:hover {
    transform: translateY(-7px);

    background: white;

    border-color: rgba(24,169,120,.22);

    box-shadow:
        0 25px 60px rgba(10,45,32,.11);
}

.route-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: var(--green-dark);

    background:
        linear-gradient(
            145deg,
            #e1f5eb,
            #d5eee3
        );

    border-radius: 14px;

    font-size: 18px;

    transition: transform var(--transition);
}

.route-card:hover .route-icon {
    transform: scale(1.08) rotate(-4deg);
}

.route-card strong {
    display: block;

    color: var(--text-dark);

    font-size: 12px;
    line-height: 1.35;
}

.route-card small {
    display: block;

    margin-top: 4px;

    color: var(--muted-dark);

    font-size: 9px;
}

.route-arrow {
    color: var(--green);

    font-size: 16px;
    font-weight: 900;

    transition: transform var(--transition);
}

.route-card:hover .route-arrow {
    transform: translateX(5px);
}

.center-action {
    margin-top: 38px;

    display: flex;
    justify-content: center;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(24,169,120,.07),
            transparent 25%
        ),
        #f5f8f6;
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 350px;

    padding: 29px;

    background:
        rgba(255,255,255,.82);

    border: 1px solid rgba(12,50,37,.08);

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -110px;
    bottom: -110px;

    border-radius: 50%;

    background: rgba(24,169,120,.06);

    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-9px);

    border-color: rgba(24,169,120,.17);

    box-shadow:
        0 28px 70px rgba(10,48,34,.12);
}

.service-card:hover::before {
    transform: scale(1.5);
}

.featured-service {
    color: white;

    background:
        linear-gradient(
            145deg,
            #087653,
            #043b2b
        );

    border-color: transparent;

    box-shadow:
        0 22px 55px rgba(8,118,83,.18);
}

.featured-service::before {
    background: rgba(255,255,255,.06);
}

.service-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #bdc8c2;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .08em;
}

.featured-service .service-number {
    color: rgba(255,255,255,.35);
}

.service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 38px;

    display: grid;
    place-items: center;

    color: var(--green-dark);

    background:
        linear-gradient(
            145deg,
            #e5f6ed,
            #d6eee3
        );

    border-radius: 15px;

    font-size: 22px;

    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
}

.featured-service .service-icon {
    color: #9be8c9;
    background: rgba(255,255,255,.11);
}

.service-card h3 {
    position: relative;
    z-index: 2;

    color: var(--text-dark);

    font-family: var(--font-heading);

    font-size: 17px;

    letter-spacing: -.03em;
}

.featured-service h3 {
    color: white;
}

.service-card p {
    position: relative;
    z-index: 2;

    margin-top: 11px;

    color: var(--muted-dark);

    font-size: 11px;
    line-height: 1.8;
}

.featured-service p {
    color: rgba(255,255,255,.70);
}

.service-card a {
    position: absolute;

    bottom: 28px;
    left: 29px;

    z-index: 3;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 850;

    transition: transform var(--transition);
}

.featured-service a {
    color: white;
}

.service-card a:hover {
    transform: translateX(5px);
}

/* =========================================================
   FLEET
========================================================= */

.fleet-section {
    background: #ffffff;
}

.fleet-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.fleet-card {
    overflow: hidden;

    background: #f7f9f7;

    border: 1px solid rgba(12,50,37,.08);

    border-radius: 24px;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.fleet-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(10,48,34,.12);
}

.fleet-visual {
    height: 230px;

    display: grid;
    place-items: center;

    font-size: 82px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,255,255,.95),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #dcefe6,
            #f4eee7
        );
}

.fleet-content {
    padding: 27px;
}

.fleet-tag {
    color: var(--gold);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .18em;
}

.fleet-content h3 {
    margin-top: 7px;

    color: var(--text-dark);

    font-family: var(--font-heading);

    font-size: 21px;

    letter-spacing: -.035em;
}

.fleet-content p {
    margin-top: 8px;

    color: var(--muted-dark);

    font-size: 11px;
}

.fleet-content a {
    display: inline-block;

    margin-top: 18px;

    color: var(--green-dark);

    font-size: 10px;
    font-weight: 850;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background:
        linear-gradient(
            135deg,
            #eaf3ee,
            #f5f8f5
        );
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 90px;
}

.mountain-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(
            180deg,
            #8bb9c5 0%,
            #dcebe7 47%,
            #78927e 48%,
            #1f3e2d 100%
        );

    box-shadow:
        0 35px 90px rgba(20,62,45,.17);

    isolation: isolate;
}

.mountain-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: 50px;
    right: 55px;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    box-shadow:
        0 0 80px rgba(255,255,255,.18);
}

.mountain-card::after {
    content: "";

    position: absolute;

    inset: auto 0 0;

    height: 45%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(3,20,13,.30)
        );

    pointer-events: none;
}

.mountain-shape {
    position: absolute;

    bottom: 0;

    width: 0;
    height: 0;

    border-left: 220px solid transparent;
    border-right: 220px solid transparent;
    border-bottom: 370px solid #54745c;
}

.mountain-one {
    left: -170px;
}

.mountain-two {
    left: 90px;

    border-left-width: 270px;
    border-right-width: 270px;
    border-bottom-width: 430px;

    border-bottom-color: #355641;
}

.mountain-three {
    right: -220px;

    border-left-width: 280px;
    border-right-width: 280px;
    border-bottom-width: 390px;

    border-bottom-color: #69866d;
}

.about-badge {
    position: absolute;

    top: 25px;
    left: 25px;

    width: 96px;
    height: 96px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.87);

    border: 1px solid rgba(255,255,255,.95);

    border-radius: 24px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 15px 45px rgba(0,0,0,.12);
}

.about-badge strong {
    font-family: var(--font-heading);

    font-size: 25px;

    color: var(--green-dark);
}

.about-badge span {
    font-size: 8px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.about-content h2 {
    color: var(--text-dark);
}

.about-content > p {
    max-width: 650px;

    margin-top: 21px;

    color: var(--muted-dark);

    font-size: 13px;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin: 32px 0;
}

.about-points div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--text-dark);

    font-size: 11px;
    font-weight: 650;
}

.about-points span {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: #dff2e8;

    color: var(--green-dark);

    border-radius: 50%;

    font-weight: 900;
}

/* =========================================================
   FOUNDER
========================================================= */

.founder-section {
    background: white;
}

.founder-card {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    align-items: stretch;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f0f5f2,
            #e9f1ec
        );

    border: 1px solid rgba(12,50,37,.08);

    border-radius: 34px;

    box-shadow:
        0 25px 75px rgba(15,48,36,.08);
}

.founder-image-wrap {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    background: #dce7e0;
}

.founder-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 800ms var(--ease);
}

.founder-card:hover .founder-image {
    transform: scale(1.04);
}

.founder-image-label {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 10px 15px;

    color: white;

    background: rgba(5,20,14,.78);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 11px;

    font-size: 8px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: .12em;

    backdrop-filter: blur(14px);
}

.founder-content {
    padding: 72px;
}

.founder-content h2 {
    color: var(--text-dark);
}

.founder-lead {
    margin-top: 25px !important;

    color: var(--text-dark) !important;

    font-size: 16px !important;
    font-weight: 650;
}

.founder-content p {
    max-width: 600px;

    margin-top: 15px;

    color: var(--muted-dark);

    font-size: 12px;
}

.founder-signature {
    margin: 32px 0;

    padding-left: 18px;

    display: flex;
    flex-direction: column;

    border-left: 2px solid var(--gold);
}

.founder-signature strong {
    color: var(--text-dark);

    font-family: var(--font-heading);

    font-size: 16px;
}

.founder-signature span {
    margin-top: 2px;

    color: var(--green-dark);

    font-size: 9px;
    font-weight: 750;
}

/* =========================================================
   WHY
========================================================= */

.why-section {
    position: relative;

    color: white;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(24,169,120,.20),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #06130e,
            #0b241b
        );

    overflow: hidden;
}

.why-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -260px;
    bottom: -300px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.05);

    box-shadow:
        0 0 0 90px rgba(255,255,255,.012),
        0 0 0 180px rgba(255,255,255,.007);
}

.why-section .section-kicker {
    color: var(--gold-light);
}

.why-section h2 {
    color: white;
}

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 23px;

    overflow: hidden;
}

.why-item {
    min-height: 250px;

    padding: 38px 29px;

    background: rgba(7,23,17,.86);

    transition:
        background var(--transition),
        transform var(--transition);
}

.why-item:hover {
    background: rgba(16,48,36,.95);
}

.why-icon {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 14px;

    font-size: 20px;
}

.why-item h3 {
    margin-top: 23px;

    font-family: var(--font-heading);

    font-size: 15px;
}

.why-item p {
    margin-top: 9px;

    color: #9eada5;

    font-size: 10px;
    line-height: 1.8;
}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background:
        linear-gradient(
            180deg,
            #f5f8f6,
            #eef3ef
        );
}

.faq-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 90px;
}

.faq-intro h2 {
    margin-top: 5px;

    color: var(--text-dark);
}

.faq-intro > p {
    margin-top: 18px;

    color: var(--muted-dark);

    font-size: 12px;
}

.faq-intro .btn {
    margin-top: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.faq-list details {
    background: rgba(255,255,255,.90);

    border: 1px solid rgba(12,50,37,.08);

    border-radius: 16px;

    overflow: hidden;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-list details[open] {
    border-color: rgba(24,169,120,.20);

    box-shadow:
        0 15px 40px rgba(13,51,38,.07);
}

.faq-list summary {
    padding: 19px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    list-style: none;

    color: var(--text-dark);

    font-size: 12px;
    font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--green-dark);

    font-size: 20px;

    transition: transform var(--transition);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 20px 20px;

    color: var(--muted-dark);

    font-size: 11px;
    line-height: 1.8;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;

    padding: 125px 0;

    color: white;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.09),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(39,200,141,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #087653,
            #032b20
        );

    overflow: hidden;
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -270px;
    top: -270px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.07);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.015),
        0 0 0 160px rgba(255,255,255,.009);
}

.final-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.final-cta .section-kicker {
    color: #f0bf87;
}

.final-cta h2 {
    max-width: 800px;

    margin: auto;

    font-size: clamp(37px, 5vw, 62px);
}

.final-cta p {
    max-width: 580px;

    margin: 21px auto 0;

    color: rgba(255,255,255,.70);

    font-size: 13px;
}

.final-actions {
    margin-top: 33px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 11px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 78px;

    background:
        linear-gradient(
            145deg,
            #04110b,
            #020b07
        );

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 55px;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 17px;

    color: #819089;

    font-size: 11px;
    line-height: 1.8;
}

.footer-whatsapp {
    display: inline-flex;

    margin-top: 18px;

    color: #55df89;

    font-size: 10px;
    font-weight: 850;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;

    color: white;

    font-family: var(--font-heading);

    font-size: 11px;
}

.footer-column a {
    color: #819089;

    font-size: 10px;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: white;

    transform: translateX(4px);
}

.footer-bottom {
    min-height: 85px;

    margin-top: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #617069;

    font-size: 8px;
}

/* =========================================================
   MOBILE BOOKING BAR
========================================================= */

.mobile-booking-bar {
    display: none;
}

/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    right: 22px;
    bottom: 25px;

    z-index: 2000;

    padding: 14px 18px;

    color: white;

    background: #10251c;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 13px;

    font-size: 10px;
    font-weight: 750;

    box-shadow: var(--shadow);

    transform: translateY(100px);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 350ms var(--ease),
        opacity 350ms var(--ease);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .container {
        width: min(calc(100% - 38px), var(--container));
    }

    .main-nav {
        gap: 19px;
    }

    .hero-container {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(44px, 5.4vw, 65px);
    }

    .route-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .founder-content {
        padding: 52px;
    }

    .faq-grid {
        gap: 50px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 820px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    /* HEADER */

    .nav-container {
        min-height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: 70px;
        left: 14px;
        right: 14px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        padding: 15px;

        background:
            rgba(8,20,15,.97);

        border: 1px solid rgba(255,255,255,.08);

        border-radius: 18px;

        box-shadow:
            0 25px 70px rgba(0,0,0,.35);

        backdrop-filter: blur(22px);
    }

    .main-nav.active {
        display: flex;

        animation:
            menuReveal .3s var(--ease) both;
    }

    @keyframes menuReveal {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav > a:not(.nav-book) {
        padding: 11px 10px;
        color: #b8c5bf;
    }

    .main-nav > a:not(.nav-book)::after {
        display: none;
    }

    .nav-book {
        text-align: center;
    }

    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 112px;
        padding-bottom: 72px;
    }

    .hero-container {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 42px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;

        justify-content: space-between;
    }

    .trust-item strong {
        font-size: 13px;
    }

    .trust-item span {
        font-size: 8px;
    }

    /* BOOKING */

    .booking-card {
        padding: 22px;

        border-radius: 22px;

        animation:
            heroReveal .8s .1s var(--ease) both;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* HEADINGS */

    .section-heading {
        display: block;

        margin-bottom: 32px;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    /* ROUTES */

    .route-grid {
        grid-template-columns: 1fr;
    }

    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 315px;
    }

    /* FLEET */

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .mountain-card {
        min-height: 390px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    /* FOUNDER */

    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-image-wrap {
        min-height: 420px;

        max-height: 500px;
    }

    .founder-content {
        padding: 40px 25px 43px;
    }

    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: 220px;
    }

    /* FAQ */

    .faq-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        gap: 5px;

        text-align: center;
    }

    /* MOBILE BAR */

    .mobile-booking-bar {
        position: fixed;

        left: 10px;
        right: 10px;
        bottom: 10px;

        z-index: 1500;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 7px;

        padding: 7px;

        background:
            rgba(4,16,11,.91);

        border: 1px solid rgba(255,255,255,.09);

        border-radius: 17px;

        backdrop-filter: blur(20px);

        box-shadow:
            0 18px 55px rgba(0,0,0,.35);
    }

    .mobile-booking-bar a {
        min-height: 47px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 11px;

        font-size: 10px;
        font-weight: 850;
    }

    .mobile-call {
        background: rgba(255,255,255,.07);
        color: white;
    }

    .mobile-wa {
        color: white;

        background:
            linear-gradient(
                135deg,
                #25d366,
                #18b957
            );
    }

    .toast {
        bottom: 83px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
    }

    .brand-icon {
        width: 39px;
        height: 39px;

        border-radius: 12px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .hero {
        padding-top: 108px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-trust {
        display: grid;

        grid-template-columns:
            1fr
            1px
            1fr
            1px
            1fr;
    }

    .trust-divider {
        height: 30px;
    }

    .booking-card-top {
        align-items: flex-start;
    }

    .booking-card h2 {
        font-size: 19px;
    }

    .booking-car-icon {
        width: 44px;
        height: 44px;

        font-size: 19px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .final-actions {
        flex-direction: column;
    }

    .final-actions .btn {
        width: 100%;
    }

    .final-cta {
        padding: 88px 0;
    }

    .service-card {
        padding: 24px;
    }

    .mountain-card {
        min-height: 350px;
    }

    .fleet-visual {
        height: 200px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
