/* =========================================================
   FILIPE STREET
   ULTRA MAX PREMIUM CSS
   Táxi & Viagens — Goianinha/RN
========================================================= */

/* =========================================================
   ROOT
========================================================= */

:root {
    --black: #070707;
    --black-2: #0c0c0c;
    --black-3: #121212;

    --gold: #d7aa4a;
    --gold-light: #f2d27a;
    --gold-dark: #9b7425;

    --white: #ffffff;
    --white-soft: #e8e8e8;

    --gray: #a3a3a3;
    --gray-dark: #707070;
    --border: rgba(255, 255, 255, 0.09);

    --green: #25d366;

    --container: 1240px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;

    --shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    --shadow-gold:
        0 15px 50px rgba(215, 170, 74, 0.16);

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-dark)
    );
    border-radius: 50px;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            rgba(215, 170, 74, 0.08),
            transparent 35%
        ),
        #050505;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    width: min(360px, 85vw);
    text-align: center;
}

.preloader-logo {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.preloader-logo span {
    color: var(--gold);
    margin-left: 5px;
}

.preloader-content p {
    margin-top: 18px;
    color: var(--gray);
    font-size: 0.85rem;
}

.preloader-line {
    height: 2px;
    margin-top: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.preloader-line span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(350%);
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9000;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.55)
        );

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    height: 84px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold),
            var(--gold-dark)
        );

    box-shadow:
        0 8px 25px rgba(215, 170, 74, 0.18);

    font-size: 1.1rem;
}

.brand-text {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-text strong {
    display: block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 4px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;

    color: #bdbdbd;

    font-size: 0.82rem;
    font-weight: 600;

    transition: var(--transition);
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: var(--gold);

    transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 18px;
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    border-radius: 12px;

    background: var(--white);
    color: var(--black);

    font-size: 0.8rem;
    font-weight: 800;

    transition: var(--transition);
}

.header-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding:
        150px
        0
        100px;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(0, 0, 0, 0.80) 48%,
            rgba(0, 0, 0, 0.46) 100%
        ),
        url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(215, 170, 74, 0.14),
            transparent 28%
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.7fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    margin-bottom: 25px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);

    color: #d9d9d9;

    font-size: 0.73rem;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #39d98a;

    box-shadow:
        0 0 0 5px rgba(57, 217, 138, 0.1),
        0 0 18px rgba(57, 217, 138, 0.5);

    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    50% {
        transform: scale(1.25);
    }
}

.hero-overline {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;

    max-width: 850px;

    font-size: clamp(
        3rem,
        6.2vw,
        6.3rem
    );

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 800;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-description {
    max-width: 620px;

    margin-top: 28px;

    color: #c7c7c7;

    font-size: 1.05rem;

    line-height: 1.8;
}

.hero-description strong {
    display: block;

    margin-top: 5px;

    color: var(--white);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;

    padding: 0 20px;

    border-radius: 15px;

    font-size: 0.82rem;
    font-weight: 800;

    overflow: hidden;

    transition: var(--transition);
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--black);

    box-shadow:
        0 15px 40px rgba(215, 170, 74, 0.18);
}

.btn-primary::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
        );

    transform: skewX(-20deg);

    transition: 0.7s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 55px rgba(215, 170, 74, 0.28);
}

.btn-outline {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px);
}

.btn-arrow {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.1);
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 34px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #bcbcbc;

    font-size: 0.72rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--gold);
}


/* =========================================================
   HERO ROUTE CARD
========================================================= */

.hero-route-card {
    position: relative;

    padding: 28px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(30, 30, 30, 0.96),
            rgba(9, 9, 9, 0.92)
        );

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        var(--shadow),
        inset 0 1px rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(20px);

    overflow: hidden;

    animation: floatingCard 5s ease-in-out infinite;
}

.hero-route-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background: rgba(215, 170, 74, 0.1);

    filter: blur(20px);
}

@keyframes floatingCard {
    50% {
        transform: translateY(-9px);
    }
}

.route-card-top {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.route-card-top span {
    display: block;

    color: var(--gray);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.route-card-top strong {
    display: block;

    margin-top: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 1.3rem;
}

.route-card-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: rgba(215, 170, 74, 0.1);

    color: var(--gold-light);

    font-size: 1.1rem;
}


/* =========================================================
   ROUTE
========================================================= */

.route-line {
    position: relative;

    padding: 30px 5px;
}

.route-point {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    z-index: 2;
}

.route-point + .route-point {
    margin-top: 34px;
}

.route-point small {
    display: block;

    color: var(--gray);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.route-point strong {
    display: block;

    margin-top: 2px;

    font-size: 0.95rem;
}

.point-dot {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--white);

    border: 3px solid var(--black);

    box-shadow:
        0 0 0 2px var(--white);
}

.point-dot.destination {
    background: var(--gold);
    box-shadow:
        0 0 0 2px var(--gold);
}

.route-track {
    position: absolute;

    left: 10px;
    top: 47px;

    width: 2px;
    height: 45px;

    background:
        repeating-linear-gradient(
            to bottom,
            var(--gold) 0 5px,
            transparent 5px 10px
        );
}


/* =========================================================
   ROUTE BOTTOM
========================================================= */

.route-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.route-card-bottom small {
    display: block;

    color: var(--gray);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.route-card-bottom strong {
    display: block;

    margin-top: 3px;

    color: var(--gold-light);

    font-size: 1rem;
}

.route-card-button {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--gold);
    color: var(--black);

    transition: var(--transition);
}

.route-card-button:hover {
    transform: rotate(-45deg) scale(1.08);
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    z-index: 3;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    color: var(--gray);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 1px;
}

.hero-scroll i {
    color: var(--gold);
    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {
    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   MARQUEE
========================================================= */

.gold-marquee {
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold),
            var(--gold-light),
            var(--gold)
        );

    color: var(--black);

    padding: 14px 0;
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 35px;

    animation: marquee 24s linear infinite;

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.marquee-track i {
    font-size: 0.5rem;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   GENERIC SECTION
========================================================= */

.section {
    position: relative;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: auto;

    padding: 120px 0;
}

.section-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--gold-light);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading {
    margin-top: 14px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.2rem,
        4.5vw,
        4.5rem
    );

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;
}

.section-heading span {
    display: block;
    color: var(--gold-light);
}

.section-header p {
    max-width: 620px;

    margin-top: 18px;

    color: var(--gray);

    font-size: 0.95rem;
}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {
    max-width: 1400px;
}

.booking-container {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 80px;

    align-items: center;
}

.booking-intro > p {
    max-width: 530px;

    margin-top: 22px;

    color: var(--gray);

    font-size: 0.98rem;
}

.booking-benefits {
    margin-top: 35px;

    display: grid;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(215, 170, 74, 0.08);

    border: 1px solid rgba(215, 170, 74, 0.15);

    color: var(--gold);
}

.benefit strong {
    display: block;

    font-size: 0.85rem;
}

.benefit span {
    display: block;

    margin-top: 2px;

    color: var(--gray);

    font-size: 0.72rem;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {
    position: relative;

    padding: 34px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.booking-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -150px;
    right: -100px;

    border-radius: 50%;

    background: rgba(215, 170, 74, 0.08);

    filter: blur(30px);
}

.booking-card-header {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid var(--border);
}

.booking-card-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--gold);
    color: var(--black);
}

.booking-card-header span {
    color: var(--gold);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.booking-card-header h3 {
    margin-top: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;
}


/* =========================================================
   FORM
========================================================= */

.booking-form {
    position: relative;

    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    color: #d2d2d2;

    font-size: 0.7rem;
    font-weight: 700;
}

.form-group label i {
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.1);

    outline: none;

    background: rgba(255, 255, 255, 0.045);

    color: var(--white);

    border-radius: 13px;

    padding: 14px 15px;

    font-size: 0.82rem;

    transition: var(--transition);
}

.form-group input {
    min-height: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #686868;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: rgba(215, 170, 74, 0.05);

    box-shadow:
        0 0 0 3px rgba(215, 170, 74, 0.07);
}


/* =========================================================
   FARE RESULT
========================================================= */

.fare-result {
    border-radius: 17px;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            rgba(215, 170, 74, 0.5),
            rgba(255, 255, 255, 0.05)
        );
}

.fare-result-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 18px;

    border-radius: 16px;

    background: #101010;
}

.fare-label {
    display: block;

    color: var(--gray);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.fare-result strong {
    display: block;

    margin-top: 3px;

    color: var(--gold-light);

    font-family: "Manrope", sans-serif;

    font-size: 1.1rem;
}

.fare-result i {
    font-size: 1.5rem;
    color: var(--gold);
}


/* =========================================================
   BOOKING BUTTON
========================================================= */

.booking-submit {
    width: 100%;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: #686868;

    font-size: 0.63rem;

    text-align: center;
}

.form-security i {
    color: var(--gold);
}


/* =========================================================
   MAP
========================================================= */

.contact-section {
    max-width: 1400px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap: 25px;
}


/* =========================================================
   VISUAL MAP
========================================================= */

.contact-map {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(215, 170, 74, 0.12),
            transparent 25%
        ),
        #101010;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    transform: perspective(500px) rotateX(30deg) scale(1.3);
}


/* =========================================================
   MAP ROUTE
========================================================= */

.map-route {
    position: absolute;

    inset: 0;
}

.map-line {
    position: absolute;

    width: 58%;
    height: 180px;

    left: 20%;
    top: 42%;

    border-top: 3px dashed var(--gold);

    border-radius: 50%;

    transform: rotate(-15deg);

    filter:
        drop-shadow(
            0 0 8px rgba(215, 170, 74, 0.35)
        );

    animation: routeGlow 2s infinite alternate;
}

@keyframes routeGlow {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.map-point {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 0.78rem;
    font-weight: 800;
}

.map-point span {
    width: 15px;
    height: 15px;

    display: block;

    border-radius: 50%;

    background: var(--gold);

    border: 4px solid #101010;

    box-shadow:
        0 0 0 3px var(--gold),
        0 0 30px rgba(215, 170, 74, 0.5);
}

.map-point.start {
    left: 15%;
    top: 38%;
}

.map-point.end {
    right: 13%;
    top: 50%;
}

.map-point.end span {
    background: var(--white);

    box-shadow:
        0 0 0 3px var(--white),
        0 0 25px rgba(255, 255, 255, 0.35);
}


/* =========================================================
   MAP CARD
========================================================= */

.map-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 17px;

    border-radius: 15px;

    background: rgba(7, 7, 7, 0.88);

    border: 1px solid var(--border);

    backdrop-filter: blur(15px);
}

.map-card-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--gold);

    color: var(--black);
}

.map-card small {
    display: block;

    color: var(--gray);

    font-size: 0.55rem;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.map-card strong {
    display: block;

    margin-top: 3px;

    font-size: 0.8rem;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
    position: relative;

    padding: 38px;

    display: flex;
    flex-direction: column;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #161616,
            #0c0c0c
        );

    border: 1px solid var(--border);

    transition: var(--transition);

    overflow: hidden;
}

.contact-card::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(215, 170, 74, 0.08);

    filter: blur(20px);
}

.contact-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(215, 170, 74, 0.3);

    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border-radius: 18px;

    background: rgba(215, 170, 74, 0.1);

    color: var(--gold-light);

    font-size: 1.5rem;
}

.contact-card h3 {
    margin-top: 13px;

    font-family: "Manrope", sans-serif;

    font-size: 2rem;
}

.contact-card p {
    max-width: 430px;

    margin-top: 12px;

    color: var(--gray);

    font-size: 0.88rem;
}

.contact-details {
    display: grid;

    gap: 13px;

    margin-top: 25px;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #c2c2c2;

    font-size: 0.75rem;
}

.contact-details i {
    color: var(--gold);
}

.contact-arrow {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;
    padding-top: 35px;

    color: var(--gold-light);

    font-size: 0.78rem;
    font-weight: 800;

    transition: var(--transition);
}

.contact-arrow:hover {
    gap: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    max-width: 1400px;
}

.about-container {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    aspect-ratio: 0.9;
}

.about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0, 0, 0, 0.55)
        );
}

.about-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

    padding: 22px;

    min-width: 190px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--black);

    box-shadow: var(--shadow);
}

.experience-card strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;
}

.experience-card span {
    display: block;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.experience-card small {
    display: block;

    margin-top: 5px;

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.about-content > p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--gray);

    font-size: 0.95rem;
}

.about-highlights {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin-top: 30px;
}

.about-highlights div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #cfcfcf;

    font-size: 0.78rem;
}

.about-highlights i {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(215, 170, 74, 0.12);

    color: var(--gold);

    font-size: 0.6rem;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    max-width: 1400px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 300px;

    padding: 27px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(215, 170, 74, 0.25);

    box-shadow: var(--shadow-gold);
}

.service-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #333;

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;
    font-weight: 800;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 17px;

    background: rgba(215, 170, 74, 0.09);

    color: var(--gold);

    font-size: 1.25rem;
}

.service-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 1.15rem;
}

.service-card p {
    margin-top: 10px;

    color: var(--gray);

    font-size: 0.78rem;
}

.service-card a {
    position: absolute;

    left: 27px;
    bottom: 25px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 800;
}

.service-card a i {
    transition: var(--transition);
}

.service-card a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   DESTINATIONS
========================================================= */

.destinations-section {
    max-width: 1400px;
}

.destinations-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.destination-card {
    overflow: hidden;

    border-radius: 24px;

    background: #111;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(215, 170, 74, 0.25);

    box-shadow: var(--shadow-gold);
}

.destination-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.destination-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.65)
        );
}

.destination-image img {
    height: 100%;
    object-fit: cover;

    transition: 0.7s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.destination-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 6px 9px;

    border-radius: 7px;

    background: rgba(0, 0, 0, 0.75);

    color: var(--gold-light);

    font-size: 0.55rem;
    font-weight: 800;

    letter-spacing: 1px;

    backdrop-filter: blur(10px);
}

.destination-content {
    padding: 22px;
}

.destination-content small {
    color: var(--gray);

    font-size: 0.57rem;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.destination-content h3 {
    margin-top: 5px;

    font-family: "Manrope", sans-serif;

    font-size: 1.3rem;
}

.destination-content p {
    min-height: 42px;

    margin-top: 7px;

    color: var(--gray);

    font-size: 0.72rem;
}

.destination-button {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 0;

    background: transparent;

    color: var(--gold-light);

    border-top: 1px solid var(--border);

    font-size: 0.72rem;
    font-weight: 800;
}

.destination-button i {
    transition: var(--transition);
}

.destination-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    max-width: 1200px;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.process-card {
    position: relative;

    padding: 32px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);

    text-align: center;

    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-7px);

    background:
        rgba(215, 170, 74, 0.04);
}

.process-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #353535;

    font-weight: 800;
}

.process-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background: rgba(215, 170, 74, 0.1);

    color: var(--gold);

    font-size: 1.3rem;
}

.process-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 1.2rem;
}

.process-card p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 0.76rem;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    width: min(
        calc(100% - 48px),
        1100px
    );

    margin: 0 auto;

    padding: 30px 0 110px;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    padding: 35px 20px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;

    color: var(--gold-light);

    font-family: "Manrope", sans-serif;

    font-size: 2rem;
}

.stat-item span {
    display: block;

    margin-top: 5px;

    color: var(--gray);

    font-size: 0.68rem;
}


/* =========================================================
   PREMIUM CTA
========================================================= */

.premium-cta {
    position: relative;

    min-height: 600px;

    display: grid;
    place-items: center;

    padding: 80px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.48)
        ),
        url("https://images.unsplash.com/photo-1465447142348-e9952c393450?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
}

.premium-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(215, 170, 74, 0.13),
            transparent 35%
        );
}

.premium-cta-container {
    position: relative;

    width: min(900px, 100%);

    text-align: center;
}

.premium-cta .section-label {
    justify-content: center;
}

.premium-cta h2 {
    margin-top: 18px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        3rem,
        7vw,
        6.5rem
    );

    line-height: 0.95;

    letter-spacing: -5px;
}

.premium-cta h2 span {
    color: var(--gold-light);
}

.premium-cta p {
    margin: 25px auto 30px;

    color: #d0d0d0;

    font-size: 0.95rem;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: grid;
    place-items: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;

    width: min(500px, 100%);

    padding: 35px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transform: translateY(20px) scale(0.96);

    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.06);

    color: var(--white);

    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
}

.modal-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: rgba(215, 170, 74, 0.1);

    color: var(--gold);

    font-size: 1.3rem;
}

.modal-label {
    display: block;

    margin-top: 25px;

    color: var(--gold);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.modal-location {
    margin-top: 7px;

    font-family: "Manrope", sans-serif;

    font-size: 2rem;
}

.modal-description {
    margin-top: 10px;

    color: var(--gray);

    font-size: 0.82rem;
}

.modal-details {
    display: grid;

    gap: 12px;

    margin-top: 25px;

    padding: 18px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.035);
}

.modal-details div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #c8c8c8;

    font-size: 0.74rem;
}

.modal-details i {
    color: var(--gold);
}

.modal-details strong {
    color: var(--gold-light);
}

.modal-actions {
    margin-top: 22px;
}

.modal-whatsapp {
    width: 100%;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 8000;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 1.55rem;

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.3);

    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);

    box-shadow:
        0 18px 45px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;

    right: 72px;

    padding: 8px 11px;

    border-radius: 8px;

    white-space: nowrap;

    background: #161616;

    border: 1px solid var(--border);

    color: white;

    font-size: 0.65rem;

    opacity: 0;

    pointer-events: none;

    transform: translateX(5px);

    transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 95px;

    z-index: 7900;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: rgba(20, 20, 20, 0.9);

    border: 1px solid var(--border);

    color: var(--gold);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 11000;

    max-width: 360px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    border-radius: 16px;

    background:
        rgba(20, 20, 20, 0.95);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.toast-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--gold);

    color: var(--black);
}

.toast strong {
    display: block;

    font-size: 0.78rem;
}

.toast span {
    display: block;

    margin-top: 2px;

    color: var(--gray);

    font-size: 0.68rem;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        0.7fr;

    gap: 80px;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 18px;

    color: var(--gray);

    font-size: 0.78rem;
}

.social-links {
    display: flex;
    gap: 9px;

    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.05);

    color: #aaa;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);

    transform: translateY(-3px);
}

.footer-links {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.footer-links h4 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 0.76rem;
}

.footer-links a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color: var(--gray);

    font-size: 0.7rem;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-bottom {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 60px auto 0;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: #5d5d5d;

    font-size: 0.62rem;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-container {
        grid-template-columns:
            1fr
            360px;

        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(
            3rem,
            6vw,
            5rem
        );
    }

    .booking-container {
        gap: 40px;
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-container {
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: absolute;

        top: 84px;
        left: 0;

        width: 100%;

        display: block;

        background:
            rgba(7, 7, 7, 0.97);

        border-bottom: 1px solid var(--border);

        backdrop-filter: blur(20px);

        max-height: 0;

        overflow: hidden;

        transition:
            max-height 0.45s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    .mobile-menu-inner {
        width: min(
            calc(100% - 48px),
            600px
        );

        margin: auto;

        padding: 20px 0 25px;

        display: grid;

        gap: 5px;
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        gap: 13px;

        padding: 14px;

        border-radius: 12px;

        color: #c9c9c9;

        font-size: 0.82rem;
        font-weight: 700;

        transition: var(--transition);
    }

    .mobile-menu a i {
        width: 20px;
        color: var(--gold);
    }

    .mobile-menu a:hover {
        background: rgba(215, 170, 74, 0.08);
        color: var(--white);
    }

    .hero {
        min-height: auto;

        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-route-card {
        max-width: 500px;
        width: 100%;
    }

    .booking-container,
    .contact-grid,
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 600px;
    }

    .about-content {
        max-width: 750px;
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE — 650px
========================================================= */

@media (max-width: 650px) {

    html {
        scroll-padding-top: 75px;
    }

    .header-container {
        width: calc(100% - 28px);
        height: 72px;
    }

    .mobile-menu {
        top: 72px;
    }

    .brand-symbol {
        width: 39px;
        height: 39px;
    }

    .brand-text {
        font-size: 0.8rem;
    }

    .brand-text strong {
        font-size: 0.62rem;
    }

    .hero {
        padding:
            125px
            0
            65px;
    }

    .hero-container,
    .section {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: clamp(
            2.75rem,
            13vw,
            4rem
        );

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        gap: 11px;
    }

    .hero-route-card {
        padding: 22px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        font-size: 2.35rem;
        letter-spacing: -2px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .booking-card {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-map {
        min-height: 420px;
    }

    .map-line {
        width: 58%;
        left: 21%;
    }

    .map-point.start {
        left: 10%;
    }

    .map-point.end {
        right: 7%;
    }

    .map-card {
        left: 15px;
        bottom: 15px;
    }

    .contact-card {
        padding: 27px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .destinations-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }

    .destination-image {
        height: 210px;
    }

    .stats-section {
        width: calc(100% - 28px);
        padding-bottom: 80px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .premium-cta {
        min-height: 500px;
    }

    .premium-cta h2 {
        font-size: clamp(
            3rem,
            15vw,
            5rem
        );

        letter-spacing: -3px;
    }

    .footer-container,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .floating-whatsapp {
        right: 17px;
        bottom: 17px;

        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 17px;
        bottom: 82px;
    }

}


/* =========================================================
   RESPONSIVE — 420px
========================================================= */

@media (max-width: 420px) {

    .hero {
        padding-top: 115px;
    }

    .hero-badge {
        font-size: 0.62rem;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-overline {
        font-size: 0.62rem;
        letter-spacing: 1.7px;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .section-heading {
        font-size: 2.05rem;
    }

    .booking-card-header h3 {
        font-size: 1.2rem;
    }

    .booking-card-header {
        align-items: flex-start;
    }

    .fare-result-inner {
        padding: 13px;
    }

    .contact-map {
        min-height: 360px;
    }

    .map-card {
        max-width: calc(100% - 30px);
    }

    .map-card strong {
        font-size: 0.7rem;
    }

    .experience-card {
        right: 12px;
        bottom: 15px;

        min-width: 150px;

        padding: 17px;
    }

    .experience-card strong {
        font-size: 1.1rem;
    }

    .premium-cta {
        min-height: 460px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-location {
        font-size: 1.7rem;
    }

    .toast {
        left: 14px;
        right: 14px;
        bottom: 85px;
        max-width: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}