/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
    width: 100%;
}

body {
    max-width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    position: relative;
    width: 100%;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* Variables */
:root {
    --gold: #d39f27;
    --gold-dark: #b88713;
    --olive: #565133;
    --dark: #191919;
    --gray: #666;
    --light: #f8f7f2;
    --white: #fff;
    --shadow: 0 15px 35px rgba(0, 0, 0, .08);
    --shadow-hover: 0 18px 38px rgba(0, 0, 0, .16);
    --transition: .3s ease;
}

/* Global */
body {
    background: var(--light);
    color: #222;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    line-height: .95;
}

section {
    position: relative;
}

main {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title::after {
    background: var(--gold);
    content: "";
    display: block;
    height: 3px;
    margin: 20px auto 0;
    width: 80px;
}

.section-title h2 {
    color: var(--dark);
    font-size: 58px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title p {
    color: #777;
    font-size: 18px;
    margin: 0;
}

.btn {
    border-radius: 0;
    font-weight: 600;
    padding: 14px 32px;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--white);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(211, 159, 39, .25);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    color: var(--dark);
}

/* Navbar */
.custom-navbar {
    background: rgba(0, 0, 0, .58);
    --bs-navbar-active-color: var(--gold);
    --bs-navbar-color: var(--white);
    --bs-navbar-hover-color: var(--gold);
    padding: 12px 0;
    transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

.custom-navbar.navbar-scrolled {
    background: rgba(0, 0, 0, .9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    padding: 9px 0;
}

.navbar-brand {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--white);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .15rem rgba(211, 159, 39, .45);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    margin-left: 28px;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    background: var(--gold);
    bottom: 2px;
    content: "";
    height: 2px;
    left: .5rem;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    width: calc(100% - 1rem);
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link:focus,
.custom-navbar .navbar-nav .nav-link.active {
    color: var(--gold);
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link:focus::after,
.custom-navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.language-switch {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .32);
    display: inline-flex;
    margin-left: 22px;
}

.language-switch button {
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1;
    padding: 9px 10px;
    transition: background-color var(--transition), color var(--transition);
}

.language-switch button + button {
    border-left: 1px solid rgba(255, 255, 255, .32);
}

.language-switch button.active,
.language-switch button:hover,
.language-switch button:focus {
    background: var(--gold);
    color: var(--dark);
}

/* Hero */
.hero {
    align-items: center;
    background: url("../images/optimized/hero/hero.jpg") center / cover no-repeat;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: none;
}

.overlay {
    background: rgba(0, 0, 0, .45);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    max-width: 640px;
    padding: 28px 0;
}

.hero-subtitle {
    color: var(--gold);
    display: inline-block;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 2.8px;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 4.5vw, 72px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.05;
    margin: 12px 0 16px;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-name-highlight {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* Features */
.features {
    background: var(--olive);
    color: var(--white);
    padding: 35px 0;
}

.feature-item i {
    color: var(--gold);
    display: inline-block;
    font-size: 38px;
    margin-bottom: 15px;
}

.feature-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    opacity: .82;
}

/* Tours */
.tours-section {
    background: var(--light);
    padding: 90px 0;
}

.tour-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tour-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.tour-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.tour-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.tour-content h4 {
    font-size: 34px;
    margin-bottom: 15px;
}

.tour-content p {
    color: var(--gray);
    flex: 1;
    margin-bottom: 20px;
}

.tour-stops {
    color: var(--gray);
    font-size: 14px;
    margin: 0 0 20px;
    padding-left: 18px;
}

.tour-stops li {
    margin-bottom: 5px;
}

.tour-info {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 0 20px;
    font-weight: 600;
}

.tour-info i {
    color: var(--gold);
    margin-right: 4px;
}

.tour-note {
    color: var(--olive);
    font-size: 13px;
    font-weight: 600;
    margin: -8px 0 18px;
}

.tour-btn {
    background: var(--olive);
    color: var(--white);
    display: block;
    font-weight: 600;
    padding: 14px;
    text-align: center;
    transition: background-color var(--transition), color var(--transition);
}

.tour-btn:hover,
.tour-btn:focus {
    background: var(--gold);
    color: var(--white);
}

/* Cars */
.cars {
    background: var(--olive);
    color: var(--white);
    overflow: hidden;
    padding: 96px 0;
}

.cars::before {
    background: radial-gradient(circle at top left, rgba(211, 159, 39, .16), transparent 38%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.cars .container {
    position: relative;
    z-index: 1;
}

.section-kicker {
    color: var(--gold);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cars-copy {
    max-width: 590px;
}

.cars h2 {
    font-size: 64px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.cars p {
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    margin-bottom: 28px;
}

.car-options {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}

.car-option {
    appearance: none;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    padding: 20px;
    text-align: left;
    transition: border-color var(--transition), transform var(--transition), background-color var(--transition);
    width: 100%;
}

.car-option:hover,
.car-option:focus {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(211, 159, 39, .62);
    outline: 0;
    transform: translateY(-4px);
}

.car-option span {
    color: var(--gold);
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
}

.car-option strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
}

.car-option small {
    color: rgba(255, 255, 255, .74);
    display: block;
    line-height: 1.5;
}

.cars-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cars-benefits span {
    align-items: center;
    background: rgba(0, 0, 0, .14);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    display: inline-flex;
    gap: 8px;
    padding: 9px 14px;
}

.cars-benefits i {
    color: var(--gold);
}

.cars-showcase {
    display: grid;
    gap: 14px;
}

.cars-showcase img {
    box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
    object-fit: cover;
    width: 100%;
}

.cars-main-img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-position: center top;
}

.cars-main-img-lower {
    object-position: center 58%;
}

.cars-thumb-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cars-thumb-row img {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
}

/* Gallery */
.gallery-section {
    background: var(--light);
    padding: 100px 0;
}

.gallery-img {
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
    object-fit: cover;
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    width: 100%;
}

.gallery-img:hover {
    box-shadow: var(--shadow-hover);
    filter: saturate(1.04);
    transform: scale(1.035);
}

.gallery-modal .modal-content {
    background: transparent;
    border: 0;
}

.gallery-modal .modal-header {
    border: 0;
    padding-bottom: 8px;
}

.gallery-modal .modal-body {
    padding: 0;
}

#galleryModalImage {
    border-radius: 10px;
    max-height: 82vh;
    object-fit: contain;
    width: 100%;
}

/* Vehicle lightboxes */
.vehicle-modal .modal-content {
    background: rgba(12, 12, 12, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
    overflow: hidden;
}

.vehicle-modal .modal-header {
    border: 0;
    color: var(--white);
    padding: 20px 24px 12px;
}

.vehicle-modal .modal-title {
    color: var(--gold);
    font-size: 42px;
    text-transform: uppercase;
}

.vehicle-modal .modal-body {
    padding: 0 24px 24px;
}

.vehicle-gallery {
    display: grid;
    gap: 16px;
}

.vehicle-gallery-preview {
    background: #0d0d0d;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vehicle-gallery-main {
    aspect-ratio: 16 / 10;
    max-height: 70vh;
    object-fit: contain;
    opacity: 1;
    transition: opacity .18s ease, transform .28s ease;
    width: 100%;
}

.vehicle-gallery-main.vehicle-gallery-fading {
    opacity: .12;
    transform: scale(.995);
}

.vehicle-gallery-nav {
    align-items: center;
    background: rgba(0, 0, 0, .46);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color var(--transition), transform var(--transition), opacity var(--transition);
    width: 46px;
    z-index: 2;
}

.vehicle-gallery-nav:hover,
.vehicle-gallery-nav:focus {
    background: rgba(211, 159, 39, .88);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.vehicle-gallery-prev {
    left: 16px;
}

.vehicle-gallery-next {
    right: 16px;
}

.vehicle-gallery-thumbs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.vehicle-gallery-thumb {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
}

.vehicle-gallery-thumb:hover,
.vehicle-gallery-thumb:focus,
.vehicle-gallery-thumb.active {
    border-color: var(--gold);
    opacity: 1;
    outline: 0;
    transform: translateY(-2px);
}

.vehicle-gallery-thumb img {
    aspect-ratio: 4 / 3;
    filter: saturate(.96);
    object-fit: cover;
    opacity: .76;
    transition: filter var(--transition), opacity var(--transition);
    width: 100%;
}

.vehicle-gallery-thumb.active img,
.vehicle-gallery-thumb:hover img,
.vehicle-gallery-thumb:focus img {
    filter: saturate(1.08);
    opacity: 1;
}

/* Tour Detail */
.tour-detail-page {
    background: var(--light);
}

.tour-detail-hero {
    align-items: center;
    background: center / cover no-repeat;
    color: var(--white);
    display: flex;
    min-height: 72vh;
    padding: 140px 0 90px;
}

.tour-detail-hero .container {
    position: relative;
    z-index: 2;
}

.tour-detail-hero h1 {
    font-size: 92px;
    margin: 16px 0 22px;
    max-width: 850px;
    text-transform: uppercase;
}

.tour-detail-hero p {
    font-size: 19px;
    max-width: 700px;
}

.back-link {
    align-items: center;
    color: var(--white);
    display: inline-flex;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 28px;
    transition: color var(--transition);
}

.back-link:hover,
.back-link:focus {
    color: var(--gold);
}

.tour-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.tour-detail-content {
    padding: 90px 0;
}

.tour-detail-panel,
.tour-summary-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.tour-detail-panel + .tour-detail-panel {
    margin-top: 24px;
}

.tour-detail-panel h1,
.tour-detail-panel h2,
.tour-summary-card h3 {
    color: var(--dark);
    font-size: 46px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.tour-detail-panel p {
    color: var(--gray);
    margin-bottom: 16px;
}

.tour-route-list {
    color: var(--gray);
    counter-reset: route;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-route-list li {
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    gap: 16px;
    padding: 16px 0;
}

.tour-route-list li::before {
    align-items: center;
    background: var(--gold);
    color: var(--white);
    content: counter(route, decimal-leading-zero);
    counter-increment: route;
    display: inline-flex;
    flex: 0 0 42px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.tour-summary-card {
    position: sticky;
    top: 110px;
}

.summary-item {
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    gap: 14px;
    padding: 18px 0;
}

.summary-item i {
    color: var(--gold);
    font-size: 24px;
}

.summary-item span {
    color: #888;
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.summary-item strong {
    color: var(--dark);
    display: block;
}

.tour-detail-note {
    background: var(--light);
    border-left: 4px solid var(--gold);
    color: var(--olive);
    font-weight: 600;
    margin: 22px 0;
    padding: 14px 16px;
}

.tour-detail-gallery {
    background: var(--white);
    padding: 90px 0;
}

.tour-gallery-img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tour-not-found {
    padding-top: 150px;
}

/* Reviews */
.reviews {
    background: var(--white);
    padding: 100px 0;
}

.review-card {
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
    padding: 35px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.stars {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-card p {
    color: var(--gray);
    line-height: 1.7;
}

.review-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 20px;
}

/* Contact */
.contact {
    background: var(--white);
    padding: 100px 0;
}

.contact-panel {
    margin: 0 auto;
    max-width: 920px;
    text-align: center;
}

.contact-panel h3 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-panel > p {
    color: var(--gray);
    margin: 0 auto 34px;
    max-width: 640px;
}

.contact-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
}

.contact-item {
    align-items: center;
    background: var(--light);
    border: 1px solid rgba(86, 81, 51, .12);
    border-radius: 10px;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: 132px;
    padding: 20px 14px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-item:hover,
.contact-item:focus {
    border-color: rgba(211, 159, 39, .6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
    color: var(--dark);
    transform: translateY(-4px);
}

.contact-item i {
    color: var(--gold);
    font-size: 26px;
}

.contact-item span {
    overflow-wrap: anywhere;
}

.btn-book {
    min-width: min(100%, 320px);
}

.booking-modal .modal-content {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.booking-modal .modal-header,
.booking-modal .modal-footer {
    border: 0;
    padding: 24px 28px 0;
}

.booking-modal .modal-body {
    padding: 22px 28px 8px;
}

.booking-modal .modal-footer {
    padding-bottom: 28px;
}

.booking-modal .modal-title {
    color: var(--dark);
    font-size: 42px;
}

.form-control,
.form-select {
    border-color: #ddd;
    border-radius: 0;
    padding: 13px 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(211, 159, 39, .18);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 92px;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar {
        background: rgba(0, 0, 0, .9);
    }

    .navbar-collapse {
        padding: 14px 0 8px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .nav-link::after {
        left: 0;
        width: 42px;
    }

    .language-switch {
        align-self: flex-start;
        margin: 10px 0 4px;
    }

    .hero h1 {
        font-size: 76px;
    }

    .tour-detail-hero h1 {
        font-size: 70px;
    }

    .tour-summary-card {
        position: static;
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cars-copy {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 66px;
    }

    .custom-navbar {
        padding: 7px 0;
    }

    .navbar-brand {
        font-size: 27px;
        line-height: 1;
    }

    .navbar-toggler {
        align-items: center;
        border-radius: 0;
        display: inline-flex;
        height: 40px;
        justify-content: center;
        padding: 0;
        width: 44px;
    }

    .navbar-toggler-icon {
        height: 1.25em;
        width: 1.25em;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, .94);
        margin: 8px -20px -7px;
        max-height: calc(100svh - 58px);
        overflow-y: auto;
        padding: 18px 20px 22px;
        text-align: center;
        transition: height .32s ease;
    }

    .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }

    .nav-link::after {
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        width: 46px;
    }

    .custom-navbar .navbar-nav .nav-link:hover::after,
    .custom-navbar .navbar-nav .nav-link:focus::after,
    .custom-navbar .navbar-nav .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }

    .language-switch {
        align-self: center;
        margin: 12px auto 0;
    }

    .section-title {
        margin-bottom: 28px;
    }

    .section-title h2,
    .cars h2 {
        font-size: 42px;
    }

    .section-title p {
        font-size: 16px;
        line-height: 1.55;
        margin: 0 auto;
        max-width: 320px;
    }

    .hero {
        align-items: flex-start;
        background: url("../images/optimized/hero/hero.jpg") 6% center / cover no-repeat;
        min-height: 85svh;
        padding: 92px 0 28px;
    }

    .hero::before {
        content: none;
    }

    .hero .overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .5) 38%, rgba(0, 0, 0, .12) 70%, rgba(0, 0, 0, .08) 100%);
    }

    .hero .container {
        display: flex;
        justify-content: flex-start;
        min-height: calc(85svh - 120px);
        position: relative;
        width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: auto;
        max-width: 285px;
        padding: 0;
        width: 52vw;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1.7px;
        line-height: 1.2;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 48px);
        line-height: 1.0;
        margin: 10px 0;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.48;
        margin-bottom: 14px;
        max-width: 260px;
    }

    .hero-buttons {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr;
        bottom: 0;
        left: 50%;
        margin: 0;
        position: absolute;
        transform: translateX(-50%);
        width: min(310px, calc(100vw - 44px));
    }

    .hero-buttons .btn {
        align-items: center;
        display: inline-flex;
        font-size: 16px;
        justify-content: center;
        min-height: 56px;
        padding: 15px 18px;
        text-align: center;
        white-space: normal;
    }

    .features {
        padding: 12px 0;
    }

    .features .row {
        display: grid;
        gap: 6px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-left: 0;
        margin-right: 0;
    }

    .features .feature-item {
        max-width: none;
        min-width: 0;
        padding: 0;
        width: auto;
    }

    .features .feature-item i {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .features .feature-item h5 {
        font-size: 9px;
        line-height: 1.12;
        margin: 0 auto 2px;
        max-width: 62px;
    }

    .features .feature-item p {
        font-size: 8px;
        line-height: 1.12;
        margin: 0 auto;
        max-width: 62px;
    }

    .features .feature-item:last-child {
        grid-column: auto;
        justify-self: auto;
        width: auto;
    }

    .tour-card {
        border-radius: 8px;
        margin: 0 auto;
        max-width: 100%;
    }

    .tour-card img {
        aspect-ratio: 16 / 11;
        height: auto;
        object-position: center;
    }

    .tour-content {
        padding: 22px;
    }

    .tour-content h4 {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 12px;
    }

    .tour-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .tour-info {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        margin-bottom: 18px;
    }

    .tour-btn {
        width: 100%;
    }

    .cars p,
    .review-card p,
    .contact-panel > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cars-copy,
    .contact-panel {
        margin: 0 auto;
        max-width: 430px;
        text-align: center;
    }

    .cars .row {
        --bs-gutter-y: 2rem;
        text-align: center;
    }

    .cars h2 {
        margin-bottom: 16px;
    }

    .cars p {
        margin-bottom: 22px;
    }

    .car-options {
        gap: 12px;
        margin-bottom: 20px;
    }

    .car-option {
        padding: 18px 15px;
        text-align: center;
    }

    .car-option span {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .cars-benefits {
        justify-content: center;
    }

    .cars-showcase {
        margin: 0 auto;
        max-width: 360px;
    }

    .cars-main-img {
        aspect-ratio: 16 / 11;
    }

    .cars-thumb-row img {
        aspect-ratio: 4 / 3;
    }

    .tour-detail-hero {
        min-height: auto;
        padding: 108px 0 50px;
    }

    .tour-detail-hero h1 {
        font-size: 52px;
        overflow-wrap: anywhere;
    }

    .tour-detail-hero p {
        font-size: 16px;
    }

    .tour-detail-content,
    .tour-detail-gallery {
        padding: 58px 0;
    }

    .tour-detail-panel,
    .tour-summary-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 430px;
    }

    .tour-detail-panel h1,
    .tour-detail-panel h2,
    .tour-summary-card h3 {
        font-size: 38px;
    }

    .tour-route-list li {
        align-items: flex-start;
        gap: 12px;
    }

    .tour-gallery-img {
        aspect-ratio: 4 / 3;
    }

    .tours-section,
    .cars,
    .gallery-section,
    .reviews,
    .contact {
        padding: 48px 0;
    }

    .tours-section .row,
    .reviews .row {
        --bs-gutter-y: 24px;
    }

    .gallery-section .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .gallery-img {
        aspect-ratio: 1 / 1;
        height: 164px;
        object-fit: cover;
    }

    .review-card {
        margin: 0 auto;
        max-width: 430px;
        padding: 26px 24px;
    }

    .stars {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .booking-modal .modal-dialog {
        margin: 0 auto;
        max-width: 92%;
    }

    .booking-modal .modal-content {
        border-radius: 14px;
    }

    .booking-modal .modal-header,
    .booking-modal .modal-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .booking-modal .modal-body {
        padding: 18px 22px 6px;
    }

    .booking-modal .modal-title {
        font-size: 34px;
    }

    .vehicle-modal .modal-dialog {
        margin: 0 auto;
        max-width: 92%;
    }

    .vehicle-modal .modal-header {
        padding: 18px 18px 10px;
    }

    .vehicle-modal .modal-title {
        font-size: 34px;
    }

    .vehicle-modal .modal-body {
        padding: 0 18px 18px;
    }

    .vehicle-gallery {
        gap: 12px;
    }

    .vehicle-gallery-main {
        aspect-ratio: 4 / 5;
        max-height: 66vh;
    }

    .vehicle-gallery-nav {
        height: 40px;
        width: 40px;
    }

    .vehicle-gallery-prev {
        left: 10px;
    }

    .vehicle-gallery-next {
        right: 10px;
    }

    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .booking-modal .form-control,
    .booking-modal .form-select,
    .booking-modal .btn {
        min-height: 48px;
        width: 100%;
    }

    .modal.fade .modal-dialog {
        transform: translateY(18px) scale(.98);
        transition: transform .28s ease-out;
    }

    .modal.show .modal-dialog {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 14px;
    }

    .hero {
        background-position: 6% center;
        min-height: 85svh;
        padding-bottom: 28px;
    }

    .hero .container {
        min-height: calc(85svh - 120px);
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-content {
        max-width: 255px;
        width: 54vw;
    }

    .tour-detail-hero h1 {
        font-size: 42px;
    }

    .section-title h2,
    .cars h2 {
        font-size: 38px;
    }

    .tour-content h4 {
        font-size: 30px;
    }

    .tour-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tour-detail-actions .btn {
        width: 100%;
    }

    .tour-detail-panel,
    .tour-summary-card {
        padding: 22px;
    }

    .tour-route-list li::before {
        flex-basis: 36px;
        font-size: 20px;
        height: 36px;
        width: 36px;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .hero-buttons .btn {
        font-size: 15px;
        min-height: 54px;
        min-width: 0;
        overflow-wrap: anywhere;
        padding: 14px 16px;
        white-space: normal;
    }

    .contact-item {
        min-height: 104px;
        padding: 16px 12px;
    }

    .contact-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .contact-panel h3 {
        font-size: 34px;
    }

    .car-options,
    .cars-thumb-row {
        grid-template-columns: 1fr;
    }

    .cars-showcase {
        max-width: 330px;
    }

    .cars-benefits {
        align-items: stretch;
        flex-direction: column;
    }

    .cars-benefits span {
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .gallery-img {
        height: 150px;
    }
}

@media (max-width: 390px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-content {
        max-width: 220px;
        width: 54vw;
    }

    .tour-detail-hero h1 {
        font-size: 36px;
    }

    .section-title h2,
    .cars h2,
    .tour-detail-panel h1,
    .tour-detail-panel h2,
    .tour-summary-card h3 {
        font-size: 32px;
    }

    .tour-content h4 {
        font-size: 28px;
    }
}

@media (max-width: 340px) {
    .hero-buttons {
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .gallery-img {
        height: 136px;
    }
}
