/* ==========================================
   Adventure Car Rentals - Premium Styles
   ========================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-black: #151515;
    /* Adjusted to match Deepal image background */
    --color-dark: #1a1a1a;
    --color-dark-gray: #202020;
    --color-gray: #2a2a2a;
    --color-light-gray: #888888;
    --color-gold: #d4a853;
    --color-gold-light: #e8c478;
    --color-gold-dark: #b8923d;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
    --gradient-hero: radial-gradient(ellipse at center bottom, rgba(212, 168, 83, 0.15) 0%, transparent 60%);

    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;

    /* Sizes */
    --header-height: 80px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--color-black);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100px;
}

.header.scrolled .header__logo {
    max-height: 80px;
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 40px;
}

.header__left,
.header__right {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.header__right {
    justify-content: flex-end;
}

.header__center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 10;
}

.header__logo {
    max-height: 150px;
    /* Logo size */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    transition: all var(--transition-normal);
}

.header__line {
    flex: 1;
    height: 1px;
    background-color: var(--color-white);
    margin: 0 20px;
    opacity: 0.8;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* CTA Button */
/* CTA Button */
.nav__cta {
    padding: 12px 35px;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-black);
    /* Dark text for better contrast on gradient */
    background: linear-gradient(90deg, #b96956 0%, #6da1b9 100%);
    /* Reddish to Blue gradient */
    border: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 105, 86, 0.4);
    filter: brightness(1.1);
}


/* Navigation Menu */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav__menu--left {
    margin-left: 15px;
}

.nav__menu--right {
    margin-right: 15px;
}

.nav__link {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-light-gray);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-normal);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

/* Language Dropdown */
.nav__language {
    position: relative;
}

.nav__language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--color-light-gray);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav__language-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-white);
}

.nav__language-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-normal);
}

.nav__language.active .nav__language-arrow {
    transform: rotate(180deg);
}

.nav__language-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: var(--color-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.nav__language.active .nav__language-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__language-list li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.75rem;
    color: var(--color-light-gray);
    transition: all var(--transition-fast);
}

.nav__language-list li a:hover {
    background: rgba(212, 168, 83, 0.1);
    color: var(--color-gold);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    padding-top: 140px;
    /* Reduced from 180px */
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 20px;
    /* Reduced from 40px */
}

/* Car Image Wrapper - Top element with faded edges */
.hero__car-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 5;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent),
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: source-in;
}

.hero__car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.2));
}

.hero__content {
    background: transparent;
    padding: 20px;
    max-width: 1000px;
    z-index: 10;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero__title {
    font-family: 'Cinzel', var(--font-title);
    font-weight: 700;
    line-height: 1.3;
    /* Increased for better glow visibility */
    margin-bottom: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    /* Force GPU for crisper rendering */
}

/* Logic to prevent word-break */
.word {
    display: inline-block;
    white-space: nowrap;
    margin: 0 0.15em;
    /* Subtle space between words */
}

.hero__title-main,
.hero__title-sub {
    display: block;
    color: var(--color-white);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 3.5vw, 2.2rem);
    /* Reduced by ~30% */
    transition: all var(--transition-normal);
}

/* Staggered Letter Animation Styles */
.char {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease,
        text-shadow 0.3s ease,
        color 0.3s ease;
    cursor: default;
    backface-visibility: hidden;
}

.char.active {
    opacity: 1;
}

/* Backlight / Glow Effect on Hover */
.char:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 10px rgba(212, 168, 83, 1),
        0 0 20px rgba(212, 168, 83, 0.8),
        0 0 40px rgba(212, 168, 83, 0.4);
    transform: scale(1.15) translateY(-8px);
    z-index: 20;
}

.hero__description {
    font-family: 'Cinzel', var(--font-title);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    color: var(--color-off-white);
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
    display: block;
    width: 100%;
}

.hero__actions {
    margin-bottom: 20px;
}

.hero__cta {
    display: inline-block;
    padding: 12px 40px;
    background: var(--gradient-gold);
    color: var(--color-black);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
    font-family: 'Cinzel', var(--font-title);
    opacity: 0;
    transform: translateY(20px);
}

.hero__cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.6);
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* ===== Features Section ===== */
.features {
    padding: 0 0 100px 0;
    /* No top padding */
    background: var(--color-black);
    position: relative;
    margin-top: 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.features__title {
    font-family: 'Cinzel', var(--font-title);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: var(--color-off-white);
    letter-spacing: 6px;
    margin-bottom: 70px;
    opacity: 0;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    cursor: default;
}

.features__title:hover {
    color: var(--color-white);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(212, 168, 83, 0.4);
    transform: scale(1.03);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 168, 83, 0.1);
}

.feature-card__icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.1);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.5));
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-gold);
}

.feature-card__title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-off-white);
    margin-bottom: 15px;
}

.feature-card__description {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-light-gray);
    letter-spacing: 0.5px;
}

/* ===== Adventure / Destinations Section ===== */
.adventure-section {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.adventure-card {
    background: var(--color-dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.adventure-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 168, 83, 0.1);
}

.adventure-card__image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.adventure-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.adventure-card:hover .adventure-card__image {
    transform: scale(1.1);
}

.adventure-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--color-white);
}

.adventure-card__name {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.adventure-card__location {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.adventure-card__content {
    padding: 20px;
    color: var(--color-light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll reveal with scale */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* Media queries removed from here and moved to the end of file */

/* ===== Utility Classes ===== */
.text-gold {
    color: var(--color-gold);
}

.bg-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero CTA Button ===== */
.hero__cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: linear-gradient(90deg, #b96956 0%, #6da1b9 100%);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185, 105, 86, 0.4);
}

/* Hero description handled above */

/* ===== Section Titles ===== */
.section-title {
    font-family: 'Cinzel', var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-white);
    font-style: normal;
    transition: all var(--transition-normal);
    cursor: default;
}

.section-title:hover {
    color: var(--color-gold);
    text-shadow: 0 0 40px rgba(212, 168, 83, 0.6), 0 0 80px rgba(212, 168, 83, 0.4);
    transform: scale(1.03);
}

.section-subtitle {
    text-align: center;
    color: var(--color-light-gray);
    font-size: 1rem;
    margin-bottom: 40px;
    font-style: normal;
    transition: all var(--transition-normal);
}

.section-subtitle:hover {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ===== Vehicles Section ===== */
.vehicles-section {
    padding: 80px 0;
    background: var(--color-black);
}

.vehicles-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.vehicles-filters .filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-light-gray);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.vehicles-filters .filter-btn:hover,
.vehicles-filters .filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vehicle-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 168, 83, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 168, 83, 0.1);
}

/* Hero Section Adjustments */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    padding-top: 140px;
    /* Reduced from 180px */
    position: relative;
    overflow: hidden;
}

.hero__container {
    gap: 20px;
    /* Reduced gap */
}

/* Reduced font sizes by approx 30% */
.hero__title-main,
.hero__title-sub {
    font-size: clamp(0.9rem, 3.5vw, 2.2rem);
    letter-spacing: 4px;
}

/* Hero description handled above */

/* Vehicle Card Image Fix */
.vehicle-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* Changed to cover to fill the square if needed, or contain */
    padding: 0;
    transition: transform 0.8s ease;
    /* Removing the black background square effect */
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    /* Ensuring no background color interferes */
    background: transparent;
}

.vehicle-card:hover .vehicle-card__image {
    transform: scale(1.1);
}

.vehicle-card__content {
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.vehicle-card__title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--color-white);
}

.vehicle-card__year {
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.vehicle-card__price {
    display: inline-block;
    padding: 8px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.vehicle-card__price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.vehicle-card__features {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-card__feature {
    padding: 4px 10px;
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--color-light-gray);
    letter-spacing: 0.5px;
}

/* ===== Vehicle Modal ===== */
.vehicle-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-modal.active {
    display: flex;
}

.vehicle-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.vehicle-modal__content {
    position: relative;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.vehicle-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-modal__close svg {
    width: 24px;
    height: 24px;
}

.vehicle-modal__body {
    padding: 30px;
}

/* ===== Vehicle Gallery Carousel ===== */
.vehicle-modal__gallery {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.vehicle-modal__image-container {
    width: 100%;
    height: 300px;
    background: #0c0c0c;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .vehicle-modal__image-container {
        height: 400px;
    }
}

.vehicle-modal__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}





.carousel-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.vehicle-modal__title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vehicle-modal__price {
    display: inline-block;
    padding: 12px 35px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #D8000C, #9E0008);
    border-radius: 50px;
}

.vehicle-modal__description {
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.vehicle-modal__features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.vehicle-modal__features li {
    color: var(--color-light-gray);
    margin-bottom: 10px;
}

.vehicle-modal__cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #25d366, #128C7E);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.vehicle-modal__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--color-black), var(--color-dark));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.about-tagline {
    font-style: italic;
    color: var(--color-light-gray);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--color-gold);
}

.about-list {
    list-style: none;
    margin-bottom: 25px;
}

.about-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-light-gray);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.about-list li strong {
    color: var(--color-white);
}

.about-mission {
    padding: 20px;
    background: rgba(212, 168, 83, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.about-image img {
    max-width: 250px;
    margin: 0 auto;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--color-black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-trigger:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-panel {
    max-height: 300px;
}

.faq-panel p {
    padding-bottom: 20px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--color-dark), var(--color-black));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-description {
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.contact-method svg {
    width: 24px;
    height: 24px;
}

.contact-method.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.contact-method.phone:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.contact-form-wrapper {
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.promo-input-wrapper {
    display: flex;
    gap: 10px;
}

.promo-input-wrapper input {
    flex: 1;
}

.btn-validate-promo {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-validate-promo:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.promo-message {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
}

.promo-message.success {
    color: #10b981;
}

.promo-message.error {
    color: #ef4444;
}

/* Terms Checkbox Styles */
.terms-checkbox {
    margin-top: 10px;
}

.terms-checkbox .checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

.terms-checkbox .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #3b82f6;
    cursor: pointer;
}

.terms-checkbox .checkbox-label a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.terms-checkbox .checkbox-label a:hover {
    color: #60a5fa;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(90deg, #b96956, #6da1b9);
    border: none;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185, 105, 86, 0.4);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-light-gray);
    margin-top: 15px;
    line-height: 1.7;
}

.footer-logo {
    max-height: 80px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-light-gray);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: var(--color-light-gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-light-gray);
    transition: all var(--transition-fast);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-light-gray);
    font-size: 0.85rem;
}

.footer-bottom p a,
.footer p a {
    margin-left: 10px;
    text-decoration: underline;
    opacity: 0.8;
    color: inherit;
    transition: all var(--transition-fast);
}

.footer-bottom p a:hover,
.footer p a:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--color-dark);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--color-gold);
    animation: toastSlideIn 0.3s ease;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Interactive Reservation Steps */
.vehicle-modal__reservation {
    background: var(--color-dark-gray);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.reservation-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeIn 0.3s ease;
}

.step-question {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.interactive-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.interactive-input:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.2);
}

.step-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.step-next-btn {
    flex: 1;
    padding: 12px;
    background: var(--gradient-gold);
    color: var(--color-black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.step-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 168, 83, 0.3);
}

.step-back-btn {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--color-light-gray);
    color: var(--color-light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.step-back-btn:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Adjustments */
.vehicle-modal__content {
    max-height: 90vh;
    overflow-y: auto;
}

.vehicle-modal__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 20px 0;
}

.vehicle-modal__features li {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--color-light-gray);
    border-left: 3px solid var(--color-gold);
}

/* ===== Custom Flatpickr Glassmorphism Theme ===== */
.flatpickr-calendar {
    background: rgba(20, 20, 20, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(212, 168, 83, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    font-family: var(--font-body) !important;
    width: 315px !important;
    padding: 10px !important;
    animation: flatpickrFadeIn 0.3s ease !important;
}

@keyframes flatpickrFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(212, 168, 83, 0.2) !important;
}

.flatpickr-months {
    padding: 10px 0 !important;
}

.flatpickr-month {
    color: var(--color-white) !important;
    fill: var(--color-white) !important;
}

.flatpickr-current-month {
    font-family: var(--font-title) !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 600 !important;
}

.flatpickr-weekday {
    color: var(--color-gold) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
}

.flatpickr-day {
    color: var(--color-white) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-day:hover {
    background: rgba(212, 168, 83, 0.2) !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: var(--color-black) !important;
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.4) !important;
}

.flatpickr-day.inRange {
    background: rgba(212, 168, 83, 0.1) !important;
    box-shadow: none !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.1) !important;
    cursor: default !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: var(--color-gold) !important;
    fill: var(--color-gold) !important;
    padding: 10px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--color-white) !important;
    fill: var(--color-white) !important;
}

/* Style the text inputs that trigger Flatpickr */
.contact-form input[type="text"][id*="Date"],
.interactive-input[id*="Date"] {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px !important;
}

.contact-form input[type="text"][id*="Date"]:focus,
.interactive-input[id*="Date"]:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.2);
}

/* Discount and Pricing UI */
.discount-notice {
    background: rgba(212, 168, 83, 0.15);
    border-left: 4px solid var(--color-gold);
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInLeft 0.5s ease-out;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
}

.final-price {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.availability-msg.success {
    color: #2ecc71;
    margin-bottom: 20px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Form Price Breakdown */
#contactPriceBreakdown {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px dashed rgba(212, 168, 83, 0.3);
    animation: fadeIn 0.4s ease-out;
}

#contactPriceBreakdown:empty {
    display: none;
}

.contact-price-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-line.discount {
    color: var(--color-gold);
    font-weight: 500;
}

.summary-line.total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-white);
}

.summary-line.total span:last-child {
    color: var(--color-gold);
}

/* ==========================================
   Responsive & Media Queries
   ========================================== */

/* Tablet & Mobile (Standard) */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header {
        height: 65px;
    }

    .header.scrolled {
        height: 55px;
    }

    .header__container {
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 5px;
    }

    .header__left,
    .header__right {
        flex: 1 1 0;
        /* Equal width pieces */
        overflow: visible;
    }

    .header__left {
        display: flex;
        justify-content: flex-start;
    }

    .header__right {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }

    .header__center {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        padding: 0 10px;
    }

    .header__line {
        display: none;
    }

    .header__logo {
        max-height: 42px;
        /* Increased for visibility */
        width: auto;
        display: block;
    }

    .header.scrolled .header__logo {
        max-height: 35px;
    }

    .nav__menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--color-dark);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition-normal);
        border-bottom: 1px solid rgba(212, 168, 83, 0.1);
        z-index: 999;
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__toggle {
        display: flex;
        padding: 5px;
    }

    .nav__toggle span {
        width: 20px;
        height: 2px;
    }

    .nav__link {
        font-size: 0.9rem;
    }

    .nav__cta {
        padding: 6px 12px;
        font-size: 0.6rem;
        letter-spacing: 0px;
        white-space: nowrap;
        border-radius: 4px;
        background: var(--gradient-gold);
        /* Gold back for visibility */
        color: var(--color-black);
    }

    .nav__language-btn {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero__container {
        padding: 0 20px;
    }

    .hero__title {
        margin-bottom: 15px;
    }

    .hero__title-main,
    .hero__title-sub {
        font-size: clamp(1rem, 5vw, 1.8rem) !important;
        letter-spacing: 2px !important;
        line-height: 1.3;
    }

    .hero__description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin: 15px auto !important;
        text-align: center !important;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        text-align: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-modal__content {
        max-width: 100%;
        margin: 10px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .header__container {
        padding: 0 8px;
    }

    .nav__cta {
        padding: 4px 8px;
        font-size: 0.52rem;
    }

    .nav__language-btn {
        padding: 3px 6px;
        font-size: 0.7rem;
    }

    .hero__title-main,
    .hero__title-sub {
        font-size: clamp(0.85rem, 6vw, 1.2rem) !important;
        letter-spacing: 1px !important;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

.carousel-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   Mobile: Section Reorder & Compact Features
   ========================================== */
@media screen and (max-width: 768px) {

    /* Reorder: Show vehicles before features on mobile */
    body {
        display: flex;
        flex-direction: column;
    }

    .header {
        order: 1;
    }

    .hero {
        order: 2;
    }

    .vehicles-section {
        order: 3;
    }

    .features {
        order: 4;
    }

    .about-section {
        order: 5;
    }

    .faq-section {
        order: 6;
    }

    .footer {
        order: 7;
    }

    .whatsapp-float {
        order: 8;
        position: fixed;
    }

    /* Compact feature cards on mobile */
    .features {
        padding: 40px 0;
    }

    .features__grid {
        gap: 10px;
    }

    .feature-card {
        padding: 12px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .feature-card__title {
        font-size: 0.55rem;
        margin-bottom: 4px;
        letter-spacing: 0.5px;
    }

    .feature-card__description {
        font-size: 0.5rem;
        line-height: 1.3;
        display: block;
    }

    .features__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}