:root {
    --navy-950: #020814;
    --navy-900: #061326;
    --navy-800: #0a2342;

    --blue-700: #0868df;
    --blue-600: #0b82f4;
    --blue-500: #21a0ff;
    --blue-300: #7ccfff;

    --white: #ffffff;
    --black: #020408;

    --text-dark: #071426;
    --text-muted: #66758b;

    --font-title: "Poppins", sans-serif;
--font-body: "DM Sans", sans-serif;

    --container: 1440px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow-blue:
        0 20px 55px rgba(11, 130, 244, 0.28);

    --shadow-dark:
        0 35px 90px rgba(0, 0, 0, 0.38);
}

/* Reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
}

body,
button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    border: 0;
    outline: 0;
}

button,
select {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

/* Buttons */

.button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 25px;

    border-radius: 999px;

    font-family: var(--font-body);
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow: var(--shadow-blue);
}

.button--ghost {
    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.17);

    background:
        rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);
}

.button--large {
    min-height: 60px;
    padding-inline: 30px;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    padding: 17px 0;

    color: var(--white);

    background:
        rgba(2, 8, 20, 0.9);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo-wrap {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 5px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.08);
}

.brand__logo {
    width: 112%;
    height: 112%;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand__text small {
    margin-top: 6px;

    color: var(--blue-300);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
    font-weight: 600;

    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--blue-500);

    transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone > i {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--blue-300);

    background:
        rgba(32, 160, 255, 0.14);
}

.header-phone span {
    display: flex;
    flex-direction: column;
}

.header-phone small {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.header-phone strong {
    margin-top: 3px;

    font-size: 13px;
    font-weight: 600;
}

.menu-toggle {
    width: 48px;
    height: 48px;

    display: none;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
    width: 20px;
    height: 2px;

    display: block;

    border-radius: 999px;

    background: var(--white);
}

.menu-toggle span + span {
    margin-top: 6px;
}

/* Hero */

.hero {
    position: relative;

    min-height: 100vh;
    overflow: hidden;

    padding-top: 86px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 76% 34%,
            rgba(8, 108, 240, 0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 18% 88%,
            rgba(0, 198, 255, 0.11),
            transparent 27%
        ),
        linear-gradient(
            125deg,
            var(--navy-950),
            var(--navy-900) 52%,
            #082754
        );
}

.hero__background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015),
            transparent
        );
}

.hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.hero__main {
    position: relative;
    z-index: 3;

    min-height: 730px;

    display: grid;
    grid-template-columns:
        minmax(420px, 0.82fr)
        minmax(560px, 1.18fr);

    align-items: center;
    gap: 58px;

    padding-top: 70px;
    padding-bottom: 150px;
}

/* Hero content */

.hero__content {
    position: relative;
    z-index: 5;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 26px;

    color: var(--blue-300);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.hero__eyebrow span {
    width: 42px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--blue-700),
            var(--blue-300)
        );
}

.hero h1 {
    max-width: 680px;

    font-family: var(--font-title);

    font-size:
        clamp(66px, 6.2vw, 108px);

    font-weight: 800;

    line-height: 0.92;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1.5px rgba(255, 255, 255, 0.75);
}

.hero__description {
    max-width: 590px;

    margin-top: 29px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 16px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.hero__stats {
    display: flex;
    gap: 40px;

    margin-top: 46px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-family: var(--font-title);
    font-size: 23px;
    font-weight: 700;
}

.hero-stat span {
    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.46);

    font-size: 10px;
}

/* Hero card */

.hero__media {
    position: relative;
}

.hero-card {
    position: relative;

    width: 100%;
    height: 590px;

    overflow: hidden;

    border-radius: 34px;

    box-shadow: var(--shadow-dark);
}

.hero-card::before {
    content: "";

    position: absolute;
    z-index: 4;
    inset: 0;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: inherit;

    pointer-events: none;
}

.hero-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    transition:
        transform 0.8s ease;
}

.hero-card:hover img {
    transform: scale(1.06);
}

.hero-card__overlay {
    position: absolute;
    z-index: 2;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(1, 8, 21, 0.94),
            rgba(1, 8, 21, 0.24) 55%,
            rgba(1, 8, 21, 0.02)
        );
}

.hero-card__number {
    position: absolute;
    z-index: 3;

    top: 28px;
    right: 28px;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;

    background:
        rgba(3, 15, 34, 0.45);

    backdrop-filter: blur(14px);
}

.hero-card__content {
    position: absolute;
    z-index: 3;

    left: 34px;
    bottom: 34px;
}

.hero-card__content span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-card__content h2 {
    max-width: 470px;

    margin-top: 10px;

    font-family: var(--font-title);

    font-size: 38px;
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -0.035em;
}

/* Booking bar */

.booking-bar {
    position: relative;
    z-index: 10;

    margin-top: -100px;
    margin-bottom: 44px;

    padding: 24px 28px;

    border:
        1px solid rgba(255, 255, 255, 0.7);

    border-radius: 26px;

    color: var(--text-dark);

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 30px 80px rgba(0, 8, 28, 0.38);

    backdrop-filter: blur(20px);
}

.booking-bar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 21px;
    padding-bottom: 18px;

    border-bottom:
        1px solid #dfe7f2;
}

.booking-bar__header span {
    color: var(--blue-700);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.booking-bar__header h2 {
    margin-top: 6px;

    font-family: var(--font-title);

    font-size: 24px;
    font-weight: 700;
}

.booking-bar__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    color: var(--blue-700);

    background: #eaf5ff;
}

.booking-bar form {
    display: grid;
    grid-template-columns:
        minmax(170px, 1.1fr)
        minmax(165px, 0.9fr)
        minmax(165px, 0.9fr)
        minmax(220px, 1.2fr)
        minmax(205px, 0.85fr);

    align-items: end;
    gap: 15px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.input-control {
    position: relative;
}

.input-control > i {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 16px;

    transform:
        translateY(-50%);

    color: var(--blue-700);

    font-size: 13px;
}

.input-control input,
.input-control select {
    width: 100%;
    height: 54px;

    padding: 0 42px;

    border:
        1px solid #d6e2f0;

    border-radius: 14px;

    color: var(--text-dark);

    background: #f7faff;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.input-control input:focus,
.input-control select:focus {
    border-color: var(--blue-500);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(32, 160, 255, 0.1);
}

.booking-bar__button {
    width: 100%;
    height: 54px;
}

.booking-bar__footer {
    margin-top: 14px;

    color: var(--text-muted);

    font-size: 10px;
    text-align: center;
}

.booking-bar__footer i {
    margin-right: 6px;
    color: var(--blue-700);
}

/* Hero strip */

.hero-strip {
    position: relative;
    z-index: 5;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(2, 8, 18, 0.45);

    backdrop-filter: blur(14px);
}

.hero-strip__inner {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-strip__inner i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--blue-500);

    box-shadow:
        0 0 14px var(--blue-500);
}

/* Responsive */

@media (max-width: 1240px) {
    .header-phone {
        display: none;
    }

    .hero__main {
        grid-template-columns:
            minmax(360px, 0.8fr)
            minmax(500px, 1.2fr);

        gap: 40px;
    }

    .booking-bar form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .booking-bar__button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 940px) {
    .site-header__actions .button {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 12px);
        right: 24px;
        left: 24px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 18px;

        border:
            1px solid rgba(255, 255, 255, 0.11);

        border-radius: 22px;

        background:
            rgba(3, 10, 22, 0.97);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.28);

        backdrop-filter: blur(18px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .hero__main {
        grid-template-columns: 1fr;

        gap: 48px;

        padding-top: 70px;
        padding-bottom: 160px;
    }

    .hero-card {
        height: 480px;
    }

    .booking-bar {
        margin-top: -110px;
    }
}

@media (max-width: 640px) {
    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .brand__text {
        display: none;
    }

    .hero {
        padding-top: 78px;
    }

    .hero__main {
        min-height: auto;

        padding-top: 50px;
        padding-bottom: 145px;
    }

    .hero h1 {
        font-size:
            clamp(50px, 16vw, 72px);
    }

    .hero__description {
        font-size: 15px;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__stats {
        display: grid;
        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 9px;
    }

    .hero-card {
        height: 370px;

        border-radius: 24px;
    }

    .hero-card__content {
        left: 22px;
        bottom: 22px;
    }

    .hero-card__content h2 {
        font-size: 28px;
    }

    .hero-card__number {
        top: 18px;
        right: 18px;
    }

    .booking-bar {
        margin-top: -95px;

        padding: 22px 18px;

        border-radius: 24px;
    }

    .booking-bar form {
        grid-template-columns: 1fr;
    }

    .booking-bar__button {
        grid-column: auto;
    }

    .hero-strip__inner {
        min-height: auto;

        flex-wrap: wrap;
        gap: 18px;

        padding: 24px 0;
    }

    .hero-strip__inner i {
        display: none;
    }
}
html,
body,
button,
input,
select,
textarea {
    font-family: var(--font-body) !important;
}

.site-header,
.main-nav,
.header-phone,
.hero__description,
.hero-stat,
.booking-bar,
.form-group,
.input-control {
    font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand__text strong,
.hero-stat strong,
.button {
    font-family: var(--font-title) !important;
}

.hero h1 {
    font-weight: 800;
}

.hero h1 span {
    font-family: var(--font-title) !important;
}
/* Why Montero */

.why-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f8ff 100%
        );
}

.why-section::before {
    content: "";

    position: absolute;
    top: 80px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(33, 160, 255, 0.08);

    filter: blur(10px);
}

.section-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 64px;
}

.section-heading__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: var(--blue-700);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-heading__eyebrow span {
    width: 42px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--blue-700),
            var(--blue-300)
        );
}

.section-heading__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    align-items: end;
    gap: 60px;
}

.section-heading h2 {
    max-width: 850px;

    color: var(--text-dark);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-heading h2 span {
    display: block;
    color: var(--blue-600);
}

.section-heading p {
    max-width: 490px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.8;
}

.why-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(420px, 0.88fr);

    align-items: stretch;
    gap: 34px;
}

.why-media {
    position: relative;

    min-height: 670px;
    overflow: hidden;

    border-radius: 34px;

    background: var(--navy-900);

    box-shadow:
        0 35px 90px rgba(8, 31, 65, 0.16);
}

.why-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.why-media:hover img {
    transform: scale(1.05);
}

.why-media__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 12, 28, 0.88),
            rgba(2, 12, 28, 0.05) 62%
        );
}

.why-media__label {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 19px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 18px;

    color: var(--white);

    background:
        rgba(3, 14, 31, 0.55);

    backdrop-filter: blur(16px);
}

.why-media__label i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--blue-300);

    background:
        rgba(33, 160, 255, 0.15);
}

.why-media__label div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-media__label span {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.why-media__label strong {
    font-size: 14px;
    font-weight: 600;
}

.why-media__experience {
    position: absolute;
    top: 28px;
    right: 28px;

    width: 150px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: var(--white);
    text-align: center;

    background:
        rgba(3, 14, 31, 0.5);

    backdrop-filter: blur(18px);
}

.why-media__experience strong {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 800;
}

.why-media__experience span {
    max-width: 90px;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 10px;
    line-height: 1.4;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-feature {
    min-height: 235px;

    padding: 26px;

    border: 1px solid #dfe9f5;
    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.88);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-7px);

    border-color:
        rgba(33, 160, 255, 0.5);

    box-shadow:
        0 24px 55px
        rgba(13, 90, 175, 0.12);
}

.why-feature__icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 17px;

    color: var(--blue-700);
    font-size: 18px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #dbeeff
        );
}

.why-feature span {
    display: block;

    margin-bottom: 9px;

    color: var(--blue-600);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.why-feature h3 {
    margin-bottom: 12px;

    color: var(--text-dark);

    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
}

.why-feature p {
    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.7;
}

.why-link {
    grid-column: 1 / -1;

    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 26px;

    border-radius: 22px;

    color: var(--white);
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--blue-700)
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.why-link:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px
        rgba(8, 104, 223, 0.22);
}

.why-link i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);
}

.why-numbers {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 34px;

    border: 1px solid #dfe9f5;
    border-radius: 27px;

    background: var(--white);

    box-shadow:
        0 20px 60px
        rgba(8, 31, 65, 0.08);
}

.why-number {
    position: relative;

    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-number:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 34px;
    right: 0;
    bottom: 34px;

    width: 1px;

    background: #e2eaf4;
}

.why-number strong {
    color: var(--navy-900);

    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
}

.why-number span {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;
}

/* Why responsive */

@media (max-width: 1050px) {
    .section-heading__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-media {
        min-height: 540px;
    }
}

@media (max-width: 720px) {
    .why-section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size:
            clamp(40px, 12vw, 56px);
    }

    .why-media {
        min-height: 440px;
        border-radius: 26px;
    }

    .why-media__experience {
        width: 116px;
        height: 116px;
    }

    .why-media__experience strong {
        font-size: 28px;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-link {
        grid-column: auto;
    }

    .why-numbers {
        grid-template-columns: 1fr 1fr;
    }

    .why-number:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-media {
        min-height: 380px;
    }

    .why-media__experience {
        top: 18px;
        right: 18px;
    }

    .why-media__label {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .why-numbers {
        grid-template-columns: 1fr;
    }

    .why-number:not(:last-child)::after {
        top: auto;
        right: 25px;
        bottom: 0;
        left: 25px;

        width: auto;
        height: 1px;
    }
}
/* Featured Fleet */

.fleet-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background: var(--navy-950);
}

.fleet-section::before {
    content: "";

    position: absolute;
    top: -180px;
    left: 40%;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        rgba(11, 130, 244, 0.12);

    filter: blur(100px);
}

.fleet-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    align-items: end;
    gap: 60px;

    margin-bottom: 58px;
}

.fleet-heading h2 {
    max-width: 850px;

    color: var(--white);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.fleet-heading h2 span {
    display: block;
    color: var(--blue-500);
}

.fleet-heading__side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.fleet-heading__side p {
    max-width: 480px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 15px;
    line-height: 1.8;
}

.fleet-heading__side a {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--white);

    font-weight: 700;
}

.fleet-heading__side a i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(33, 160, 255, 0.15);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.fleet-heading__side a:hover i {
    transform: translateX(4px);
    background: var(--blue-600);
}

.fleet-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.vehicle-card {
    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(33, 160, 255, 0.48);
}

.vehicle-card__media {
    position: relative;

    height: 310px;
    overflow: hidden;

    background: var(--navy-900);
}

.vehicle-card__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 8, 20, 0.72),
            transparent 54%
        );
}

.vehicle-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s ease;
}

.vehicle-card:hover .vehicle-card__media img {
    transform: scale(1.07);
}

.vehicle-card__badge {
    position: absolute;
    z-index: 3;

    top: 20px;
    left: 20px;

    padding: 9px 13px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 999px;

    color: var(--white);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    background:
        rgba(3, 14, 31, 0.55);

    backdrop-filter: blur(14px);
}

.vehicle-card__favorite {
    position: absolute;
    z-index: 3;

    top: 18px;
    right: 18px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(3, 14, 31, 0.52);

    backdrop-filter: blur(14px);

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.vehicle-card__favorite:hover {
    color: var(--blue-300);
    background: var(--blue-700);
}

.vehicle-card__body {
    padding: 25px;
}

.vehicle-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.vehicle-card__top > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.vehicle-card__top h3 {
    margin-top: 8px;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 22px;
    font-weight: 700;

    line-height: 1.2;
}

.vehicle-card__price {
    flex-shrink: 0;

    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vehicle-card__price strong {
    color: var(--white);

    font-family: var(--font-title);

    font-size: 25px;
    font-weight: 700;
}

.vehicle-card__price span {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 10px;
}

.vehicle-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 24px;
    padding: 19px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.vehicle-card__specs span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 10px;
}

.vehicle-card__specs i {
    color: var(--blue-300);
}

.vehicle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-top: 22px;
}

.vehicle-card__footer > a:first-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;
}

.vehicle-card__footer > a:first-child i {
    color: var(--blue-300);

    transition:
        transform 0.25s ease;
}

.vehicle-card__footer > a:first-child:hover i {
    transform: translateX(4px);
}

.vehicle-card__reserve {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 999px;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow:
        0 12px 30px rgba(11, 130, 244, 0.22);
}

/* Fleet responsive */

@media (max-width: 1080px) {
    .fleet-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fleet-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .fleet-section {
        padding: 90px 0;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card__media {
        height: 280px;
    }
}
/* Delivery Section */

.delivery-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #eaf5ff 0%,
            #ffffff 48%,
            #eef7ff 100%
        );
}

.delivery-section::before {
    content: "";

    position: absolute;
    top: -220px;
    left: -170px;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    background: rgba(33, 160, 255, 0.1);
    filter: blur(20px);
}

.delivery-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(420px, 0.9fr)
        minmax(520px, 1.1fr);

    align-items: center;
    gap: 70px;
}

.delivery-content h2 {
    max-width: 740px;

    color: var(--text-dark);

    font-family: var(--font-title);
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.delivery-content h2 span {
    display: block;
    color: var(--blue-600);
}

.delivery-content > p {
    max-width: 600px;

    margin-top: 25px;

    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.delivery-route {
    position: relative;

    display: grid;
    gap: 15px;

    margin: 38px 0;
}

.delivery-route::before {
    content: "";

    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 28px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--blue-500),
            rgba(33, 160, 255, 0.1)
        );
}

.delivery-stop {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;

    padding: 18px 20px;

    border: 1px solid #dce8f5;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.82);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.delivery-stop:hover {
    transform: translateX(7px);

    border-color: rgba(33, 160, 255, 0.5);

    box-shadow:
        0 18px 45px rgba(13, 90, 175, 0.1);
}

.delivery-stop__icon {
    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--white);
    font-size: 18px;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow:
        0 14px 30px rgba(11, 130, 244, 0.22);
}

.delivery-stop span {
    display: block;

    margin-bottom: 5px;

    color: var(--blue-600);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.delivery-stop h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
}

.delivery-stop p {
    margin-top: 5px;

    color: var(--text-muted);
    font-size: 12px;
}

.delivery-visual {
    position: relative;
}

.delivery-map {
    position: relative;

    min-height: 720px;
    overflow: hidden;

    border-radius: 36px;

    background: var(--navy-900);

    box-shadow:
        0 40px 90px rgba(8, 31, 65, 0.18);
}

.delivery-map::before {
    content: "";

    position: absolute;
    z-index: 5;
    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;

    pointer-events: none;
}

.delivery-map img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.delivery-map__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 10, 25, 0.88),
            rgba(2, 10, 25, 0.1) 70%
        );
}

.map-point {
    position: absolute;
    z-index: 4;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;

    color: var(--white);
    font-size: 11px;
    font-weight: 600;

    background: rgba(2, 13, 31, 0.56);

    backdrop-filter: blur(14px);
}

.map-point i {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--blue-300);

    box-shadow:
        0 0 0 5px rgba(33, 160, 255, 0.16),
        0 0 20px var(--blue-500);
}

.map-point--airport {
    top: 20%;
    left: 18%;
}

.map-point--hotel {
    top: 38%;
    right: 12%;
}

.map-point--resort {
    top: 58%;
    left: 16%;
}

.map-point--cap-cana {
    top: 71%;
    right: 18%;
}

.delivery-map__card {
    position: absolute;
    z-index: 4;

    right: 28px;
    bottom: 28px;
    left: 28px;

    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;

    color: var(--white);

    background: rgba(3, 14, 31, 0.7);

    backdrop-filter: blur(18px);
}

.delivery-map__card > span {
    display: block;

    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.delivery-map__card > strong {
    display: block;

    margin-top: 8px;

    font-family: var(--font-title);
    font-size: 25px;
    line-height: 1.2;
}

.delivery-map__card div {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.delivery-map__card i {
    color: var(--blue-300);
}

/* Delivery responsive */

@media (max-width: 1060px) {
    .delivery-layout {
        grid-template-columns: 1fr;
    }

    .delivery-map {
        min-height: 580px;
    }
}

@media (max-width: 680px) {
    .delivery-section {
        padding: 90px 0;
    }

    .delivery-content h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .delivery-stop {
        grid-template-columns: 52px 1fr;
    }

    .delivery-stop__icon {
        width: 50px;
        height: 50px;
    }

    .delivery-map {
        min-height: 470px;
        border-radius: 26px;
    }

    .map-point {
        font-size: 9px;
        padding: 8px 10px;
    }

    .delivery-map__card {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }
}
/* Services Section */

.services-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8fd 100%
        );
}

.services-section::before {
    content: "";

    position: absolute;
    right: -180px;
    bottom: -180px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        rgba(33, 160, 255, 0.08);

    filter: blur(30px);
}

.services-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    align-items: end;
    gap: 60px;

    margin-bottom: 58px;
}

.services-heading h2 {
    max-width: 900px;

    color: var(--text-dark);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.services-heading h2 span {
    display: block;
    color: var(--blue-600);
}

.services-heading > p {
    max-width: 500px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.8;
}

.services-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;

    min-height: 330px;

    padding: 34px;

    border:
        1px solid #dfe9f5;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        0 22px 60px rgba(8, 31, 65, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(33, 160, 255, 0.48);

    box-shadow:
        0 30px 70px rgba(8, 90, 175, 0.14);
}

.service-card--large {
    min-height: 510px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(33, 160, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.service-card--wide {
    min-height: 330px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );
}

.service-card__number {
    position: absolute;
    top: 24px;
    right: 28px;

    color:
        rgba(7, 20, 38, 0.15);

    font-family: var(--font-title);

    font-size: 72px;
    font-weight: 800;

    line-height: 1;
}

.service-card--large .service-card__number,
.service-card--wide .service-card__number {
    color:
        rgba(255, 255, 255, 0.1);
}

.service-card__icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 34px;

    border-radius: 19px;

    color: var(--blue-700);
    font-size: 21px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #dceeff
        );
}

.service-card--large .service-card__icon,
.service-card--wide .service-card__icon {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
}

.service-card__content {
    position: relative;
    z-index: 2;
}

.service-card__content > span {
    display: block;

    margin-bottom: 12px;

    color: var(--blue-600);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.service-card--large .service-card__content > span,
.service-card--wide .service-card__content > span {
    color: var(--blue-300);
}

.service-card__content h3 {
    max-width: 520px;

    color: var(--text-dark);

    font-family: var(--font-title);

    font-size:
        clamp(26px, 3vw, 44px);

    font-weight: 700;

    line-height: 1.08;
    letter-spacing: -0.04em;
}

.service-card--large .service-card__content h3,
.service-card--wide .service-card__content h3 {
    color: var(--white);
}

.service-card__content p {
    max-width: 600px;

    margin-top: 18px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.75;
}

.service-card--large .service-card__content p,
.service-card--wide .service-card__content p {
    color:
        rgba(255, 255, 255, 0.64);
}

.service-card__content a {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-top: 28px;

    color: var(--blue-700);

    font-size: 13px;
    font-weight: 700;
}

.service-card--large .service-card__content a,
.service-card--wide .service-card__content a {
    color: var(--white);
}

.service-card__content a i {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(33, 160, 255, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.service-card--large .service-card__content a i,
.service-card--wide .service-card__content a i {
    background:
        rgba(255, 255, 255, 0.12);
}

.service-card__content a:hover i {
    transform: translateX(5px);
}

/* Services responsive */

@media (max-width: 980px) {
    .services-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card--large,
    .service-card--wide {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 90px 0;
    }

    .services-heading h2 {
        font-size:
            clamp(40px, 12vw, 58px);
    }

    .service-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 25px;
    }

    .service-card__number {
        font-size: 55px;
    }
}
/* Testimonials */

.testimonials-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(33, 160, 255, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.testimonials-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    align-items: end;
    gap: 60px;

    margin-bottom: 58px;
}

.testimonials-heading h2 {
    max-width: 850px;

    color: var(--white);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.testimonials-heading h2 span {
    display: block;
    color: var(--blue-500);
}

.testimonials-heading > p {
    max-width: 500px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 16px;
    line-height: 1.8;
}

.testimonials-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.testimonial-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(14px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(33, 160, 255, 0.48);

    background:
        rgba(255, 255, 255, 0.09);
}

.testimonial-card--featured {
    background:
        linear-gradient(
            145deg,
            rgba(11, 130, 244, 0.28),
            rgba(255, 255, 255, 0.07)
        );
}

.testimonial-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-card__rating {
    display: flex;
    gap: 5px;

    color: #ffd36b;
    font-size: 13px;
}

.testimonial-card__top > span {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.testimonial-card blockquote {
    margin: 45px 0;

    color: var(--white);

    font-family: var(--font-title);

    font-size: 22px;
    font-weight: 600;

    line-height: 1.55;
    letter-spacing: -0.025em;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );
}

.testimonial-card__author > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-card__author strong {
    color: var(--white);

    font-size: 13px;
    font-weight: 700;
}

.testimonial-card__author span {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 10px;
}

/* Testimonials responsive */

@media (max-width: 980px) {
    .testimonials-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 90px 0;
    }

    .testimonials-heading h2 {
        font-size:
            clamp(40px, 12vw, 58px);
    }

    .testimonial-card {
        min-height: auto;
        padding: 25px;
    }

    .testimonial-card blockquote {
        margin: 34px 0;
        font-size: 19px;
    }
}
/* CTA */

.cta-section{

    padding:140px 0;

    background:#ffffff;

}

.cta-box{

    display:grid;

    grid-template-columns:1fr 520px;

    overflow:hidden;

    border-radius:36px;

    background:
    linear-gradient(
        135deg,
        var(--navy-950),
        var(--navy-800)
    );

    box-shadow:
    0 40px 90px rgba(0,0,0,.20);

}

.cta-content{

    padding:80px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.cta-tag{

    color:var(--blue-300);

    font-size:11px;

    text-transform:uppercase;

    letter-spacing:.18em;

    font-weight:700;

}

.cta-content h2{

    margin-top:20px;

    color:white;

    font-family:var(--font-title);

    font-size:62px;

    line-height:1;

}

.cta-content h2 span{

    display:block;

    color:var(--blue-500);

}

.cta-content p{

    max-width:540px;

    margin-top:28px;

    color:rgba(255,255,255,.62);

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.cta-image{

    height:100%;

}

.cta-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}
/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;

    padding: 100px 0 30px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #010611 0%,
            var(--navy-950) 48%,
            #061c3a 100%
        );
}

.site-footer::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(33, 160, 255, 0.72),
            transparent
        );
}

.site-footer__glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
    filter: blur(100px);
}

.site-footer__glow--one {
    top: -190px;
    left: -160px;

    width: 430px;
    height: 430px;

    background:
        rgba(11, 130, 244, 0.15);
}

.site-footer__glow--two {
    right: -180px;
    bottom: -210px;

    width: 500px;
    height: 500px;

    background:
        rgba(33, 160, 255, 0.1);
}

.site-footer__top {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(290px, 0.75fr)
        minmax(0, 1.55fr);

    gap: 85px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand__identity {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-brand__logo-wrap {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    padding: 7px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);
}

.footer-brand__logo-wrap img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.footer-brand__text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.footer-brand__text strong {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-brand__text small {
    margin-top: 8px;

    color: var(--blue-300);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.34em;
}

.footer-brand > p {
    margin-top: 28px;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 14px;
    line-height: 1.85;
}

.footer-socials {
    display: flex;
    gap: 11px;

    margin-top: 30px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    color:
        rgba(255, 255, 255, 0.78);

    background:
        rgba(255, 255, 255, 0.05);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-5px);

    color: var(--white);

    border-color:
        rgba(33, 160, 255, 0.55);

    background: var(--blue-700);
}

.footer-links {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 38px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 25px;

    color: var(--white);

    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
}

.footer-column > a {
    margin-bottom: 15px;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 12px;
    line-height: 1.45;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column > a:hover {
    transform: translateX(4px);
    color: var(--blue-300);
}

.footer-column--contact {
    gap: 14px;
}

.footer-column--contact h3 {
    margin-bottom: 11px;
}

.footer-column--contact > a,
.footer-contact-item {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 0;
    padding: 12px 0;

    color:
        rgba(255, 255, 255, 0.72);
}

.footer-column--contact > a > i,
.footer-contact-item > i {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--blue-300);

    background:
        rgba(33, 160, 255, 0.1);
}

.footer-column--contact span,
.footer-contact-item span {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 5px;

    font-size: 11px;
    overflow-wrap: anywhere;
}

.footer-column--contact small,
.footer-contact-item small {
    color:
        rgba(255, 255, 255, 0.38);

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-footer__divider {
    position: relative;
    z-index: 2;

    height: 1px;

    margin: 65px 0 28px;

    background:
        rgba(255, 255, 255, 0.08);
}

.site-footer__bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-footer__bottom > p {
    color:
        rgba(255, 255, 255, 0.4);

    font-size: 10px;
}

.footer-atlas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-atlas > span {
    color:
        rgba(255, 255, 255, 0.32);

    font-size: 8px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-atlas > div {
    display: flex;
    flex-direction: column;

    padding-left: 12px;

    border-left:
        1px solid rgba(255, 255, 255, 0.11);
}

.footer-atlas strong {
    color: var(--white);

    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.footer-atlas small {
    margin-top: 3px;

    color: var(--blue-300);

    font-size: 7px;
    letter-spacing: 0.08em;
}

/* Footer responsive */

@media (max-width: 1100px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .footer-brand {
        max-width: 600px;
    }
}

@media (max-width: 800px) {
    .footer-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 30px;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 75px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer__divider {
        margin-top: 48px;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   VEHICLES PAGE
========================= */

.fleet-page {
    background: #f4f8fd;
}

/* Hero */

.fleet-hero {
    position: relative;
    overflow: hidden;

    padding: 180px 0 105px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 26%,
            rgba(33, 160, 255, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.fleet-hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.fleet-hero__content {
    position: relative;
    z-index: 2;
}

.fleet-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--blue-300);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.fleet-hero__eyebrow span {
    width: 42px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--blue-700),
            var(--blue-300)
        );
}

.fleet-hero h1 {
    max-width: 980px;

    margin-top: 25px;

    font-family: var(--font-title);

    font-size:
        clamp(58px, 7vw, 112px);

    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -0.055em;
}

.fleet-hero h1 span {
    display: block;
    color: var(--blue-500);
}

.fleet-hero > .container > p {
    max-width: 690px;

    margin-top: 30px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 16px;
    line-height: 1.8;
}

.fleet-hero__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;

    margin-top: 42px;
}

.fleet-hero__summary div {
    display: flex;
    flex-direction: column;
}

.fleet-hero__summary strong {
    font-family: var(--font-title);
    font-size: 27px;
    font-weight: 800;
}

.fleet-hero__summary span {
    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 10px;
}

/* Catalog */

.fleet-catalog {
    padding: 105px 0 130px;
}

.fleet-toolbar {
    display: grid;
    grid-template-columns:
        minmax(260px, 0.6fr)
        minmax(620px, 1.4fr);

    align-items: end;
    gap: 40px;

    padding: 28px;

    border: 1px solid #dbe6f2;
    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 24px 70px rgba(8, 31, 65, 0.09);
}

.fleet-toolbar__heading > span {
    color: var(--blue-700);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.fleet-toolbar__heading h2 {
    margin-top: 8px;

    font-family: var(--font-title);
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.fleet-toolbar__controls {
    display: grid;
    grid-template-columns:
        minmax(250px, 1.2fr)
        minmax(180px, 0.8fr)
        minmax(190px, 0.8fr);

    gap: 13px;
}

.fleet-search {
    position: relative;
}

.fleet-search i {
    position: absolute;
    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--blue-700);
}

.fleet-search input,
.fleet-toolbar select {
    width: 100%;
    height: 54px;

    border: 1px solid #d7e2ee;
    border-radius: 15px;

    color: var(--text-dark);
    background: #f7faff;
}

.fleet-search input {
    padding: 0 18px 0 48px;
}

.fleet-toolbar select {
    padding: 0 16px;
}

.fleet-search input:focus,
.fleet-toolbar select:focus {
    border-color: var(--blue-500);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(33, 160, 255, 0.1);
}

.fleet-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin: 32px 0 24px;
}

.fleet-result-bar p {
    color: var(--text-muted);
    font-size: 13px;
}

.fleet-result-bar strong {
    color: var(--text-dark);
}

.fleet-result-bar button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--blue-700);

    font-size: 12px;
    font-weight: 700;

    background: transparent;
}

.fleet-page-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

/* Vehicle cards */

.fleet-item {
    overflow: hidden;

    border: 1px solid #dbe6f2;
    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 24px 65px rgba(8, 31, 65, 0.08);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.fleet-item:hover {
    transform: translateY(-9px);

    border-color:
        rgba(33, 160, 255, 0.5);

    box-shadow:
        0 35px 75px rgba(8, 90, 175, 0.14);
}

.fleet-item__media {
    position: relative;

    height: 300px;
    overflow: hidden;

    background: var(--navy-900);
}

.fleet-item__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 8, 20, 0.65),
            transparent 55%
        );
}

.fleet-item__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.fleet-item:hover .fleet-item__media img {
    transform: scale(1.07);
}

.fleet-item__badge {
    position: absolute;
    z-index: 3;

    top: 18px;
    left: 18px;

    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: var(--white);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    background:
        rgba(3, 14, 31, 0.54);

    backdrop-filter: blur(12px);
}

.fleet-item__favorite {
    position: absolute;
    z-index: 3;

    top: 17px;
    right: 17px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(3, 14, 31, 0.52);

    backdrop-filter: blur(12px);
}

.fleet-item__availability {
    position: absolute;
    z-index: 3;

    left: 18px;
    bottom: 18px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 13px;

    border-radius: 999px;

    color: var(--white);

    font-size: 10px;
    font-weight: 600;

    background:
        rgba(3, 14, 31, 0.54);

    backdrop-filter: blur(12px);
}

.fleet-item__availability i {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #57e389;

    box-shadow:
        0 0 12px rgba(87, 227, 137, 0.8);
}

.fleet-item__body {
    padding: 24px;
}

.fleet-item__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.fleet-item__heading > div:first-child > span {
    color: var(--blue-600);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fleet-item__heading h3 {
    margin-top: 8px;

    font-family: var(--font-title);

    font-size: 21px;
    font-weight: 700;

    line-height: 1.2;
}

.fleet-item__price {
    flex-shrink: 0;

    display: flex;
    align-items: baseline;
    gap: 4px;
}

.fleet-item__price strong {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 800;
}

.fleet-item__price span {
    color: var(--text-muted);
    font-size: 9px;
}

.fleet-item__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 23px;
    padding: 18px 0;

    border-top: 1px solid #e5edf5;
    border-bottom: 1px solid #e5edf5;
}

.fleet-item__specs span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--text-muted);

    font-size: 10px;
}

.fleet-item__specs i {
    color: var(--blue-700);
}

.fleet-item__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 21px;
}

.fleet-item__details {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--text-dark);

    font-size: 12px;
    font-weight: 700;
}

.fleet-item__details i {
    color: var(--blue-700);
}

.fleet-item__reserve {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 999px;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow:
        0 12px 28px rgba(11, 130, 244, 0.2);
}

/* Empty state */

.fleet-empty {
    display: none;

    margin-top: 30px;
    padding: 70px 20px;

    border: 1px dashed #cbd9e8;
    border-radius: 26px;

    text-align: center;
    background: var(--white);
}

.fleet-empty i {
    color: var(--blue-600);
    font-size: 36px;
}

.fleet-empty h3 {
    margin-top: 18px;

    font-family: var(--font-title);
    font-size: 24px;
}

.fleet-empty p {
    margin-top: 10px;

    color: var(--text-muted);
    font-size: 13px;
}

/* CTA */

.fleet-page-cta {
    padding: 0 0 130px;

    background: #f4f8fd;
}

.fleet-page-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;

    padding: 55px 60px;

    border-radius: 32px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(33, 160, 255, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );

    box-shadow:
        0 35px 80px rgba(8, 31, 65, 0.18);
}

.fleet-page-cta__box > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.fleet-page-cta__box h2 {
    max-width: 720px;

    margin-top: 12px;

    font-family: var(--font-title);

    font-size:
        clamp(32px, 4vw, 54px);

    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.fleet-page-cta__actions {
    display: flex;
    flex-shrink: 0;
    gap: 14px;
}

/* Responsive */

@media (max-width: 1120px) {
    .fleet-toolbar {
        grid-template-columns: 1fr;
    }

    .fleet-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .fleet-page-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .fleet-hero {
        padding-top: 145px;
    }

    .fleet-toolbar__controls {
        grid-template-columns: 1fr;
    }

    .fleet-page-grid {
        grid-template-columns: 1fr;
    }

    .fleet-item__media {
        height: 280px;
    }

    .fleet-page-cta__box {
        padding: 38px 26px;
    }

    .fleet-page-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .fleet-page-cta__actions .button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .fleet-catalog {
        padding: 80px 0 100px;
    }

    .fleet-toolbar {
        padding: 20px;
        border-radius: 22px;
    }

    .fleet-result-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .fleet-item__heading {
        flex-direction: column;
    }

    .fleet-item__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .fleet-item__reserve {
        width: 100%;
    }
}
.fleet-item[hidden] {
    display: none;
}

.fleet-item__favorite {
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.fleet-item__favorite:hover {
    transform: scale(1.06);
}

.fleet-item__favorite.is-active {
    color: #ff6b81;
    background: rgba(255, 255, 255, 0.92);
}
/* =========================
   VEHICLE DETAILS PAGE
========================= */

.vehicle-details-page {
    background: #f4f8fd;
}

/* Details Hero */

.vehicle-details-hero {
    position: relative;
    overflow: hidden;

    padding: 165px 0 80px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(33, 160, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.vehicle-details-hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.vehicle-details-hero__content {
    position: relative;
    z-index: 2;
}

.vehicle-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.vehicle-back-link:hover {
    color: var(--blue-300);
    transform: translateX(-4px);
}

.vehicle-details-hero__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.vehicle-details-hero__heading > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.vehicle-details-hero h1 {
    max-width: 980px;

    margin-top: 12px;

    font-family: var(--font-title);

    font-size:
        clamp(52px, 7vw, 104px);

    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -0.055em;
}

.vehicle-details-hero__price {
    flex-shrink: 0;

    display: flex;
    align-items: baseline;
    gap: 7px;

    padding: 18px 24px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);
}

.vehicle-details-hero__price strong {
    font-family: var(--font-title);

    font-size: 42px;
    font-weight: 800;
}

.vehicle-details-hero__price span {
    color:
        rgba(255, 255, 255, 0.48);

    font-size: 11px;
}

.vehicle-details-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 32px;
}

.vehicle-details-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 11px;
}

.vehicle-details-hero__meta i {
    color: var(--blue-300);
}

/* Gallery and booking */

.vehicle-details-main {
    padding: 90px 0 120px;
}

.vehicle-details-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(340px, 0.55fr);

    align-items: start;
    gap: 34px;
}

.vehicle-gallery {
    min-width: 0;
}

.vehicle-gallery__main {
    position: relative;

    height: 650px;
    overflow: hidden;

    border-radius: 34px;

    background: var(--navy-900);

    box-shadow:
        0 35px 90px rgba(8, 31, 65, 0.17);
}

.vehicle-gallery__main::after {
    content: "";

    position: absolute;
    inset: 0;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: inherit;

    pointer-events: none;
}

.vehicle-gallery__main > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity 0.25s ease,
        transform 0.6s ease;
}

.vehicle-gallery__main:hover > img {
    transform: scale(1.025);
}

.vehicle-gallery__nav,
.vehicle-gallery__favorite {
    position: absolute;
    z-index: 4;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(2, 13, 31, 0.52);

    backdrop-filter: blur(14px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.vehicle-gallery__nav:hover,
.vehicle-gallery__favorite:hover {
    transform: scale(1.07);
    background: var(--blue-700);
}

.vehicle-gallery__nav {
    top: 50%;

    transform: translateY(-50%);
}

.vehicle-gallery__nav:hover {
    transform:
        translateY(-50%)
        scale(1.07);
}

.vehicle-gallery__nav--prev {
    left: 22px;
}

.vehicle-gallery__nav--next {
    right: 22px;
}

.vehicle-gallery__favorite {
    top: 22px;
    right: 22px;
}

.vehicle-gallery__favorite.is-active {
    color: #ff6b81;
    background: rgba(255, 255, 255, 0.94);
}

.vehicle-gallery__thumbs {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 16px;
}

.vehicle-gallery__thumb {
    position: relative;

    height: 135px;
    overflow: hidden;

    border:
        2px solid transparent;

    border-radius: 20px;

    background: var(--navy-900);

    opacity: 0.65;

    transition:
        opacity 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.vehicle-gallery__thumb:hover,
.vehicle-gallery__thumb.is-active {
    opacity: 1;
    transform: translateY(-3px);

    border-color: var(--blue-500);
}

.vehicle-gallery__thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Booking card */

.vehicle-booking-card {
    position: sticky;
    top: 115px;

    padding: 28px;

    border: 1px solid #dbe6f2;
    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 30px 80px rgba(8, 31, 65, 0.12);
}

.vehicle-booking-card__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e2eaf3;
}

.vehicle-booking-card__top > div {
    display: flex;
    flex-direction: column;
}

.vehicle-booking-card__top div > span {
    margin-bottom: 5px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.vehicle-booking-card__top strong {
    color: var(--text-dark);

    font-family: var(--font-title);

    font-size: 43px;
    font-weight: 800;

    line-height: 1;
}

.vehicle-booking-card__top > span {
    margin-bottom: 5px;

    color: var(--text-muted);

    font-size: 11px;
}

.vehicle-booking-card > p {
    margin: 22px 0;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.7;
}

.vehicle-booking-card form {
    display: grid;
    gap: 17px;
}

.button--full {
    width: 100%;
}

.vehicle-booking-card__trust {
    display: grid;
    gap: 10px;

    margin-top: 22px;
    padding-top: 20px;

    border-top: 1px solid #e2eaf3;
}

.vehicle-booking-card__trust span {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text-muted);

    font-size: 10px;
}

.vehicle-booking-card__trust i {
    color: var(--blue-700);
}

/* Vehicle information */

.vehicle-information {
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #eef6ff
        );
}

.vehicle-information__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(480px, 1.1fr);

    align-items: start;
    gap: 75px;
}

.vehicle-description h2 {
    max-width: 760px;

    font-family: var(--font-title);

    font-size:
        clamp(42px, 5vw, 70px);

    font-weight: 800;

    line-height: 1.03;
    letter-spacing: -0.05em;
}

.vehicle-description h2 span {
    display: block;
    color: var(--blue-600);
}

.vehicle-description > p {
    max-width: 680px;

    margin-top: 26px;

    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.85;
}

.vehicle-description__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin-top: 34px;
}

.vehicle-description__features span {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-dark);

    font-size: 12px;
    font-weight: 600;
}

.vehicle-description__features i {
    color: var(--blue-600);
}

.vehicle-specifications {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.vehicle-specifications article {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    border: 1px solid #dce7f3;
    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 20px 55px rgba(8, 31, 65, 0.07);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.vehicle-specifications article:hover {
    transform: translateY(-6px);

    border-color:
        rgba(33, 160, 255, 0.48);

    box-shadow:
        0 28px 65px rgba(8, 90, 175, 0.12);
}

.vehicle-specifications article > i {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 17px;

    color: var(--blue-700);
    font-size: 18px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #dbeeff
        );
}

.vehicle-specifications article span {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vehicle-specifications article strong {
    margin-top: 7px;

    color: var(--text-dark);

    font-family: var(--font-title);

    font-size: 19px;
    font-weight: 700;
}

/* Details CTA */

.vehicle-details-cta {
    padding: 0 0 130px;

    background: #eef6ff;
}

.vehicle-details-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 58px 62px;

    border-radius: 32px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(33, 160, 255, 0.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );

    box-shadow:
        0 35px 80px rgba(8, 31, 65, 0.18);
}

.vehicle-details-cta__box span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.vehicle-details-cta__box h2 {
    max-width: 850px;

    margin-top: 12px;

    font-family: var(--font-title);

    font-size:
        clamp(32px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.07;
    letter-spacing: -0.04em;
}

/* Details responsive */

@media (max-width: 1080px) {
    .vehicle-details-layout {
        grid-template-columns: 1fr;
    }

    .vehicle-booking-card {
        position: relative;
        top: auto;
    }

    .vehicle-information__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .vehicle-details-hero {
        padding-top: 140px;
    }

    .vehicle-details-hero__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-gallery__main {
        height: 480px;
    }

    .vehicle-details-cta__box {
        align-items: flex-start;
        flex-direction: column;

        padding: 42px 30px;
    }
}

@media (max-width: 600px) {
    .vehicle-details-main {
        padding: 70px 0 90px;
    }

    .vehicle-gallery__main {
        height: 350px;
        border-radius: 24px;
    }

    .vehicle-gallery__nav,
    .vehicle-gallery__favorite {
        width: 42px;
        height: 42px;
    }

    .vehicle-gallery__nav--prev {
        left: 13px;
    }

    .vehicle-gallery__nav--next {
        right: 13px;
    }

    .vehicle-gallery__favorite {
        top: 13px;
        right: 13px;
    }

    .vehicle-gallery__thumbs {
        gap: 8px;
    }

    .vehicle-gallery__thumb {
        height: 85px;
        border-radius: 14px;
    }

    .vehicle-booking-card {
        padding: 22px 18px;
        border-radius: 23px;
    }

    .vehicle-information {
        padding: 90px 0;
    }

    .vehicle-description__features {
        grid-template-columns: 1fr;
    }

    .vehicle-specifications {
        grid-template-columns: 1fr;
    }

    .vehicle-specifications article {
        min-height: 160px;
    }

    .vehicle-details-cta {
        padding-bottom: 90px;
    }
}
/* =========================
   RESERVATION PAGE
========================= */

.reservation-page {
    background: #f4f8fd;
}

/* Hero */

.reservation-hero {
    position: relative;
    overflow: hidden;

    padding: 165px 0 85px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 22%,
            rgba(33, 160, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.reservation-hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.reservation-hero__content {
    position: relative;
    z-index: 2;
}

.reservation-hero__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 55px;
}

.reservation-hero__heading > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.reservation-hero h1 {
    max-width: 900px;

    margin-top: 14px;

    font-family: var(--font-title);
    font-size: clamp(54px, 7vw, 105px);
    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -0.055em;
}

.reservation-hero h1 strong {
    display: block;

    color: var(--blue-500);
    font-weight: inherit;
}

.reservation-steps {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 12px;
}

.reservation-step {
    min-width: 122px;

    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.05);
}

.reservation-step span {
    display: block;

    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.reservation-step strong {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 600;
}

.reservation-step.is-active {
    border-color: rgba(33, 160, 255, 0.48);

    background:
        linear-gradient(
            135deg,
            rgba(11, 130, 244, 0.24),
            rgba(33, 160, 255, 0.1)
        );
}

.reservation-step.is-active span {
    color: var(--blue-300);
}

.reservation-step.is-active strong {
    color: var(--white);
}

/* Main layout */

.reservation-main {
    padding: 90px 0 130px;
}

.reservation-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(360px, 0.65fr);

    align-items: start;
    gap: 32px;
}

.reservation-form {
    display: grid;
    gap: 24px;
}

.reservation-card {
    padding: 32px;

    border: 1px solid #dbe6f2;
    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 22px 65px rgba(8, 31, 65, 0.08);
}

.reservation-card__heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 30px;
    padding-bottom: 24px;

    border-bottom: 1px solid #e3ebf4;
}

.reservation-card__number {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--white);

    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow:
        0 14px 32px rgba(11, 130, 244, 0.22);
}

.reservation-card__heading span {
    color: var(--blue-600);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.reservation-card__heading h2 {
    margin-top: 6px;

    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

/* Fields */

.reservation-fields {
    display: grid;
    gap: 20px;
}

.reservation-fields--two {
    grid-template-columns: 1fr 1fr;
}

.reservation-field--full {
    grid-column: 1 / -1;
}

.reservation-card .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--text-dark);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.reservation-card .form-group label span {
    color: var(--text-muted);

    font-size: 8px;
    font-weight: 600;
}

.reservation-card textarea {
    width: 100%;
    min-height: 140px;

    padding: 17px 18px;

    resize: vertical;

    border: 1px solid #d6e2f0;
    border-radius: 16px;

    color: var(--text-dark);
    background: #f7faff;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.reservation-card textarea:focus {
    border-color: var(--blue-500);
    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(33, 160, 255, 0.1);
}

/* Extras */

.reservation-extras {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.reservation-extra {
    position: relative;

    min-height: 125px;

    display: grid;
    grid-template-columns:
        42px 52px 1fr auto;

    align-items: center;
    gap: 14px;

    padding: 20px;

    border: 1px solid #dce7f2;
    border-radius: 22px;

    background: #f8fbff;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.reservation-extra:hover {
    transform: translateY(-4px);

    border-color: rgba(33, 160, 255, 0.5);

    box-shadow:
        0 20px 45px rgba(8, 90, 175, 0.09);
}

.reservation-extra:has(input:checked) {
    border-color: var(--blue-500);

    background:
        linear-gradient(
            135deg,
            #f2f9ff,
            #e9f5ff
        );
}

.reservation-extra__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.reservation-extra__check {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border: 2px solid #c9d7e7;
    border-radius: 9px;

    color: transparent;
    background: var(--white);

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.reservation-extra__input:checked + .reservation-extra__check {
    color: var(--white);
    border-color: var(--blue-600);
    background: var(--blue-600);
}

.reservation-extra__icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    color: var(--blue-700);
    font-size: 17px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #dbeeff
        );
}

.reservation-extra__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reservation-extra__content strong {
    font-size: 13px;
    font-weight: 700;
}

.reservation-extra__content small {
    color: var(--text-muted);

    font-size: 10px;
    line-height: 1.45;
}

.reservation-extra__price {
    color: var(--blue-700);

    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
}

/* Payment options */

.reservation-payment-options {
    display: grid;
    gap: 14px;
}

.payment-option {
    position: relative;

    min-height: 108px;

    display: grid;
    grid-template-columns:
        28px 1fr auto;

    align-items: center;
    gap: 18px;

    padding: 22px;

    border: 1px solid #dce7f2;
    border-radius: 22px;

    background: #f8fbff;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.payment-option:hover {
    transform: translateY(-3px);
    border-color: rgba(33, 160, 255, 0.48);
}

.payment-option.is-selected {
    border-color: var(--blue-500);

    background:
        linear-gradient(
            135deg,
            #edf8ff,
            #e3f2ff
        );
}

.payment-option input {
    position: absolute;
    opacity: 0;
}

.payment-option__radio {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    border: 2px solid #bdcde0;
    border-radius: 50%;

    background: var(--white);
}

.payment-option__radio::after {
    content: "";

    width: 12px;
    height: 12px;

    border-radius: 50%;
    background: transparent;
}

.payment-option input:checked + .payment-option__radio {
    border-color: var(--blue-600);
}

.payment-option input:checked + .payment-option__radio::after {
    background: var(--blue-600);
}

.payment-option__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-option__content strong {
    font-size: 14px;
    font-weight: 700;
}

.payment-option__content small {
    max-width: 520px;

    color: var(--text-muted);

    font-size: 10px;
    line-height: 1.55;
}

.payment-option__amount {
    color: var(--blue-700);

    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
}

/* Terms */

.reservation-terms {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 22px;

    cursor: pointer;
}

.reservation-terms input {
    position: absolute;
    opacity: 0;
}

.reservation-terms > span {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    border: 2px solid #c7d5e5;
    border-radius: 7px;

    background: var(--white);

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.reservation-terms input:checked + span {
    border-color: var(--blue-600);
    background: var(--blue-600);

    box-shadow:
        inset 0 0 0 4px var(--white);
}

.reservation-terms p {
    color: var(--text-muted);

    font-size: 11px;
    line-height: 1.65;
}

.reservation-terms a {
    color: var(--blue-700);
    font-weight: 700;
}

.reservation-submit {
    min-height: 64px;

    border: 0;
}

/* Summary */

.reservation-summary {
    position: sticky;
    top: 112px;

    overflow: hidden;

    border: 1px solid #dbe6f2;
    border-radius: 30px;

    background: var(--white);

    box-shadow:
        0 30px 85px rgba(8, 31, 65, 0.14);
}

.reservation-summary__vehicle {
    position: relative;

    height: 245px;
    overflow: hidden;

    background: var(--navy-900);
}

.reservation-summary__vehicle img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.reservation-summary__vehicle-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 9, 22, 0.9),
            rgba(2, 9, 22, 0.08) 70%
        );
}

.reservation-summary__vehicle-content {
    position: absolute;
    z-index: 2;

    right: 24px;
    bottom: 22px;
    left: 24px;
}

.reservation-summary__vehicle-content span {
    color: var(--blue-300);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.reservation-summary__vehicle-content h2 {
    margin-top: 7px;

    color: var(--white);

    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
}

.reservation-summary__content {
    padding: 26px;
}

.reservation-summary__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding-bottom: 21px;

    border-bottom: 1px solid #e3ebf4;
}

.reservation-summary__heading span {
    color: var(--blue-600);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.reservation-summary__heading h3 {
    margin-top: 6px;

    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 800;
}

.reservation-summary__heading > i {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--blue-700);

    background: #eaf5ff;
}

.reservation-summary__dates {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;

    margin: 22px 0;
    padding: 18px;

    border-radius: 18px;

    background: #f3f8fd;
}

.reservation-summary__dates div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reservation-summary__dates div:last-child {
    text-align: right;
}

.reservation-summary__dates span {
    color: var(--text-muted);
    font-size: 9px;
}

.reservation-summary__dates strong {
    font-size: 11px;
    font-weight: 700;
}

.reservation-summary__dates > i {
    color: var(--blue-600);
    font-size: 12px;
}

.reservation-summary__rows {
    display: grid;
    gap: 14px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e3ebf4;
}

.reservation-summary__rows > div,
.reservation-summary__total,
.reservation-summary__payment,
.reservation-summary__remaining {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.reservation-summary__rows span,
.reservation-summary__remaining span {
    color: var(--text-muted);
    font-size: 11px;
}

.reservation-summary__rows strong,
.reservation-summary__remaining strong {
    font-size: 11px;
    font-weight: 700;
}

.reservation-summary__total {
    margin-top: 22px;
}

.reservation-summary__total span {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
}

.reservation-summary__total strong {
    color: var(--text-dark);

    font-family: var(--font-title);
    font-size: 29px;
    font-weight: 800;
}

.reservation-summary__payment {
    margin-top: 18px;
    padding: 18px;

    border-radius: 18px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--blue-500)
        );

    box-shadow:
        0 16px 34px rgba(11, 130, 244, 0.22);
}

.reservation-summary__payment span {
    font-size: 11px;
    font-weight: 600;
}

.reservation-summary__payment strong {
    font-family: var(--font-title);
    font-size: 23px;
    font-weight: 800;
}

.reservation-summary__remaining {
    margin-top: 14px;
    padding: 0 5px;
}

.reservation-summary__trust {
    display: grid;
    gap: 11px;

    margin-top: 23px;
    padding-top: 21px;

    border-top: 1px solid #e3ebf4;
}

.reservation-summary__trust span {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text-muted);

    font-size: 10px;
}

.reservation-summary__trust i {
    color: var(--blue-700);
}

/* Responsive */

@media (max-width: 1120px) {
    .reservation-hero__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .reservation-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .reservation-hero {
        padding-top: 140px;
    }

    .reservation-steps {
        width: 100%;
        align-items: stretch;
    }

    .reservation-step {
        min-width: 0;
        flex: 1;
    }

    .reservation-fields--two,
    .reservation-extras {
        grid-template-columns: 1fr;
    }

    .reservation-field--full {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .reservation-main {
        padding: 70px 0 90px;
    }

    .reservation-card {
        padding: 24px 18px;
        border-radius: 23px;
    }

    .reservation-card__heading {
        align-items: flex-start;
    }

    .reservation-card__number {
        width: 46px;
        height: 46px;
    }

    .reservation-extra {
        grid-template-columns: 30px 46px 1fr;
    }

    .reservation-extra__price {
        grid-column: 2 / -1;
    }

    .payment-option {
        grid-template-columns: 26px 1fr;
    }

    .payment-option__amount {
        grid-column: 2;
    }

    .reservation-steps {
        overflow-x: auto;
    }

    .reservation-step {
        min-width: 112px;
    }

    .reservation-summary__content {
        padding: 22px 18px;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.about-page {
    background: #f4f8fd;
}

/* Inner Hero */

.inner-hero {
    position: relative;
    overflow: hidden;

    padding: 175px 0 110px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(33, 160, 255, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.inner-hero__grid {
    position: absolute;
    inset: 0;

    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}

.inner-hero__content {
    position: relative;
    z-index: 2;
}

.inner-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--blue-300);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.inner-hero__eyebrow span {
    width: 42px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--blue-700),
            var(--blue-300)
        );
}

.inner-hero h1 {
    max-width: 900px;

    margin-top: 24px;

    font-family: var(--font-title);

    font-size:
        clamp(58px, 7vw, 112px);

    font-weight: 800;

    line-height: 0.94;
    letter-spacing: -0.055em;
}

.inner-hero h1 span {
    display: block;

    color: var(--blue-500);
}

.inner-hero p {
    max-width: 700px;

    margin-top: 30px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 16px;
    line-height: 1.8;
}

/* Story */

.about-story {
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4f8fd
        );
}

.about-story__layout {
    display: grid;
    grid-template-columns:
        minmax(500px, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;
    gap: 70px;
}

.about-story__media {
    position: relative;

    min-height: 680px;
    overflow: hidden;

    border-radius: 34px;

    background: var(--navy-900);

    box-shadow:
        0 38px 90px rgba(8, 31, 65, 0.17);
}

.about-story__media::after {
    content: "";

    position: absolute;
    inset: 0;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: inherit;

    pointer-events: none;
}

.about-story__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.about-story__media:hover img {
    transform: scale(1.05);
}

.about-story__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 10, 25, 0.82),
            rgba(2, 10, 25, 0.04) 62%
        );
}

.about-story__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;

    width: 160px;
    height: 160px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: var(--white);
    text-align: center;

    background:
        rgba(3, 14, 31, 0.56);

    backdrop-filter: blur(18px);
}

.about-story__badge strong {
    font-family: var(--font-title);

    font-size: 38px;
    font-weight: 800;
}

.about-story__badge span {
    max-width: 96px;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 10px;
    line-height: 1.4;
}

.about-story__content h2 {
    max-width: 760px;

    color: var(--text-dark);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 74px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.about-story__content h2 span {
    display: block;
    color: var(--blue-600);
}

.about-story__content > p {
    max-width: 680px;

    margin-top: 22px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.85;
}

.about-story__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin: 32px 0 36px;
}

.about-story__features span {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-dark);

    font-size: 12px;
    font-weight: 600;
}

.about-story__features i {
    color: var(--blue-600);
}

/* Values */

.about-values {
    padding: 120px 0;

    background: var(--navy-950);
}

.about-values__heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    align-items: end;
    gap: 60px;

    margin-bottom: 58px;
}

.about-values__heading h2 {
    max-width: 850px;

    color: var(--white);

    font-family: var(--font-title);

    font-size:
        clamp(44px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.about-values__heading h2 span {
    display: block;
    color: var(--blue-500);
}

.about-values__heading > p {
    max-width: 500px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 15px;
    line-height: 1.8;
}

.about-values__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.about-values__grid article {
    position: relative;
    overflow: hidden;

    min-height: 320px;

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.035)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.about-values__grid article:hover {
    transform: translateY(-8px);

    border-color:
        rgba(33, 160, 255, 0.45);

    background:
        linear-gradient(
            180deg,
            rgba(11, 130, 244, 0.16),
            rgba(255, 255, 255, 0.05)
        );
}

.about-values__grid article > span {
    position: absolute;
    top: 22px;
    right: 24px;

    color:
        rgba(255, 255, 255, 0.12);

    font-family: var(--font-title);

    font-size: 58px;
    font-weight: 800;
}

.about-values__grid article > i {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 72px;

    border-radius: 18px;

    color: var(--blue-300);
    font-size: 20px;

    background:
        rgba(33, 160, 255, 0.12);
}

.about-values__grid h3 {
    color: var(--white);

    font-family: var(--font-title);

    font-size: 22px;
    font-weight: 700;
}

.about-values__grid p {
    margin-top: 12px;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 13px;
    line-height: 1.7;
}

/* CTA */

.about-cta {
    padding: 120px 0;

    background: #f4f8fd;
}

.about-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 60px 64px;

    border-radius: 34px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(33, 160, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );

    box-shadow:
        0 35px 85px rgba(8, 31, 65, 0.17);
}

.about-cta__box > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-cta__box h2 {
    max-width: 760px;

    margin-top: 12px;

    font-family: var(--font-title);

    font-size:
        clamp(34px, 4vw, 56px);

    font-weight: 800;

    line-height: 1.06;
    letter-spacing: -0.04em;
}

.about-cta__actions {
    display: flex;
    flex-shrink: 0;
    gap: 14px;
}

/* Responsive */

@media (max-width: 1100px) {
    .about-story__layout {
        grid-template-columns: 1fr;
    }

    .about-story__media {
        min-height: 560px;
    }

    .about-values__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .inner-hero {
        padding-top: 145px;
    }

    .about-values__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-story__features {
        grid-template-columns: 1fr;
    }

    .about-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .about-cta__actions .button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .about-story,
    .about-values,
    .about-cta {
        padding: 90px 0;
    }

    .about-story__media {
        min-height: 400px;
        border-radius: 25px;
    }

    .about-story__badge {
        width: 120px;
        height: 120px;

        right: 18px;
        bottom: 18px;
    }

    .about-story__badge strong {
        font-size: 29px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid article {
        min-height: 270px;
    }

    .about-cta__box {
        padding: 42px 28px;
    }
}
/* =========================
   SERVICES PAGE
========================= */

.services-page {
    background: #f4f8fd;
}

.services-overview {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4f8fd
        );
}

.services-overview__heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    align-items: end;
    gap: 60px;

    margin-bottom: 58px;
}

.services-overview__heading h2 {
    max-width: 900px;

    font-family: var(--font-title);
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.services-overview__heading h2 span {
    display: block;
    color: var(--blue-600);
}

.services-overview__heading > p {
    max-width: 500px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.8;
}

.services-overview__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.service-detail-card {
    position: relative;
    overflow: hidden;

    min-height: 330px;

    padding: 30px;

    border: 1px solid #dfe9f5;
    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 22px 60px rgba(8, 31, 65, 0.07);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(33, 160, 255, 0.5);

    box-shadow:
        0 30px 70px rgba(8, 90, 175, 0.12);
}

.service-detail-card__number {
    position: absolute;
    top: 20px;
    right: 24px;

    color: rgba(7, 20, 38, 0.1);

    font-family: var(--font-title);
    font-size: 60px;
    font-weight: 800;
}

.service-detail-card__icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 62px;

    border-radius: 18px;

    color: var(--blue-700);
    font-size: 20px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #dceeff
        );
}

.service-detail-card h3 {
    max-width: 300px;

    font-family: var(--font-title);
    font-size: 23px;
    font-weight: 700;

    line-height: 1.15;
}

.service-detail-card p {
    margin-top: 15px;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.75;
}

.service-detail-card > span {
    display: inline-block;

    margin-top: 24px;
    padding: 8px 12px;

    border-radius: 999px;

    color: var(--blue-700);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    background: #edf7ff;
}

/* Process */

.service-process {
    padding: 120px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(33, 160, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.service-process__layout {
    display: grid;
    grid-template-columns:
        minmax(400px, 0.85fr)
        minmax(520px, 1.15fr);

    align-items: center;
    gap: 80px;
}

.service-process__content h2 {
    max-width: 700px;

    font-family: var(--font-title);
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.service-process__content h2 span {
    display: block;
    color: var(--blue-500);
}

.service-process__content > p {
    max-width: 600px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;
    line-height: 1.8;
}

.service-process__content .button {
    margin-top: 32px;
}

.service-process__steps {
    display: grid;
    gap: 15px;
}

.service-process__steps article {
    display: grid;
    grid-template-columns: 62px 1fr;

    align-items: center;
    gap: 18px;

    padding: 23px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.service-process__steps article:hover {
    transform: translateX(7px);

    border-color:
        rgba(33, 160, 255, 0.45);

    background:
        rgba(33, 160, 255, 0.1);
}

.service-process__steps article > span {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--blue-300);

    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;

    background:
        rgba(33, 160, 255, 0.12);
}

.service-process__steps h3 {
    font-family: var(--font-title);
    font-size: 19px;
    font-weight: 700;
}

.service-process__steps p {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.53);

    font-size: 12px;
    line-height: 1.65;
}

/* Support CTA */

.services-support {
    padding: 120px 0;
    background: #f4f8fd;
}

.services-support__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 60px 64px;

    border-radius: 34px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(33, 160, 255, 0.24),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );

    box-shadow:
        0 35px 85px rgba(8, 31, 65, 0.17);
}

.services-support__box > div:first-child > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.services-support__box h2 {
    max-width: 760px;

    margin-top: 12px;

    font-family: var(--font-title);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;

    line-height: 1.06;
    letter-spacing: -0.04em;
}

.services-support__box p {
    max-width: 650px;

    margin-top: 16px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.7;
}

.services-support__actions {
    display: flex;
    flex-shrink: 0;
    gap: 14px;
}

/* Responsive */

@media (max-width: 1050px) {
    .services-overview__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .service-process__layout {
        grid-template-columns: 1fr;
    }

    .services-support__box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .services-overview__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-support__actions {
        width: 100%;
        flex-direction: column;
    }

    .services-support__actions .button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .services-overview,
    .service-process,
    .services-support {
        padding: 90px 0;
    }

    .services-overview__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        min-height: 290px;
        padding: 25px;
    }

    .service-process__steps article {
        grid-template-columns: 52px 1fr;
        padding: 18px;
    }

    .service-process__steps article > span {
        width: 50px;
        height: 50px;
    }

    .services-support__box {
        padding: 42px 28px;
    }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page{
    background:#f4f8fd;
}

.contact-main{
    padding:120px 0;
}

.contact-layout{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:35px;
    align-items:start;
}

.contact-information h2{
    font-family:var(--font-title);
    font-size:clamp(46px,5vw,72px);
    line-height:1;
    margin:20px 0;
}

.contact-information h2 span{
    display:block;
    color:var(--blue-600);
}

.contact-information>p{
    max-width:620px;
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:40px;
}

.contact-methods{
    display:grid;
    gap:18px;
}

.contact-method{
    display:flex;
    align-items:center;
    gap:20px;

    padding:24px;

    background:#fff;

    border:1px solid #dfe8f4;
    border-radius:24px;

    transition:.3s;
}

.contact-method:hover{
    transform:translateY(-5px);
    border-color:var(--blue-500);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-method__icon{

    width:60px;
    height:60px;

    display:grid;
    place-items:center;

    border-radius:18px;

    background:#edf6ff;

    color:var(--blue-700);

    font-size:22px;
}

.contact-method div{
    flex:1;
}

.contact-method span{

    display:block;

    font-size:10px;

    text-transform:uppercase;

    color:var(--blue-600);

    letter-spacing:.15em;
}

.contact-method strong{

    display:block;

    margin:6px 0;

    font-size:18px;

    color:var(--text-dark);
}

.contact-method small{

    color:var(--text-muted);

    font-size:12px;
}

.contact-method>i{

    color:var(--blue-600);
}

.contact-hours{

    display:flex;

    gap:20px;

    margin-top:35px;
}

.contact-hours>div{

    flex:1;

    display:flex;

    gap:15px;

    align-items:center;

    padding:20px;

    border-radius:20px;

    background:#fff;

    border:1px solid #dfe8f4;
}

.contact-hours i{

    font-size:22px;

    color:var(--blue-700);
}

.contact-hours small{

    display:block;

    color:var(--text-muted);

    font-size:11px;
}

.contact-hours strong{

    display:block;

    margin-top:4px;
}

.contact-form-card{

    padding:34px;

    background:#fff;

    border-radius:30px;

    border:1px solid #dfe8f4;

    box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.contact-form-card__heading{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.contact-form-card__heading span{

    font-size:10px;

    text-transform:uppercase;

    color:var(--blue-600);

    letter-spacing:.15em;
}

.contact-form-card__heading h2{

    margin-top:6px;

    font-family:var(--font-title);

    font-size:34px;
}

.contact-form-card__heading i{

    width:55px;

    height:55px;

    display:grid;

    place-items:center;

    border-radius:18px;

    background:#edf6ff;

    color:var(--blue-700);
}

.contact-form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}

.contact-form-grid__full{

    grid-column:1/-1;
}

.contact-form-card textarea{

    width:100%;

    padding:18px;

    border-radius:18px;

    border:1px solid #dbe5f2;

    background:#f8fbff;

    resize:vertical;
}

.contact-form-card__note{

    margin-top:22px;

    display:flex;

    gap:10px;

    align-items:center;

    color:var(--text-muted);

    font-size:12px;
}

.contact-map-section{

    padding:0 0 120px;
}

.contact-map-box{

    overflow:hidden;

    display:grid;

    grid-template-columns:420px 1fr;

    border-radius:34px;

    background:var(--navy-900);

    color:#fff;
}

.contact-map-box__content{

    padding:60px;
}

.contact-map-box__content span{

    color:var(--blue-300);

    text-transform:uppercase;

    font-size:10px;

    letter-spacing:.15em;
}

.contact-map-box__content h2{

    margin:20px 0;

    font-family:var(--font-title);

    font-size:52px;

    line-height:1;
}

.contact-map-box__content p{

    color:rgba(255,255,255,.6);

    line-height:1.8;

    margin-bottom:35px;
}

.contact-map-box__visual{

    position:relative;
}

.contact-map-box__visual img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-map-box__overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.05)
    );
}

.contact-map-point{

    position:absolute;

    padding:10px 18px;

    background:rgba(255,255,255,.9);

    color:#111;

    border-radius:999px;

    font-size:12px;

    font-weight:600;
}

.contact-map-point i{

    display:inline-block;

    width:8px;
    height:8px;

    margin-right:8px;

    border-radius:50%;

    background:var(--blue-600);
}

.contact-map-point--one{
    top:18%;
    left:20%;
}

.contact-map-point--two{
    top:48%;
    right:18%;
}

.contact-map-point--three{
    bottom:20%;
    left:35%;
}

@media(max-width:1100px){

.contact-layout{
grid-template-columns:1fr;
}

.contact-map-box{
grid-template-columns:1fr;
}

.contact-map-box__content{
order:2;
}

}

@media(max-width:700px){

.contact-form-grid{
grid-template-columns:1fr;
}

.contact-form-grid__full{
grid-column:auto;
}

.contact-hours{
flex-direction:column;
}

.contact-map-box__content{
padding:35px;
}

.contact-map-box__content h2{
font-size:40px;
}

}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    background: #f4f8fd;
}

.contact-main {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 520px);

    align-items: start;
    gap: 35px;
}

/* Contact information */

.contact-information h2 {
    max-width: 760px;

    margin: 20px 0;

    font-family: var(--font-title);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.contact-information h2 span {
    display: block;
    color: var(--blue-600);
}

.contact-information > p {
    max-width: 620px;

    margin-bottom: 40px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    gap: 18px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 24px;

    border: 1px solid #dfe8f4;
    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 18px 50px rgba(8, 31, 65, 0.06);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);

    border-color: var(--blue-500);

    box-shadow:
        0 24px 58px rgba(8, 90, 175, 0.11);
}

.contact-method__icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--blue-700);
    font-size: 22px;

    background:
        linear-gradient(
            135deg,
            #edf7ff,
            #dceeff
        );
}

.contact-method > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.contact-method span {
    display: block;

    color: var(--blue-600);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-method strong {
    display: block;

    margin: 6px 0;

    color: var(--text-dark);

    font-size: 18px;
    font-weight: 700;

    overflow-wrap: anywhere;
}

.contact-method small {
    color: var(--text-muted);
    font-size: 11px;
}

.contact-method > i {
    flex-shrink: 0;
    color: var(--blue-600);
}

.contact-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin-top: 35px;
}

.contact-hours > div {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    border: 1px solid #dfe8f4;
    border-radius: 20px;

    background: var(--white);
}

.contact-hours i {
    color: var(--blue-700);
    font-size: 22px;
}

.contact-hours span {
    display: flex;
    flex-direction: column;
}

.contact-hours small {
    color: var(--text-muted);
    font-size: 10px;
}

.contact-hours strong {
    margin-top: 4px;
    font-size: 13px;
}

/* Contact form */

.contact-form-card {
    padding: 34px;

    border: 1px solid #dfe8f4;
    border-radius: 30px;

    background: var(--white);

    box-shadow:
        0 30px 70px rgba(8, 31, 65, 0.1);
}

.contact-form-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 30px;
    padding-bottom: 24px;

    border-bottom: 1px solid #e4ecf4;
}

.contact-form-card__heading span {
    color: var(--blue-600);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-form-card__heading h2 {
    margin-top: 6px;

    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;

    letter-spacing: -0.035em;
}

.contact-form-card__heading > i {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--blue-700);

    background:
        linear-gradient(
            135deg,
            #edf7ff,
            #dceeff
        );
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-grid__full {
    grid-column: 1 / -1;
}

.contact-form-card textarea {
    width: 100%;
    min-height: 160px;

    padding: 18px;

    border: 1px solid #dbe5f2;
    border-radius: 18px;

    color: var(--text-dark);
    background: #f8fbff;

    resize: vertical;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form-card textarea:focus {
    border-color: var(--blue-500);
    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(33, 160, 255, 0.1);
}

.contact-form-card__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 22px;

    color: var(--text-muted);
    font-size: 10px;
}

.contact-form-card__note i {
    color: var(--blue-700);
}

/* Map */

.contact-map-section {
    padding: 0 0 120px;
}

.contact-map-box {
    overflow: hidden;

    display: grid;
    grid-template-columns:
        minmax(350px, 420px)
        minmax(0, 1fr);

    min-height: 520px;

    border-radius: 34px;

    color: var(--white);

    background: var(--navy-900);

    box-shadow:
        0 35px 85px rgba(8, 31, 65, 0.16);
}

.contact-map-box__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
}

.contact-map-box__content > span {
    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-map-box__content h2 {
    margin: 20px 0;

    font-family: var(--font-title);
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;

    line-height: 1.02;
    letter-spacing: -0.04em;
}

.contact-map-box__content p {
    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;
    line-height: 1.8;
}

.contact-map-box__visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.contact-map-box__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.contact-map-box__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(1, 8, 21, 0.72),
            rgba(1, 8, 21, 0.05) 68%
        );
}

.contact-map-point {
    position: absolute;
    z-index: 3;

    display: inline-flex;
    align-items: center;

    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    background:
        rgba(3, 14, 31, 0.62);

    backdrop-filter: blur(14px);
}

.contact-map-point i {
    width: 8px;
    height: 8px;

    margin-right: 8px;

    border-radius: 50%;

    background: var(--blue-300);

    box-shadow:
        0 0 0 5px rgba(33, 160, 255, 0.14),
        0 0 16px var(--blue-500);
}

.contact-map-point--one {
    top: 18%;
    left: 20%;
}

.contact-map-point--two {
    top: 48%;
    right: 18%;
}

.contact-map-point--three {
    bottom: 20%;
    left: 35%;
}

/* Responsive */

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        max-width: none;
    }

    .contact-map-box {
        grid-template-columns: 1fr;
    }

    .contact-map-box__content {
        order: 2;
    }
}

@media (max-width: 700px) {
    .contact-main {
        padding: 90px 0;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid__full {
        grid-column: auto;
    }

    .contact-hours {
        grid-template-columns: 1fr;
    }

    .contact-map-box__content {
        padding: 40px 28px;
    }

    .contact-map-box__visual {
        min-height: 400px;
    }
}

@media (max-width: 520px) {
    .contact-method {
        align-items: flex-start;
        padding: 20px;
    }

    .contact-method__icon {
        width: 52px;
        height: 52px;
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .contact-map-section {
        padding-bottom: 90px;
    }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
    background: #f4f8fd;
}

.inner-hero--legal {
    padding-bottom: 95px;
}

.legal-content {
    padding: 110px 0 130px;
}

.legal-layout {
    display: grid;
    grid-template-columns:
        minmax(240px, 0.32fr)
        minmax(0, 1fr);

    align-items: start;
    gap: 42px;
}

.legal-sidebar {
    position: sticky;
    top: 115px;

    padding: 26px;

    border: 1px solid #dbe6f2;
    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 22px 60px rgba(8, 31, 65, 0.08);
}

.legal-sidebar > span {
    display: block;

    margin-bottom: 18px;

    color: var(--blue-700);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.legal-sidebar nav {
    display: grid;
    gap: 5px;
}

.legal-sidebar nav a {
    display: flex;
    align-items: center;

    min-height: 45px;

    padding: 0 14px;

    border-radius: 13px;

    color: var(--text-muted);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.legal-sidebar nav a:hover {
    transform: translateX(4px);

    color: var(--blue-700);
    background: #edf7ff;
}

.legal-document {
    overflow: hidden;

    border: 1px solid #dbe6f2;
    border-radius: 30px;

    background: var(--white);

    box-shadow:
        0 28px 75px rgba(8, 31, 65, 0.09);
}

.legal-document__intro {
    padding: 34px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(33, 160, 255, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.legal-document__intro > span {
    display: block;

    color: var(--blue-300);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.legal-document__intro p {
    max-width: 850px;

    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 14px;
    line-height: 1.8;
}

.legal-document > section {
    position: relative;

    padding: 42px 38px;

    scroll-margin-top: 125px;
}

.legal-document > section:not(:last-child) {
    border-bottom: 1px solid #e4ecf4;
}

.legal-document > section > span {
    position: absolute;
    top: 34px;
    right: 36px;

    color:
        rgba(7, 20, 38, 0.07);

    font-family: var(--font-title);
    font-size: 58px;
    font-weight: 800;

    line-height: 1;
}

.legal-document h2 {
    position: relative;
    z-index: 2;

    max-width: 760px;

    font-family: var(--font-title);

    font-size:
        clamp(27px, 3vw, 40px);

    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -0.035em;
}

.legal-document section p {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin-top: 17px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.85;
}

.legal-document section .button {
    margin-top: 28px;
}

/* Responsive */

@media (max-width: 980px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: relative;
        top: auto;
    }

    .legal-sidebar nav {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .legal-content {
        padding: 80px 0 95px;
    }

    .legal-sidebar {
        padding: 20px;
    }

    .legal-sidebar nav {
        grid-template-columns: 1fr;
    }

    .legal-document {
        border-radius: 24px;
    }

    .legal-document__intro {
        padding: 26px 22px;
    }

    .legal-document > section {
        padding: 34px 22px;
    }

    .legal-document > section > span {
        top: 25px;
        right: 20px;

        font-size: 45px;
    }
}
/* Ajuste final del logo del header */

.brand__logo-wrap {
    width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
}

.brand__logo {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transform: scale(1.28);
}

/* =========================================================
   RESERVATION SUCCESS
   ========================================================= */

.reservation-success-page {
    min-height: 72vh;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(31, 157, 255, 0.18),
            transparent 38%
        ),
        #eef5fc;
}

.reservation-success-section {
    width: 100%;
}

.reservation-success-card {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 58px 48px;
    border: 1px solid rgba(26, 134, 232, 0.16);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(7, 26, 53, 0.14);
    text-align: center;
}

.reservation-success-icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #0875cf,
        #28a7ff
    );
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 14px 30px rgba(22, 135, 232, 0.26);
}

.reservation-success-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #1687e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.reservation-success-card h1 {
    margin: 0;
    color: #071a35;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
}

.reservation-success-description,
.reservation-success-note {
    max-width: 590px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.75;
}

.reservation-success-code {
    margin: 32px auto 0;
    padding: 22px;
    border: 1px solid #b9dcf7;
    border-radius: 16px;
    background: #f1f8ff;
}

.reservation-success-code span {
    display: block;
    color: #6b7b8f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.reservation-success-code strong {
    display: block;
    margin-top: 8px;
    color: #0875cf;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: 0.5px;
}

.reservation-success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.reservation-success-actions .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    padding:15px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:.25s;
}

.btn-primary{
    background:#1f8fff;
    color:#fff;
    box-shadow:0 12px 25px rgba(31,143,255,.25);
}

.btn-primary:hover{
    background:#1579dd;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#0f172a;
    color:#fff;
    box-shadow:0 12px 25px rgba(15,23,42,.18);
}

.btn-secondary:hover{
    background:#1e293b;
    transform:translateY(-2px);
}

@media (max-width: 640px) {
    .reservation-success-page {
        padding: 54px 0;
    }

    .reservation-success-card {
        padding: 40px 22px;
        border-radius: 20px;
    }

    .reservation-success-actions {
        flex-direction: column;
    }

    .reservation-success-actions .btn {
        width: 100%;
    }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: grid;
    place-items: center;

    width: 62px;
    height: 62px;

    border: 3px solid #ffffff;
    border-radius: 50%;

    background: #25d366;
    color: #ffffff;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.35);
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 56px;
        height: 56px;

        font-size: 27px;
    }
}



/* CTA HOME - evita que el texto se corte */
.cta-box,
.cta-content {
    min-width: 0;
}

@media (max-width: 900px) {

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 55px 40px;
    }

    .cta-image {
        height: 360px;
    }

    .cta-content h2 {
        max-width: 100%;
        font-size: clamp(44px, 10vw, 62px);
        overflow-wrap: normal;
    }
}

@media (max-width: 600px) {

    .cta-section {
        padding: 90px 0;
    }

    .cta-box {
        border-radius: 28px;
    }

    .cta-content {
        padding: 48px 28px;
    }

    .cta-content h2 {
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .button {
        width: 100%;
    }

    .cta-image {
        height: 280px;
    }
}


/* =========================================================
   MOBILE FORM FIX
   ========================================================= */

/* MOBILE FORM FIX */

@media (max-width: 640px) {

    .input-control {
        position: relative;
    }

    /* Ocultar iconos problemáticos */
    .input-control > i.fa-car,
    .input-control > i.fa-location-dot {
        display: none !important;
    }

    /* Mantener calendario y reloj */
    .input-control > i.fa-calendar,
    .input-control > i.fa-clock {
        display: block !important;
    }

    .input-control input,
    .input-control select {
        width: 100%;
        padding-left: 16px !important;
        padding-right: 40px !important;
    }

    /* Espacio para calendario y reloj */
    .input-control:has(> i.fa-calendar) input,
    .input-control:has(> i.fa-clock) input {
        padding-left: 52px !important;
    }
}

/* CTA MOBILE FIX */

@media (max-width: 640px) {

    .cta-box {
        grid-template-columns: 1fr !important;
        overflow: hidden;
    }

    .cta-content {
        width: 100%;
        min-width: 0;
        padding: 45px 24px !important;
    }

    .cta-content h2 {
        width: 100%;
        max-width: 100%;
        font-size: 42px !important;
        line-height: 1.05;
        letter-spacing: -1.5px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .cta-content h2 span {
        display: block;
    }

    .cta-image {
        width: 100%;
        height: 280px;
    }

}