:root {
    --bg-color: #f8f7f4;           /* Warm off-white, easy on the eyes */
    --surface-color: #ffffff;       /* Pure white for cards/surfaces */
    --surface-light: #f1ede8;       /* Slightly warm light surface */
    --text-color: #1a1a1a;          /* Near-black, not harsh */
    --text-muted: #6b6b6b;          /* Warm medium gray */
    --text-light: #9a9a9a;          /* Light gray for subtle text */
    --accent-color: #c0392b;        /* Deep automotive red */
    --accent-hover: #a93226;        /* Darker red on hover */
    --accent-light: rgba(192, 57, 43, 0.1);  /* Light red tint */
    --secondary-color: #2c3e50;     /* Deep navy for contrast */
    --border-color: rgba(0, 0, 0, 0.1);
    --border-medium: rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.25);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background-color: #fff;
    color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Top Bar */
.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 2rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-links {
    display: flex;
    gap: 1.5rem;
}

.top-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Header */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid transparent;
    padding-top: 40px; /* Space for Top Bar */
}

.header.scrolled {
    padding-top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.top-bar {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.4s ease;
}

body.header-scrolled .top-bar {
    transform: translateY(-100%);
}

body.nav-open .header {
    height: 100vh !important;
    backdrop-filter: none !important;
    background: #ffffff !important;
    border-bottom: none !important;
}

body.nav-open .top-bar {
    transform: translateY(-100%) !important;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2px;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-color);
}

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

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .header-search {
        display: flex;
    }
}

.header-search input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    background: var(--surface-light);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.header-search input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-search button:hover {
    background: var(--accent-hover);
}

.nav-desktop {
    display: none;
}

@media (max-width: 899px) {
    .nav-desktop {
        display: none;
    }
}

@media (min-width: 900px) {
    .nav-desktop {
        display: flex;
        gap: 3rem;
    }

    .nav-desktop a {
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--text-color);
        position: relative;
        text-transform: uppercase;
    }

    .nav-desktop a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--accent-color);
        transition: width 0.3s ease;
    }

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

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

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown > a {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .nav-dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: var(--surface-color);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        margin-top: 1rem;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        display: block;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        color: var(--text-color);
        text-transform: none;
        font-weight: 500;
    }

    .dropdown-menu a::after {
        display: none;
    }

    .dropdown-menu a:hover {
        background: var(--accent-light);
        color: var(--accent-color);
    }

    .dropdown-menu.mega-menu {
        min-width: 450px;
        display: flex;
        gap: 2rem;
        padding: 1.5rem;
    }

    .mega-column {
        flex: 1;
    }

    .mega-column h4 {
        font-size: 0.85rem;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
        letter-spacing: 1px;
    }

    .mega-column a {
        padding: 0.4rem 0;
    }

    .nav-desktop {
        align-items: center;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
}

.icon-btn:hover {
    background: var(--accent-light);
    color: var(--accent-color);
    border-color: rgba(192, 57, 43, 0.2);
    transform: translateY(-2px);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-color);
    box-shadow: var(--shadow-sm);
}

.menu-btn {
    display: flex;
}

@media (min-width: 900px) {
    .menu-btn {
        display: none;
    }
}

/* Hero Section V2 */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.92) 30%, rgba(26, 26, 26, 0.55) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #ff8a80;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-content h1 span {
    color: #ff8a80;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3.5rem;
}

/* Part Finder Widget */
.part-finder {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-lg);
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .finder-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.finder-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.finder-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.finder-field select {
    background: var(--surface-light);
    border: 1.5px solid var(--border-color);
    color: var(--text-color);
    padding: 12px;
    border-radius: 6px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
}

.finder-field select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.finder-btn {
    width: 100%;
    padding: 16px;
}

/* Trust Bar */
.trust-bar {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.trust-item svg {
    color: #ff8a80;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Category Section */
.categories-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.cat-card {
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    padding: 3rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cat-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(192, 57, 43, 0.12);
    background: #fff;
}

.cat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cat-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cat-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Brand Section */
.brand-section {
    background: var(--surface-light);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brand-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    animation: scrollBrands 40s linear infinite;
    padding: 0 3rem;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    opacity: 0.4;
    transition: var(--transition);
    letter-spacing: 2px;
}

.brand-item:hover {
    opacity: 1;
    color: var(--accent-color);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Products Section */
.products-section {
    padding: 10rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.header-main h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.header-main h2 span {
    color: var(--accent-color);
}

.header-main p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 57, 43, 0.3);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--surface-light);
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(120%);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.product-info {
    padding: 1.5rem;
}

.product-cat {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-color);
}

.add-to-cart {
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* About Section */
.about-section {
    padding: 10rem 3rem;
    background: var(--surface-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text, .visit-info {
    flex: 1;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .about-text, .visit-info {
        padding: 10rem 5rem;
    }
}

.about-text h2, .visit-info h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 2rem;
    color: var(--text-color);
}

.about-text h2::after, .visit-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image, .visit-image {
    flex: 1;
    min-height: 50vh;
    background-color: var(--surface-light);
    position: relative;
    overflow: hidden;
}

.about-image img, .visit-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 2s ease;
}

.about-image:hover img, .visit-image:hover img {
    transform: scale(1.03);
}

/* Delivery Section */
.delivery-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .delivery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.delivery-card {
    padding: 4rem 2rem;
    background: var(--surface-color);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.delivery-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(192, 57, 43, 0.1);
}

.delivery-icon {
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.delivery-card p {
    color: var(--text-muted);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    background: var(--surface-color);
}

.social-icon:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: var(--accent-light);
    transform: translateY(-3px);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.visit-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.visit-info h2 span {
    color: var(--accent-color);
}

.directions-link:hover, .phone-link:hover {
    color: var(--accent-hover);
    transform: translateX(5px);
}

/* Testimonials */
.testimonials {
    padding: 8rem 2rem;
    background-color: var(--surface-color);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(192,57,43,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.about-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.feature p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-color);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--surface-light) 0%, transparent 50%);
}

/* Sell Your Vehicle */
.sell-vehicle {
    padding: 10rem 3rem;
    background: var(--bg-color);
}

.sell-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1.5px solid var(--border-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
    .sell-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.sell-content {
    padding: 6rem;
}

.sell-perks {
    list-style: none;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sell-perks li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.sell-perks li svg {
    color: var(--accent-color);
}

.sell-image-box {
    position: relative;
    min-height: 400px;
}

.sell-image-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* Service Excellence */
.service-section {
    padding: 10rem 3rem;
    background: var(--surface-light);
}

.service-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.service-intro h2 {
    font-size: 3rem;
    color: var(--text-color);
}

.service-intro h2 span {
    color: var(--accent-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(192, 57, 43, 0.1);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: 10rem 3rem;
    background: var(--surface-light);
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(192, 57, 43, 0.1);
}

.stars {
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.author {
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 8rem 3rem 4rem;
    border-top: 4px solid var(--accent-color);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.newsletter-form {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    flex: 1;
    font-size: 0.9rem;
    font-family: var(--font-primary);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.newsletter-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--accent-hover);
}

.footer-bottom {
    max-width: 1400px;
    margin: 6rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

.brand span {
    color: #ff8a80;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--accent-color);
    color: #fff;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.fab:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 57, 43, 0.55);
}

.fab svg {
    stroke: #fff;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface-color);
    max-width: 1000px;
    width: 100%;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--surface-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .modal-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.modal-image {
    background: var(--surface-light);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 4rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--accent-color);
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-details {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    color: var(--text-color);
}

.detail-row span {
    color: var(--text-muted);
}

.view-full-details {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.view-full-details:hover {
    color: var(--accent-color);
}

/* Scroll Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section Labels */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 1200px) {
    .header-container { padding: 0 1.5rem; }
    .hero-container { padding: 0 1.5rem; }
    .products-section { padding: 5rem 1.5rem; }
    .categories-section { padding: 5rem 1.5rem; }
}

@media (max-width: 991px) {
    .hero-content h1 { font-size: 3.5rem; }
    .finder-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header { top: 0; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border-color); }
    .hero-v2 { min-height: auto; padding: 120px 0 60px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .about-container { grid-template-columns: 1fr; }
    .sell-container { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .visit-container { grid-template-columns: 1fr; }
    .header-search { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .finder-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-container { height: 70px; }
    .logo-text { font-size: 1.1rem; }
}

/* Mobile Nav Toggle Fix */
.nav-desktop.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 1.5rem 60px;
    align-items: stretch;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: none;
}

.nav-desktop.active a {
    font-size: 1.4rem;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--text-color);
}

.nav-desktop.active .close-menu {
    display: flex !important;
    position: absolute;
    top: 30px;
    right: 30px;
    border: 1px solid var(--border-color);
    background: var(--surface-light);
    color: var(--text-color);
}

/* Mobile Dropdowns */
.nav-dropdown.mobile-open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--surface-light) !important;
    margin: 10px 0 !important;
    width: 100% !important;
    text-align: left;
    padding: 0 !important;
    border-radius: 8px;
}

.nav-dropdown.mobile-open .dropdown-menu a {
    font-size: 1.1rem !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
}

.mobile-nav-footer {
    display: none;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nav-desktop.active .mobile-nav-footer {
    display: block;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.mobile-contact-item {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border: none !important;
    padding: 0 !important;
}

.mobile-contact-item svg {
    color: var(--accent-color);
}

.mobile-socials {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.mobile-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-color) !important;
    padding: 0 !important;
    color: var(--text-muted);
}

.mobile-socials a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color) !important;
    color: #fff !important;
}

@media (max-width: 899px) {
    .nav-desktop.active {
        padding-top: 120px;
    }
}
