:root {
    /* Breakpoint System */
    --mobile-sm: 320px;
    /* iPhone SE */
    --mobile: 375px;
    /* iPhone 12/13 */
    --mobile-lg: 428px;
    /* iPhone 14 Pro Max */
    --tablet: 768px;
    /* iPad */
    --tablet-lg: 1024px;
    /* iPad Pro / Desktop Entry */
    --desktop: 1280px;
    /* Laptop */
    --desktop-lg: 1440px;
    /* Desktop High Res */
    --desktop-xl: 1920px;
    /* Full HD */
    --desktop-2xl: 2560px;
    /* 2K Display */
    --desktop-4k: 3840px;
    /* Ultra HD 4K */

    /* Primary Colors */
    --color-primary: #000000;
    --color-accent: #DC143C;
    --color-accent-hover: #b81032;
    --white: #FFFFFF;

    /* Gray Scale */
    --gray-900: #0A0A0A;
    --gray-800: #1A1A1A;
    --gray-700: #2D2D2D;
    --gray-500: #6B6B6B;
    --gray-300: #A3A3A3;

    /* Spacing System (Dynamic scaling) */
    --space-xs: clamp(6px, 0.5vw, 8px);
    --space-sm: clamp(10px, 0.8vw, 12px);
    --space-md: clamp(14px, 1.1vw, 16px);
    --space-lg: clamp(20px, 1.5vw, 24px);
    --space-xl: clamp(28px, 2vw, 32px);
    --space-2xl: clamp(40px, 3vw, 48px);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-standard: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Base Colors - Legacy Support */
    --bg-color: var(--gray-900);
    --bg-card: var(--gray-800);
    --text-primary: var(--white);
    --text-secondary: var(--gray-300);
    --container-width: 1400px;
    --header-height: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--gray-900);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Headlines Mobile */
.h1-mobile {
    font-size: 32px;
    line-height: 38px;
    font-weight: 900;
}

.h2-mobile {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.h3-mobile {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

/* Body Mobile */
.body-large {
    font-size: 16px;
    line-height: 24px;
}

.body-main {
    font-size: 14px;
    line-height: 22px;
}

.caption {
    font-size: 12px;
    line-height: 18px;
}

/* Stats Typography */
.stat-value-text {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.stat-label-text {
    font-size: 11px;
    line-height: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* Blue Ambient Glow */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 80vh;
    background: #3b82f6;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

body::before {
    left: -150px;
}

body::after {
    right: -150px;
}


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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-accent {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
    /* Glowing Text */
}

.center {
    text-align: center;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    z-index: 99;
    backdrop-filter: blur(5px);
}

.scroll-top-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: all;
}


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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: 90px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 10px;
    /* Moved more to the left */
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo img {
    height: 80px;
    /* Ticken kleiner */
    width: auto;
    object-fit: contain;
    transition: var(--transition-standard);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 3rem;
    transition: var(--transition-standard);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    opacity: 0.85;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    transition: all var(--transition-fast);
}

.phone-link:hover {
    color: var(--color-accent);
    transform: scale(1.05);
}

.badge-247 {
    background: var(--color-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(220, 20, 60, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(220, 20, 60, 0.4);
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 2001;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    /* Placeholder Car */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-bg .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), rgba(10, 10, 10, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
}

.car-brand-small {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: normal;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.check-icon {
    color: var(--color-accent);
    margin-right: 5px;
    font-weight: bold;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

/* Trust Bar */
.trust-bar {
    background: transparent;
    padding: 2rem 0;
}

.trust-bar-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.trust-bar-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust-bar-container {
        gap: 2rem;
    }

    .trust-bar-item {
        font-size: 0.85rem;
    }
}

/* Actions Section Redesign */
.actions-section {
    background: var(--bg-color);
    padding: 100px 0;
}

.actions-card-red {
    background: linear-gradient(135deg, #600000 0%, #000000 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.actions-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.promo-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.text-accent-alt {
    color: var(--color-accent);
}

.promo-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.promo-motto {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-item small {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.btn-action-glow {
    background: var(--color-accent);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(225, 29, 72, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(225, 29, 72, 0.7);
    }

    100% {
        box-shadow: 0 0 10px rgba(225, 29, 72, 0.4);
    }
}

@media (max-width: 600px) {
    .countdown-timer {
        gap: 1rem;
    }

    .countdown-item span {
        font-size: 2rem;
    }
}

/* Fleet Section */
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 99px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.85rem;
    transition: 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: white;
    color: black;
    border-color: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.car-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.car-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.2);
}

.car-image-wrapper {
    height: 250px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.4);
}

/* Hover Zoom Effect on Image */
.car-card:hover .car-image-wrapper img {
    transform: scale(1.05);
}

.car-image-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.car-placeholder {
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
}

.car-details {
    padding: 1.5rem;
}

.car-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.car-specs {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.car-price span strong {
    color: white;
    font-size: 1.1rem;
}

.car-price {
    color: var(--text-secondary);
}

.details-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.details-btn:hover {
    background: var(--color-accent-hover);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.4);
}

.details-btn i {
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 0.95rem;
    max-width: 250px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-newsletter p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 15px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--color-accent-hover);
}

.newsletter-note {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-extra {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-branding,
    .footer-newsletter {
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Prices Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(145deg, rgba(225, 29, 72, 0.05), var(--bg-card));
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.price-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-features {
    margin-bottom: 2rem;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-features li i {
    color: var(--color-accent);
}

.full-width {
    width: 100%;
}

/* About Section */
.about-section {
    background: #000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.showroom-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.red-subtitle {
    color: var(--color-accent) !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.bold-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1rem 0 2rem;
    color: var(--white);
    text-transform: none;
}

.about-text {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feature i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--white);
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.about-stats-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.about-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-lab {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: none;
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 3rem;
    }
}

/* FAQ Section */
.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
    background: #0F0F0F;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    text-align: left;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 32px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.info-card i {
    color: var(--color-accent);
}

.map-container {
    flex-grow: 1;
    background: #151515;
    border-radius: 12px;
    min-height: 400px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

@media (max-width: 900px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card.featured {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        padding: 5rem 2rem;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateX(100%);
        visibility: hidden;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: block;
        z-index: 2001;
    }

    .hero {
        padding-top: var(--header-height);
    }

    .hero-content {
        transform: translateY(-30px);
    }

    .badge-pill {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== ULTIMATE VEHICLE DETAIL LAYOUT (60/40 Split) ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-standard);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.vehicle-detail-desktop {
    display: grid;
    grid-template-columns: 60fr 40fr;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Image Section (Left) */
.image-section {
    position: relative;
    background: #000;
    overflow: hidden;
}

.image-carousel-desktop {
    width: 100%;
    height: 100%;
}

.image-carousel-desktop .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-button {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
}

.back-button:hover {
    background: var(--color-accent);
    transform: translateX(-4px);
    border-color: var(--color-accent);
}

.thumbnail-master-container {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    width: calc(100% - 64px);
    max-width: 500px;
}

.thumbnail-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-behavior: smooth;
    padding: 10px 0;
}

.thumbnail-nav::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

.thumb-scroll-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumb-scroll-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.thumb-item {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.actions-top-right {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.icon-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

/* Content Section (Right) */
.content-section {
    background: #000000;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.content-wrapper {
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.vehicle-header {
    margin-bottom: 32px;
}

.brand {
    display: block;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.model {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.social-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-300);
}

.rating-val {
    color: #FFC107;
    font-weight: 700;
}

/* Stats Grid */
.stats-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.2);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: var(--color-accent);
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tabs & Info */
.description {
    margin-bottom: 32px;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
}

.specs-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #FFFFFF;
    border-bottom-color: var(--color-accent);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.spec-row.highlight .spec-val {
    color: var(--color-accent);
    font-weight: 700;
}

.included-features h3 {
    font-size: 16px;
    margin: 32px 0 16px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-300);
}

.feature .icon {
    color: #4CAF50;
    font-weight: 800;
}

/* Booking Bar */
.booking-bar {
    position: sticky;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 20%, #000000 100%);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    z-index: 100;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
}

.price-value span {
    font-size: 14px;
    color: var(--gray-500);
}

.cta-button {
    padding: 16px 36px;
    background: var(--color-accent);
    border: none;
    border-radius: 12px;
    color: #FFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
    transition: 0.3s;
}

.cta-button:hover {
    background: #E11D48;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.5);
}

.spacer-bottom-desktop {
    height: 120px;
}

/* Responsive Adjustments */
@media (max-width: 1279px) {
    .vehicle-detail-desktop {
        grid-template-columns: 55fr 45fr;
    }

    .content-wrapper {
        padding: 32px;
    }

    .model {
        font-size: 36px;
    }
}

@media (max-width: 1023px) {
    .vehicle-detail-desktop {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .image-section {
        height: 60vh;
    }

    .content-section {
        overflow-y: visible;
        border-left: none;
    }

    .booking-bar {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .image-section {
        height: 50vh;
    }

    .model {
        font-size: 28px;
    }

    .stats-grid-desktop {
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        margin: 0 -16px 24px;
        padding: 0 16px;
        scrollbar-width: none;
    }

    .stat-card {
        min-width: 130px;
    }

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

    .content-wrapper {
        padding: 24px 16px;
    }

    .booking-bar {
        padding: 16px;
    }

    .price-value {
        font-size: 24px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }

    .thumbnail-nav {
        display: none;
    }
}

@media (min-width: 1920px) {
    .content-wrapper {
        max-width: 800px;
        padding: 64px;
    }

    .model {
        font-size: 64px;
    }

    .price-value {
        font-size: 40px;
    }
}

@media (min-width: 3840px) {
    .content-wrapper {
        max-width: 1200px;
        padding: 96px;
    }

    .model {
        font-size: 84px;
    }

    .description {
        font-size: 20px;
    }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Custom Scrollbar for Content Section */
.content-section::-webkit-scrollbar {
    width: 6px;
}

.content-section::-webkit-scrollbar-track {
    background: transparent;
}

.content-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s;
}

.content-section::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Stat Counter Utility */
.stat-value {
    font-variant-numeric: tabular-nums;
}

/* Main Gallery Navigation Arrows */
.gallery-nav-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 100 !important;
}

.gallery-nav-btn::after {
    display: none !important;
    /* Hide default Swiper icons */
}

.gallery-nav-btn i {
    font-size: 24px;
}

.gallery-nav-btn:hover {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.swiper-button-prev.gallery-nav-btn {
    left: 24px !important;
}

.swiper-button-next.gallery-nav-btn {
    right: 24px !important;
}

@media (max-width: 480px) {
    .gallery-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next.gallery-nav-btn {
        right: 12px !important;
    }
}

/* Form Success State */
.form-success-container {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease forwards;
}

.form-success-container h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1.5rem 0 0.5rem;
}

.form-success-container p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

/* Checkmark Animation */
.checkmark-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb543;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb543;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb543;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px #4bb5431a;
    }
}

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

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

/* Legal Pages Styles */
.legal-page {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 100px;
    background: #000;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 900;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content p {
    color: var(--gray-300);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--gray-300);
    margin-bottom: 0.8rem;
    list-style-type: none;
    position: relative;
}

.legal-content li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

/* Footer Branding Logo */
.footer-branding .logo img {
    height: 80px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
    }

    .footer-branding .logo img {
        height: 70px;
    }
}

/* Optimization for small mobile devices */
@media (max-width: 480px) {
    .header {
        height: 80px;
        /* Shorter header on tiny screens */
    }

    .header.scrolled {
        height: 70px;
    }

    .logo img {
        height: 40px;
        /* Much smaller logo */
    }

    .header-actions {
        gap: 0.75rem;
        /* Tighter gap */
    }

    .phone-link {
        font-size: 0.8rem;
        gap: 5px;
    }

    .badge-247 {
        padding: 2px 6px;
        font-size: 0.65rem;
        border-radius: 4px;
    }

    .header-container {
        padding: 0 8px;
    }

    .menu-toggle {
        font-size: 1.25rem;
    }
}

@media (max-width: 350px) {

    /* Extreme cases (e.g. iPhone SE 1st gen) */
    .phone-link {
        font-size: 0.75rem;
    }

    .logo img {
        height: 35px;
    }
}