:root {
    --primary-color: #ffffff;
    /* Clean White Content */
    --accent-color: linear-gradient(135deg, #b90e0e 0%, #990000 100%);
    /* Deep Luxury Red */
    --accent-solid: #b90e0e;
    --accent-hover: #990000;
    --bg-dark: #000000;
    /* Matte Black Frame */
    --bg-light: #ffffff;
    --bg-alt: #f8f9fa;
    /* Soft Grey for Sections */
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.05);
    --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Soft Luxury Shadow */
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smooth Slow Motion */
    --glass: rgba(0, 0, 0, 0.95);
    /* Dark Glass for Header */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent-solid);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-solid);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-dark);
    line-height: 1.6;
    /* Standard gov line height */
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Navigation --- */
/* --- Navigation --- */
header {
    background: var(--bg-dark);
    /* Matte Black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* --- Added Design: Energy Line Animation --- */
header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff2a2a, transparent);
    background-size: 200% 100%;
    animation: headerBorderFlow 4s linear infinite;
    z-index: 1001;
    opacity: 0.8;
}

@keyframes headerBorderFlow {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

header.scrolled {
    padding: 0;
    background: var(--glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 55px;
    filter: none;
    /* Logo restored to original */
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
    /* Gentle zoom instead of filter */
}

.nav-link {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    margin: 0 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-solid) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.lang-btn {
    font-family: 'Teko', sans-serif;
    background: var(--accent-color);
    color: #000 !important;
    padding: 6px 20px !important;
    border-radius: 2px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px !important;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.lang-btn:hover {
    color: #fff !important;
}

.lang-btn::after {
    display: none;
}

/* --- Brands Marquee --- */
.brands-section {
    padding: 3rem 0;
    background: #000000;
    /* Black Background for high contrast */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.brands-wrapper {
    display: flex;
    white-space: nowrap;
}

.brands-slide {
    display: flex;
    animation: marquee 40s linear infinite;
    gap: 5rem;
    padding-right: 5rem;
}

.brands-slide img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    /* White glow to highlight on black */
    transition: 0.5s;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle backing */
    padding: 10px;
    border-radius: 8px;
}

.brands-slide img:hover {
    transform: scale(1.1);
    background: #000;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    /* Strong white glow on hover */
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* --- Dropdown Styles --- */
/* --- Dropdown Styles --- */
.dropdown-menu {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent-solid);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: #111111 !important;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #e9ecef;
    color: var(--accent-solid) !important;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: var(--bg-alt);
    margin: 5% auto;
    padding: 3rem 3rem 6rem;
    /* Increased bottom padding */
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-title-section {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title-section h2 {
    color: #111;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main Contact Form - Light Theme */
.contact-form-wrapper .form-control {
    background: #f8f9fa !important;
    color: #111 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: none !important;
    border-radius: 4px;
}

.contact-form-wrapper .form-control::placeholder {
    color: #666;
}

/* Modal Form - Dark Theme (Keep Original) */
.modal-form .form-control,
.modal-form .form-select {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-solid) !important;
    box-shadow: 0 0 0 2px rgba(239, 35, 60, 0.2) !important;
}

.modal-form {
    display: grid;
    gap: 1.2rem;
}



.modal-form .btn {
    width: 100%;
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* --- Hero Section --- */
/* --- Hero Section --- */
/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    /* Allow scrolling if content overflows */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 50px;
    /* Top padding avoids header overlap */
    background-color: #000;

    background-image:
        /* Luxury Ambient Glow */
        radial-gradient(circle at top left, rgba(120, 0, 0, 0.5) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(120, 0, 0, 0.5) 0%, transparent 40%),

        /* Soft Light-Beam Strips (Top Left) */
        linear-gradient(135deg, rgba(100, 0, 0, 0.9) 0%, rgba(80, 0, 0, 0.2) 12%, transparent 18%, transparent 19%, rgba(255, 50, 50, 0.3) 21%, transparent 24%),

        /* Soft Light-Beam Strips (Bottom Right) */
        linear-gradient(315deg, rgba(100, 0, 0, 0.9) 0%, rgba(80, 0, 0, 0.2) 12%, transparent 18%, transparent 19%, rgba(255, 50, 50, 0.3) 21%, transparent 24%);
}

/* Restore bullets only for testimonials where they belong */
.testimonials-section {
    display: block !important;
    display: inline-block !important;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    /* Bootstrap XL width match */
    margin: 0 auto;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Anton', sans-serif;
    /* FLUID TYPOGRAPHY: Scales between 3rem and 6rem */
    font-size: clamp(3rem, 8vw, 6rem);
    font-style: italic;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-content .red {
    color: #ff3c3c;
    display: inline-block;
    transform: skewX(-5deg);
}

.hero-content .white {
    color: #ffffff;
    display: inline-block;
    transform: skewX(-5deg);
}

.hero-content h3 {
    font-family: 'Helios', sans-serif;
    font-weight: 400;
    /* FLUID TYPOGRAPHY: Scales between 1rem and 1.8rem */
    font-size: clamp(1rem, 3vw, 1.8rem);
    letter-spacing: 4px;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.hero-content p {
    font-family: 'Helios', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #cccccc;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
}

/* Hide unused HTML elements if present */
.hero-bg-left,
.hero-bg-right,
.hero::before,
.hero::after {
    display: none;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablets & Small Laptops (Max 992px) */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: clamp(3rem, 7vw, 5rem);
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 90%;
    }
}

/* Mobile Devices (Max 768px) */
/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
    .hero {
        /* Control height so next section shows aggressively */
        min-height: 70vh;
        margin-top: 10px;
        padding-top: 80px;
        padding-bottom: 0;
        /* Remove bottom buffer */

        /* Flexbox - Start from top to manually position content */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        /* Adjust background for portrait - Luxury Soft Design */
        background-image:
            /* Luxury Ambient Glow */
            radial-gradient(circle at top left, rgba(120, 0, 0, 0.5) 0%, transparent 40%),
            radial-gradient(circle at bottom right, rgba(120, 0, 0, 0.5) 0%, transparent 40%),

            /* Soft Light-Beam Strips (Top Left) */
            linear-gradient(135deg, rgba(100, 0, 0, 0.9) 0%, rgba(80, 0, 0, 0.2) 12%, transparent 18%, transparent 19%, rgba(255, 50, 50, 0.3) 21%, transparent 24%),

            /* Soft Light-Beam Strips (Bottom Right) */
            linear-gradient(315deg, rgba(100, 0, 0, 0.9) 0%, rgba(80, 0, 0, 0.2) 12%, transparent 18%, transparent 19%, rgba(255, 50, 50, 0.3) 21%, transparent 24%);
    }

    .hero-content {
        margin-top: 5vh;
        /* Pull content higher up */
        width: 100%;
    }

    .hero-content h1 {
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .hero-content h3 {
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0.5rem auto 1rem;
        /* Tight top gap, defined bottom space */
        gap: 0.5rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Small Mobile Devices (Max 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
        /* Even shorter on small screens */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }
}



/* --- Buttons --- */
.btn {
    padding: 12px 35px;
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 700;
    /* Bolder text */
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    background: #990000;
    /* Deep Red Solid */
    /* Pill shape for luxury */
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.4);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 4, 41, 0.5);
    color: #fff;
}

.btn-outline {
    background: #ffffff;
    border: none;
    color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.btn-outline:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: -1;
}

.btn:hover::after {
    animation: shimmer 1s;
}

/* --- Section Layout --- */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: #111;
    /* Dark Title */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
}

.section-title span {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* --- Inventory Grid --- */
/* --- Inventory Grid --- */
/* .inventory-grid removed for Bootstrap .row */

/* --- Cards & Features (White Block Style) --- */
.car-card,
.feature-item,
.service-card,
.process-card {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    /* Soft rounded corners */
    position: relative;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.car-card:hover,
.feature-item:hover,
.service-card:hover,
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(185, 14, 14, 0.25);
    /* Premium Red Shadow Glow */
    border-color: rgba(185, 14, 14, 0.1);
}


/* --- Car Image Standardization --- */
.car-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.car-card:hover .car-image img {
    transform: scale(1.05);
    /* Subtle premium zoom */
}

.car-details h3,
.feature-item h3,
.service-card h3,
.modal-title-section h2,
.process-card h3 {
    color: var(--text-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    /* Premium font */
    letter-spacing: -0.5px;
}

.car-card p,
.service-card p,
.feature-item p,
.process-card p {
    color: var(--text-muted);
}

.section-title h2 {
    color: #111111;
    text-transform: uppercase;
    font-weight: 600;
    /* Teko looks better slightly lighter or standard bold */
    font-size: 3rem;
    /* Increased slightly for Teko which is condensed */
    letter-spacing: 1px;
    border-bottom: 3px solid var(--accent-solid);
    display: inline-block;
    padding-bottom: 15px;
    font-family: 'Teko', sans-serif;
}

.section-title span {
    display: none;
}

/* --- Features Section --- */
.features-section {
    background: var(--bg-alt);
}

/* --- Features Grid --- */
/* .features-grid removed for Bootstrap .row */

.feature-item {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Feature Item Specifics - Clean */
.feature-item::before {
    display: none;
}

.feature-item:hover {
    transform: translate(-5px, -5px);
    border-color: #ffffff;
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-solid);
    margin-bottom: 2rem;
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* --- Stats Section --- */
.stats-section {
    background: #000;
    /* Force dark stats */
    color: #fff;
    padding: 4rem 10%;
    max-width: 100%;
    margin-top: 4rem;
}

/* --- Stats Grid --- */
/* .stats-grid removed for Bootstrap .row */

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-solid);
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- Process Section --- */
.process-section {
    padding: 100px 5%;
    background: var(--bg-alt);
    /* Light grey contrast */
}

/* --- Process Grid --- */
/* .process-grid removed for Bootstrap .row */

.process-grid {
    margin-top: 4rem;
}

.process-card {
    background: var(--bg-alt);
    padding: 3rem 2rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-solid);
    box-shadow: 0 10px 40px rgba(239, 35, 60, 0.15);
}

.process-step {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.process-card i {
    font-size: 3rem;
    color: var(--accent-solid);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.process-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-dark) !important;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Delivery Gallery --- */
.delivery-section {
    padding: 100px 5%;
}

/* --- Delivery Grid --- */
/* .delivery-grid removed for Bootstrap .row */

.delivery-grid {
    margin-top: 3rem;
}

.delivery-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 2px;
}

.delivery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.7); removed for clear view */
    transition: 0.5s;
}

.delivery-overlay {
    display: none;
    /* Hidden as requested */
}

/* Removed hover effects */
.delivery-item:hover img {
    /* filter: brightness(1); */
    transform: none;
    /* No scale */
}

/* --- Services --- */
/* --- Services --- */
/* .services-container removed for Bootstrap .row */

.service-card {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-solid) 50%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    background: #ffffff;
    border-color: rgba(185, 14, 14, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(185, 14, 14, 0.25);
    /* Premium Red Shadow */
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-solid);
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(239, 35, 60, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}



/* --- Contact Section --- */
/* --- Contact Section --- */
/* .contact-container removed for Bootstrap .row */

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form-wrapper form {
    display: grid;
    gap: 1.2rem;
}

form input,
form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.input-bright {
    color: #ffffff !important;
    font-weight: 500;
}

.input-bright::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: #888;
    padding: 8rem 5% 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #adb5bd;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-info-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 2.5rem 5%;
    border-top: 1px solid var(--border-color);
    background: #000;
}

.footer-bottom p {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-bottom-links a {
    margin-left: 2.5rem;
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom-links a:hover {
    color: var(--accent-solid);
}

/* --- Mobile Nav --- */
/* --- Mobile Nav Removed (Bootstrap handles it) --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* --- Mobile phones specific adjustments --- */
@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Reduced from 2.8rem */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        /* Reduced from 1rem */
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Stack buttons on mobile */
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 2rem;
        margin-top: 35vh;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 2.5rem 1.5rem;
        /* Reduced from 4rem to remove extra space */
    }

    .brands-section {
        padding: 1.5rem 0;
        /* Compact brands section on mobile */
    }

    .nav-links {
        width: 100%;
        left: -100%;
    }

    .nav-links.active {
        left: 0;
    }

    /* Adjust Grid Layouts for Mobile - Removed as Bootstrap handles columns */


    .car-image {
        height: 220px;
    }

    .process-step {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -10px;
    }

    .footer-grid {
        gap: 3rem;
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
    }
}

/* --- AOS Overrides --- */
[data-aos] {
    transition-duration: 800ms !important;
}

/* --- Bootstrap Overrides for Dark Theme --- */
.bg-dark {
    background-color: var(--bg-dark) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

/* --- Footer Logo --- */
/* --- Footer Logo --- */
.footer-logo img {
    filter: none;
    /* Logo restored */
}

/* --- Footer Dark Theme Override --- */
footer {
    background-color: #050505 !important;
    color: #e0e0e0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

footer h3 {
    color: #ffffff !important;
}

footer p {
    color: #aaaaaa !important;
}

/* --- Ensure Links in Footer are White/Grey --- */
.footer-links a,
.contact-info-list li,
.contact-info-list a,
.footer-bottom p,
.footer-bottom a {
    color: #bbbbbb !important;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--accent-solid) !important;
    padding-left: 5px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-solid);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--accent-solid);
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
}

/* --- Specific Inventory Card Styles --- */
.car-card {
    background: #f9f9f9;
    /* Light grey card bg like reference */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    padding-bottom: 15px;
}

.car-image {
    background: #e5e5e5;
    /* Grey background for image area */
    border-bottom: none;
    height: 220px;
    /* Slightly shorter */
}

/* Ensure title is specific and clean */
.car-details h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
    font-size: 1.1rem;
    color: #000 !important;
    text-align: center;
    text-transform: none;
    /* Reference has Normal/Title case, not all caps */
    letter-spacing: 0;
    font-weight: 700;
}

/* --- View Offers Button (Exact Clone of .btn) --- */
.btn-card-offer {
    /* Base styles from .btn */
    padding: 12px 35px;
    background: var(--accent-color);
    color: black;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: black solid 2px;
    border-radius: 20px;
    background: snow;
    /* Deep Red Solid */
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    /* Using variable as in .btn */
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.4);
    z-index: 1;

    /* Extra layout properties for Card context */
    display: block;
    margin: 10px 15px;
    text-align: center;
    text-decoration: none;
}

.btn-card-offer:hover {
    background: #000000;
    /* Black on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 4, 41, 0.5);
    color: #fff;
}

/* Shimmer from .btn::after */
.btn-card-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: -1;
}

.btn-card-offer:hover::after {
    animation: shimmer 1s;
}


/* Specific Dark Hover for View All Inventory button */
/* Specific Dark Hover for View All Inventory button */
.btn-dark-hover:hover {
    background: #000000 !important;
    box-shadow: 0 15px 30px rgba(217, 4, 41, 0.5);
    /* Red shadow on black bg */
    color: #ffffff;
}

/* --- Testimonials Section (Added via Agent) --- */
.testimonials-section {
    background: #fdfdfd;
    /* Very light grey/white background */
    padding: 4rem 0;
}

.testimonial-slide {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer, deeper shadow */
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    border: 1px solid #f0f0f0;
    border-left: 5px solid var(--accent-solid);
    /* Red Accent Line */
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.03);
    /* Subtle Watermark */
    pointer-events: none;
    font-family: serif;
}

.stars {
    color: #FFD700;
    /* Gold */
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 4px;
}

.testimonial-slide p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-family: 'Georgia', serif;
    /* Elegant serif for quotes */
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.2rem;
    text-transform: none;
}

.client-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.swiper-pagination-bullet-active {
    background: var(--accent-solid) !important;
}

/* --- Global Responsive Fixes for Big Screens (1920px+) --- */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

/* --- New Hero Section Responsive --- */
.hero-responsive {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    /* Override global section limit */
    padding: 0 !important;
    /* Override global section padding */
    margin: 0 !important;
    /* Reset margins */
    margin-top: 76px !important;
    /* Offset for fixed header (approx height) */
    background-color: #000;
    line-height: 0;
}

.hero-responsive picture,
.hero-responsive img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay-btns {
    position: absolute;
    bottom: 12%;
    /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 100;
    width: 100%;
    justify-content: center;
    padding: 0 20px;
    pointer-events: auto;
}

/* Specific adjustments for mobile based on user request */
@media (max-width: 768px) {
    .hero-responsive {
        margin-top: 60px !important;
    }

    .hero-overlay-btns {
        bottom: 10%;
        /* Adjusted for mobile */
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-overlay-btns .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 12px 25px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
        /* Stronger shadow */
    }
}

/* --- About Section Image Resizing --- */
.about-image {
    width: 100%;
    max-width: 550px;
    /* Constrain width */
    height: 400px;
    /* Fixed height to match text block visually */
    margin: 0 auto;
    /* Center in column */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Important: Ensures image covers area without distortion */
    object-position: center 20%;
    /* Focus slightly on top-center (good for faces/people) */
    transition: transform 0.5s ease;
}



/* Responsive adjustment for mobile */
@media (max-width: 992px) {
    .about-image {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

/* --- Premium Services Section (Red/Black Theme) --- */
.service-card-theme {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card-theme:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(185, 14, 14, 0.2);
    border-color: var(--accent-solid);
}

.service-card-theme .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(185, 14, 14, 0.05);
    /* Faint red bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent-solid);
    transition: all 0.4s ease;
}

.service-card-theme:hover .icon-wrapper {
    background: var(--accent-solid);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.service-card-theme h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.service-card-theme p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}
/* --- Inner Page Hero Decoration --- */
.inner-hero-decorated {
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    padding: 12rem 0 6rem;
    text-align: center;
    color: #fff;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.inner-hero-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.inner-hero-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b90e0e, transparent);
    opacity: 0.7;
}



/* --- CRAZY ADDITIONS FOR CAR SHOWROOM --- */

/* 1. 3D Tilt Effect for Cards */
.car-card, .delivery-item, .service-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.car-card:hover, .delivery-item:hover, .service-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(185, 14, 14, 0.3); /* Red glow */
    z-index: 10;
}

/* 2. Neon Red Button Pulse */
@keyframes neonPulse {
    0% { box-shadow: 0 0 5px rgba(185, 14, 14, 0.5), 0 0 10px rgba(185, 14, 14, 0.5); }
    50% { box-shadow: 0 0 20px rgba(185, 14, 14, 0.8), 0 0 30px rgba(255, 60, 60, 0.8); }
    100% { box-shadow: 0 0 5px rgba(185, 14, 14, 0.5), 0 0 10px rgba(185, 14, 14, 0.5); }
}

.btn-crazy-pulse {
    animation: neonPulse 2s infinite;
}

/* 3. Speed Lines Title Decoration */
.crazy-title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.crazy-title-wrapper::before, .crazy-title-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 4px;
    background: var(--accent-solid);
    transform: skewX(-20deg);
}

.crazy-title-wrapper::before { left: -70px; }
.crazy-title-wrapper::after { right: -70px; }

/* 4. Glassmorphism Price Tag */
.price-tag-crazy {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    color: white;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 1.2rem;
    transform: skewX(-15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 5;
}

/* 5. Spotlight Hover Effect (applied via JS usually, but CSS simulation) */
.car-card {
    position: relative;
    overflow: hidden;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
    z-index: 2;
}

.car-card:hover::before {
    left: 100%;
}

