:root {
    --primary-color: #ff0000;
    --primary-dark: #cc0000;
    --secondary-color: #000000;
    --text-light: #ffffff;
    --text-dark: #000000;
    --background-light: #ffffff;
    --background-dark: #1a1a1a;
    --primary-light: #ff6b6b;
    --accent-color: #ff4444;
    --text-color: #1f2937;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #ff0000, #cc0000);
    --gradient-dark: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --link-hover: #3b82f6;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --card-shadow: 0 3px 15px rgba(0,0,0,0.1);
    --pattern-dark: repeating-linear-gradient(45deg, #0002 0, #0002 2px, transparent 0, transparent 8px);
    --container-padding: clamp(1rem, 5vw, 2rem);
    --section-spacing: clamp(3rem, 8vw, 6rem);
    --card-spacing: clamp(1rem, 3vw, 2rem);
    --header-height: 70px;
}

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

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Add this to handle scroll locking */
body.popup-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px); /* Prevent layout shift */
}

/* Enhanced Container */
.container {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    height: var(--header-height);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Enhanced Links */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: var(--light-gray);
}

.menu-toggle {
    display: none;
}

/* Improved Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    background-color: var(--background-dark);
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
                url('https://source.unsplash.com/1920x1080/?luxury,car') center/cover;
}

.hero-container {
    position: relative;
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content-left {
    padding-right: 2rem;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-title .highlight {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-title .main-text {
    display: block;
    color: var(--text-light);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: left;
}

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

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

    .hero-content-left {
        padding-right: 0;
    }

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

    .hero-title, .hero-description {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-logo-wrapper {
        padding: 2rem;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.hero-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-logo-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced CTA Buttons */
.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

.cta-btn.secondary {
    background-color: var(--secondary-color);
    color: var (--text-light);
    border: 2px solid var(--text-light);
    margin-left: 1rem;
}

.cta-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.feature span {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }

    .cta-btn.secondary {
        margin-left: 0;
    }
}

/* Parallax Hero */
.parallax-hero {
    background: url('https://via.placeholder.com/1920x1080') center / cover no-repeat fixed;
    position: relative;
}

/* Decorative Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-shapes .shape-one {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 200px;
    opacity: 0.5;
    animation: floatShape 10s ease-in-out infinite alternate;
}

/* Sections */
.section-padding {
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--card-spacing);
    padding: var(--card-spacing);
}

.product-card {
    background-color: var(--background-light);
    padding: var(--card-spacing);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-image {
    height: 200px;
    background: var(--light-gray);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto;
}

.product-btn:hover {
    background: var(--primary-dark);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-features {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
}

/* Product rating styling */
.product-rating {
    margin: 0.5rem 0;
    color: var(--accent-color);
    font-size: 1rem;
    display: inline-block;
}

/* Hover to reveal expanded description */
.product-card:hover .extended-description {
    max-height: 1000px; /* enough to show content */
    opacity: 1;
}

/* Extended description hidden by default */
.extended-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

/* "Read More" button */
.product-toggle-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
}

.product-toggle-btn:hover {
    background: #003366;
}

/* Enhanced Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center !important;
    z-index: 2000;
    padding: 2rem;
    backdrop-filter: blur(8px);
    overflow-y: auto; /* Change from auto to hidden */
    overscroll-behavior: contain;
}

.popup-content {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: popupShow 0.4s ease-out;
    margin: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.popup-header {
    background: var(--gradient-primary);
    padding: 2.5rem 2rem;
    position: relative;
}

.popup-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-right: 2rem;
}

.popup-badge {
    position: absolute;
    top: 1.5rem;
    right: 4rem;
    background: var(--primary-light);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-intro {
    padding: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-gray);
}

.dealer-opportunity {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.dealer-opportunity::-webkit-scrollbar {
    width: 8px;
}

.dealer-opportunity::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.dealer-opportunity::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-contact {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

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

@keyframes popupShow {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Popup Responsive Adjustments */
@media (max-width: 768px) {
    .popup {
        padding: 0;
        align-items: center;
    }

    .popup-content {
        height: auto;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        margin: auto;
    }

    .popup-header {
        padding: 1.5rem;
    }

    .popup-header h2 {
        font-size: 1.25rem;
        margin-right: 2.5rem;
    }

    .popup-badge {
        top: 1rem;
        right: 3rem;
        padding: 0.25rem 1rem;
        font-size: 0.8rem;
    }

    .popup-intro {
        padding: 1rem;
        font-size: 1rem;
    }

    .dealer-opportunity {
        padding: 1rem;
        max-height: calc(80vh - 200px);
    }

    .close-btn {
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-item {
        padding: 0.75rem;
    }
}

/* Add these new utility classes */
.no-scroll {
    overflow: hidden !important;
}

.maintain-position {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Enhanced About section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

/* Enhanced Office Cards */
.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--card-spacing);
    margin-bottom: 3rem;
}

.office-card {
    background: white;
    border-radius: 10px;
    padding: var(--card-spacing);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.office-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.office-card:hover::after {
    transform: scaleX(1);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.office-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.office-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-content p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.office-content p i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    padding-top: 3rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) rotate(8deg);
}

.social-links h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
}

/* Enhanced Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

/* Vision Mission Section */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--card-spacing);
    margin: 3rem 0;
}

.vm-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.vm-item h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Business Hours Styles */
.business-hours {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin: 3rem 0;
    max-width: 600px;
    margin-inline: auto;
}

.business-hours h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    font-weight: 500;
}

/* Section Subtitles */
.section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

    .menu-toggle:hover {
        background-color: var(--light-gray);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var (--white);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .hero {
        min-height: 60vh;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
    }
    
    .product-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hours-list li {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .office-content p {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .office-content p i {
        font-size: 1.5rem;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
    }
    .grid-main {
        grid-gap: 2rem;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

/* Better Mobile Spacing */
@media (max-width: 480px) {
    .section-padding {
        padding: calc(var(--section-spacing) * 0.7) 0;
    }

    .product-card,
    .office-card {
        padding: calc(var(--card-spacing) * 0.8);
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Footer for Mobile */
@media (max-width: 480px) {
    .footer-content {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Additional Responsive Improvements */
@media (min-width: 769px) {
    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--card-spacing);
    }

    .hero-content {
        padding: clamp(2rem, 10vw, 6rem) 0;
    }
}

/* Enhanced Popup for Mobile */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        max-height: 95vh;
    }

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

/* Enhanced hero responsive design */
@media (min-width: 1024px) {
    .hero-content {
        max-width: 1400px;
        padding: 8rem 2rem;
    }

    .hero-features {
        margin-top: 6rem;
        background: rgba(255, 0, 0, 0.15);
        backdrop-filter: blur(12px);
        padding: 3rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature i {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: var(--primary-light);
    }

    .feature span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - var(--header-height));
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-features {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Shape Floating Animation */
@keyframes floatShape {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Use grid for nav container */
.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

/* Hero content as grid for more control */
.grid-hero-content {
    display: grid;
    justify-items: center;
    gap: 1rem;
}

/* Main container turned into grid */
.grid-main {
    display: grid;
    grid-gap: var(--section-spacing);
}

/* Enhance smaller screens */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
    }
    .grid-main {
        grid-gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        /* Show three columns, adjust as desired */
        grid-template-columns: repeat(3, 1fr);
        gap: var(--card-spacing);
    }
}

/* Adjust scroll padding for smooth scrolling */
html {
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
}

/* Refactored Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--background-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://source.unsplash.com/1920x1080/?luxury,car') center/cover;
    filter: saturate(0.8);
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-logo-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.hero-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    padding: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.stat-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero-container {
        padding: 4rem 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}
