/*
Theme Name: GMSV UK
Author: Digital Speed
Author URI: https://digitalspeed.co.uk
Version: 1.0
Description: UK Franchise replica of GMSV UK.
*/

/* Reset and Base Styles */
:root {
    --aec-red: #e30613;
    --aec-dark: #1a1a1a;
    --aec-light: #f4f4f4;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Sticky Nav Styling */
#site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.1); /* Transparent at first */
    backdrop-filter: blur(5px);
}

#site-header.scrolled {
    background: #1a1a1a; /* Solid dark like AEC site */
    padding: 10px 50px;
}

/* Make the GMC Hero fill the screen */
.wp-block-cover {
    min-height: 100vh !important;
}


body {

    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-logo__img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 240px;
}

.logo-square {
    width: 50px;
    height: 50px;
    background: #e30613;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-sv {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e30613;
}

.nav-menu a.has-dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown Menu Styles */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-menu li:hover .sub-menu,
.nav-menu .sub-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    padding: 0;
}

.nav-menu .sub-menu a {
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.nav-menu .sub-menu a::after {
    display: none;
}

/* Brands Dropdown with Images */
.menu-item-brands > .sub-menu {
    padding: 15px;
    min-width: 350px;
}

.brand-dropdown-item {
    margin-bottom: 0;
}

.brand-dropdown-item:last-child {
    margin-bottom: 0;
}

.brand-dropdown-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    padding: 18px 20px !important;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.brand-dropdown-link:hover {
    background: #f5f5f5;
}

.brand-dropdown-logo {
    width: 160px !important;
    height: auto !important;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block !important;
}

@media (min-width: 1024px) {
    .menu-item-brands > .sub-menu {
        left: 50%;
        right: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px 10px;
        min-width: 560px;
        max-width: 720px;
        padding: 12px;
        transform: translate(-50%, -10px);
    }

    .nav-menu li.menu-item-brands:hover > .sub-menu,
    .nav-menu li.menu-item-brands > .sub-menu.active {
        transform: translate(-50%, 0);
    }

    .menu-item-brands > .sub-menu .brand-dropdown-item {
        margin: 0;
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.language-selector img {
    width: 24px;
    height: 16px;
}

.language-selector::after {
    content: '▼';
    font-size: 10px;
    color: #666;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}

.header-phone,
.header-email {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-phone:hover,
.header-email:hover {
    color: #e30613;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1003;
    position: relative;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

@media (max-width: 1023px) {
    .menu-close {
        display: block;
    }
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    transition: visibility 0.4s ease, opacity 0.4s ease;
}

body.menu-open .mobile-menu-overlay {
    visibility: visible;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 50px;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.08);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-background {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.hero-text {
    max-width: 560px;
    color: white;
    z-index: 3;
    padding: 40px 44px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-slide.active .hero-text {
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 480px;
}

.hero-button {
    display: inline-block;
    background: #e30613;
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-button:hover {
    background: #c10510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.hero-button:hover::before {
    left: 100%;
}

.hero-vehicles {
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 65%;
    height: 75%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-vehicles img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 80px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.pagination-dot {
    width: 32px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scaleY(1.5);
}

.pagination-dot.active {
    background: #e30613;
    width: 48px;
}

/* Hero Footer Text */
.hero-footer-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    color: white;
    font-size: 12px;
    opacity: 0.9;
}

/* Scroll Animation Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }

/* Our Brands Section */
.brands-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.brands-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    display: inline-block;
    position: relative;
}

.brands-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 92px;
    height: 3px;
    background: var(--aec-red, #e30613);
    border-radius: 999px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 96px;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    text-decoration: none;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
    border-color: rgba(227, 6, 19, 0.22);
}

.brand-logo img {
    max-width: 180px;
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover img {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.05);
}

.brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 56px;
    background: rgba(0,0,0,0.04);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Services Section */
.services-section {
    padding: 60px 40px;
    background: #f8f8f8;
    text-align: center;
}

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

.services-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    display: inline-block;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 92px;
    height: 3px;
    background: var(--aec-red, #e30613);
    border-radius: 999px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    max-width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
    background: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    line-height: 1.4;
}

.service-description {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive Design */

/* Large Desktop (1200px+) - Default styles above apply */

/* Desktop/Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
    .header-container {
        padding: 0 30px;
    }

    .hero-content {
        padding: 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-text {
        padding: 32px 36px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 16px;
    }

    .service-image {
        height: 180px;
    }

    .service-title {
        font-size: 13px;
    }

    .service-description {
        font-size: 12px;
    }

    .brands-logos {
        gap: 72px;
    }

    .brand-logo {
        padding: 16px 24px;
    }

    .brand-logo img {
        max-width: 170px;
        height: 52px;
    }

    .brand-placeholder {
        width: 170px;
        height: 52px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 12px;
    }

    .main-navigation {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 50px;
        padding-bottom: 40px;
        box-shadow: -4px 0 25px rgba(0,0,0,0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s, opacity 0.4s;
        overflow-y: auto;
        z-index: 1002;
    }

    .main-navigation.active {
        visibility: visible;
        opacity: 1;
        right: 0;
    }

    .menu-close {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-close:hover {
        transform: scale(1.1);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-menu > li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-navigation.active .nav-menu > li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-navigation.active .nav-menu > li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active .nav-menu > li:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.active .nav-menu > li:nth-child(3) { transition-delay: 0.2s; }
    .main-navigation.active .nav-menu > li:nth-child(4) { transition-delay: 0.25s; }
    .main-navigation.active .nav-menu > li:nth-child(5) { transition-delay: 0.3s; }
    .main-navigation.active .nav-menu > li:nth-child(6) { transition-delay: 0.35s; }
    .main-navigation.active .nav-menu > li:nth-child(7) { transition-delay: 0.4s; }
    .main-navigation.active .nav-menu > li:nth-child(8) { transition-delay: 0.45s; }
    .main-navigation.active .nav-menu > li:nth-child(9) { transition-delay: 0.5s; }
    .main-navigation.active .nav-menu > li:nth-child(10) { transition-delay: 0.55s; }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-menu > li > a {
        padding: 22px 30px;
        font-size: 18px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        min-width: 100%;
        display: none;
        background: #f8f8f8;
    }

    .nav-menu .sub-menu.active {
        display: block;
    }

    .brand-dropdown-link {
        padding: 15px 25px !important;
        gap: 15px !important;
    }

    .brand-dropdown-logo {
        width: 130px !important;
    }

    .menu-item-brands > .sub-menu {
        min-width: 100%;
        padding: 0;
    }

    .nav-menu .sub-menu a {
        padding: 20px 50px;
        font-size: 16px;
    }

    .nav-menu a.has-dropdown::after {
        font-size: 14px;
    }

    .header-contact {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 30px;
        width: 100%;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    .header-phone,
    .header-email {
        font-size: 17px;
        padding: 16px 20px;
        background: #f5f5f5;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
    }

    .language-selector {
        flex-direction: row;
        justify-content: center;
        padding: 25px 30px;
        width: 100%;
        border-top: 1px solid #eee;
        font-size: 16px;
    }

    .language-selector img {
        width: 32px;
        height: 20px;
    }

    .header-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px;
        width: 100%;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    .header-phone,
    .header-email {
        font-size: 14px;
    }

    .language-selector {
        padding: 25px;
        width: 100%;
        border-top: 1px solid #eee;
    }

    .logo-square {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }

    .logo-sv {
        font-size: 28px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero-section {
        min-height: 550px;
        margin-top: 50px;
    }

    .hero-content {
        padding: 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-text {
        padding: 28px 32px;
        max-width: 450px;
    }

    .hero-button {
        padding: 12px 28px;
        font-size: 12px;
    }

    .hero-vehicles {
        width: 70%;
        height: 60%;
    }

    .hero-pagination {
        bottom: 60px;
        left: 20px;
    }

    .pagination-dot {
        width: 28px;
        height: 3px;
    }

    .pagination-dot.active {
        width: 40px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-left {
        left: 16px;
    }

    .hero-arrow-right {
        right: 16px;
    }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-footer-text {
        right: 20px;
        bottom: 20px;
        font-size: 10px;
    }

    .brands-section {
        padding: 48px 30px;
    }

    .brands-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .brands-logos {
        gap: 72px;
    }

    .brand-logo {
        padding: 16px 24px;
    }

    .services-section {
        padding: 48px 30px;
    }

    .services-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

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

    .service-card {
        padding: 16px;
    }

    .service-image {
        height: 160px;
    }

    .service-title {
        font-size: 12px;
    }

    .service-description {
        font-size: 11px;
    }

    .partners-section {
        padding: 48px 30px;
    }

    .partners-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .partners-subtitle {
        font-size: 12px;
        margin-bottom: 32px;
    }

    .partners-logos {
        gap: 36px;
    }

    .partner-logo {
        max-width: 120px;
    }
}

/* Mobile Landscape/Small Tablet (641px - 767px) */
@media (max-width: 767px) {
    .site-header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    .logo-square {
        width: 32px;
        height: 32px;
        font-size: 13px;
        margin-right: 8px;
    }

    .logo-sv {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    .main-navigation {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 10px;
    }

    .language-selector {
        margin-left: auto;
    }

    .hero-section {
        min-height: 100vh;
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-slide {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        padding: 0;
        align-items: stretch;
        justify-content: flex-end;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
    }

    .hero-text {
        padding: 28px 24px;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        border: none;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-button {
        padding: 12px 28px;
        font-size: 12px;
    }

    .hero-vehicles {
        display: none;
    }

    .hero-pagination {
        left: 24px;
        bottom: auto;
        top: 100px;
    }

    .pagination-dot {
        width: 24px;
        height: 3px;
    }

    .pagination-dot.active {
        width: 36px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        top: 45%;
    }

    .hero-arrow-left {
        left: 12px;
    }

    .hero-arrow-right {
        right: 12px;
    }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-footer-text {
        display: none;
    }

    .brands-section {
        padding: 40px 16px;
    }

    .brands-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .brands-logos {
        gap: 40px;
    }

    .brand-logo {
        padding: 14px 20px;
    }

    .services-section {
        padding: 40px 16px;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

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

    .service-card {
        padding: 14px;
    }

    .service-image {
        height: 140px;
    }

    .service-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 10px;
        line-height: 1.4;
    }

    .partners-section {
        padding: 40px 16px;
    }

    .partners-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .partners-subtitle {
        font-size: 11px;
        margin-bottom: 28px;
    }

    .partners-logos {
        gap: 28px;
    }

    .partner-logo {
        max-width: 100px;
    }
}

/* Mobile Portrait (481px - 640px) */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }

    .service-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
        margin: 0;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .service-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }

    .service-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .service-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .partners-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        justify-items: center;
    }

    .partner-logo {
        max-width: 120px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .logo-square {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin-right: 6px;
    }

    .logo-sv {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .nav-menu a {
        font-size: 9px;
        padding: 4px 6px;
    }

    .language-selector img {
        width: 18px;
        height: 12px;
    }

    .hero-text {
        padding: 24px 20px;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-button {
        padding: 11px 24px;
        font-size: 11px;
    }

    .hero-pagination {
        left: 20px;
        top: 90px;
    }

    .pagination-dot {
        width: 20px;
        height: 2px;
    }

    .pagination-dot.active {
        width: 32px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-arrow-left {
        left: 8px;
    }

    .hero-arrow-right {
        right: 8px;
    }

    .hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .brands-section {
        padding: 32px 12px;
    }

    .brands-title {
        font-size: 20px;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .brands-logos {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .brand-logo {
        padding: 14px 22px;
    }

    .services-section {
        padding: 32px 12px;
    }

    .services-title {
        font-size: 20px;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 14px;
        gap: 14px;
    }

    .service-image {
        width: 90px;
        min-width: 90px;
        height: 90px;
    }

    .service-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .service-description {
        font-size: 10px;
        line-height: 1.45;
    }

    .partners-section {
        padding: 32px 12px;
    }

    .partners-title {
        font-size: 20px;
        margin-bottom: 6px;
        letter-spacing: 2px;
    }

    .partners-subtitle {
        font-size: 10px;
        margin-bottom: 24px;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .partner-logo {
        max-width: 100px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 374px) {
    .logo-sv {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 6px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-description {
        font-size: 10px;
    }

    .brands-title,
    .services-title,
    .partners-title {
        font-size: 18px;
    }

    .service-image {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .service-title {
        font-size: 10px;
    }

    .service-description {
        font-size: 9px;
    }
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

/* About Hero */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.about-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Sections */
.about-page {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.about-page .about-section {
    display: flex;
    align-items: stretch;
    width: 100vw;
    min-height: 450px;
    margin: 0;
    padding: 0;
    max-width: none !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.about-section--reverse {
    flex-direction: row-reverse;
}

.about-section > * {
    flex: 0 0 50%;
    width: 50%;
}

.about-section-media {
    display: flex;
    align-self: stretch;
}

.about-section-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: #1a1a1a;
}

.about-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #f9f9f9;
}

.about-section--reverse .about-section-content {
    background: #f9f9f9;
}

.about-section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e30613;
    margin-bottom: 14px;
}

.about-section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.about-section-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.about-section-text p {
    margin-bottom: 14px;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

.about-section-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}


.about-section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e30613;
    margin-bottom: 16px;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-section-text p {
    margin-bottom: 16px;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

/* About Content */
.about-content {
    padding: 60px 40px;
    background: white;
}

.about-content-container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.about-content .wp-block-group__inner-container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* About Cards */
.about-cards {
    padding: 80px 40px;
    background: #f8f8f8;
}

.about-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-cards .wp-block-group__inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-card--reverse {
    flex-direction: row-reverse;
}

.about-card-media,
.about-card-content {
    flex: 1 1 0;
}

.about-card-media {
    min-height: 320px;
}

.about-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card-content {
    padding: 40px;
}

.about-card-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* About Intro */
.about-intro {
    padding: 80px 40px;
    background: white;
}

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

.about-intro-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* About Values */
.about-values {
    padding: 80px 40px;
    background: #f8f8f8;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-value-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.about-value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-value-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.about-value-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About Stats */
.about-stats {
    padding: 60px 40px;
    background: #e30613;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stat-item {
    color: white;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* About Team */
.about-team {
    padding: 80px 40px;
    background: white;
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-team-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-team-member {
    text-align: center;
}

.about-team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.about-team-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.about-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.about-cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.about-cta-button {
    display: inline-block;
    background: #e30613;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 1023px) {
    .about-hero {
        margin-top: 70px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-page .about-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        max-width: none !important;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section--reverse {
        flex-direction: column;
    }

    .about-section > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .about-section-content {
        padding: 50px 30px;
        order: 2;
    }

    .about-section-media {
        min-height: 280px;
        order: 1;
    }

    .about-section-placeholder {
        min-height: 280px;
    }

    .about-section-label {
        font-size: 12px;
    }

    .about-section-title {
        font-size: 24px;
    }

    .about-section-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 0;
    }

    .about-hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    .about-page .about-section {
        padding: 0;
        gap: 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .about-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-section-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-intro,
    .about-values,
    .about-team,
    .about-cta {
        padding: 50px 20px;
    }

    .about-section-content {
        padding: 40px 25px;
    }

    .about-section-media {
        min-height: 250px;
    }

    .about-section-placeholder {
        min-height: 250px;
    }

    .about-section-label {
        font-size: 11px;
    }

    .about-section-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .about-content,
    .about-cards {
        padding: 60px 20px;
    }

    .about-stats {
        padding: 48px 20px;
    }

    .about-intro-title,
    .about-cta-title {
        font-size: 24px;
    }

    .about-values-title,
    .about-team-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .about-values-grid,
    .about-team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .about-team-photo {
        width: 120px;
        height: 120px;
    }

    .about-team-name {
        font-size: 15px;
    }

    .about-team-role {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        padding: 24px 20px;
    }
}

/* =====================================================
   END ABOUT PAGE STYLES
   ===================================================== */

/* Main Content Area */
.site-main {
    min-height: calc(100vh - 200px);
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: white;
    padding: 48px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-link {
    text-decoration: none;
    color: white;
    display: block;
}

.footer-logo__img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 260px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-aec {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    display: inline-block;
}

.footer-logo-aec::before {
    content: 'A';
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    clip-path: polygon(0 0, 50% 0, 60% 100%, 0 100%);
    z-index: 1;
}

.footer-logo-blue {
    color: #e30613;
    position: relative;
    display: inline-block;
}

.footer-logo-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 400;
}

.footer-content {
    display: flex;
    gap: 120px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-column-left {
    text-align: left;
}

.footer-column-right {
    text-align: right;
    align-items: flex-end;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.footer-link:hover {
    color: #e30613;
    transform: translateX(3px);
}

.footer-copyright {
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-top: auto;
}

/* Responsive Footer */
@media (max-width: 1199px) {
    .footer-container {
        gap: 70px;
    }
    
    .footer-content {
        gap: 100px;
    }
    
    .footer-logo-aec {
        font-size: 44px;
    }
}

@media (max-width: 1023px) {
    .site-footer {
        padding: 50px 30px;
    }
    
    .footer-container {
        gap: 60px;
    }
    
    .footer-content {
        gap: 80px;
    }
    
    .footer-logo-aec {
        font-size: 42px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .footer-content {
        flex-direction: row;
        gap: 50px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-column-right {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-logo-aec {
        font-size: 38px;
    }
    
    .footer-logo-subtitle {
        font-size: 10px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 35px 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-logo-aec {
        font-size: 32px;
    }
    
    .footer-logo-subtitle {
        font-size: 9px;
        margin-top: 6px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-column {
        width: 100%;
        gap: 14px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-copyright {
        font-size: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 374px) {
    .footer-logo-aec {
        font-size: 28px;
    }
    
    .footer-logo-subtitle {
        font-size: 8px;
    }
    
    .footer-link,
    .footer-copyright {
        font-size: 11px;
    }
}

/* ==========================================
   Brand Pages Styles
   ========================================== */

.brand-page {
    padding-top: 50px; /* Account for fixed header */
}

/* Brand Hero Section */
.brand-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    overflow: hidden;
}

.brand-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.brand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.brand-hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 20px;
    max-width: 800px;
}

.brand-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.brand-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Brand Models */
.brand-models {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.brand-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.brand-model-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-decoration: none;
    background: #fff;
    border-right: 1px solid #eee;
    transition: background 0.3s ease;
    overflow: hidden;
}

.brand-model-card:last-child {
    border-right: none;
}

.brand-model-card:hover {
    background: #f9f9f9;
}

.brand-model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-model-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.brand-model-name {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Brand Detail Sections */
.brand-detail {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.brand-detail--reverse {
    flex-direction: row-reverse;
}

.brand-detail-media {
    flex: 0 0 50%;
    width: 50%;
}

.brand-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-detail-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #1a1a1a;
}

.brand-detail-content {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #f9f9f9;
}

.brand-detail--reverse .brand-detail-content {
    background: #f9f9f9;
}

.brand-detail-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e30613;
    margin-bottom: 12px;
}

.brand-detail-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.brand-detail-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.brand-detail-text p {
    margin-bottom: 12px;
}

.brand-detail-text p:last-child {
    margin-bottom: 0;
}

.brand-detail-button {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.brand-detail-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.brand-detail-button:hover {
    background: #c10510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.brand-detail-button:hover::before {
    left: 100%;
}

/* Brand Before Footer Section */
.brand-before-footer {
    padding: 80px 40px;
    background: #f5f5f5;
    text-align: left;
}

.brand-before-footer-content {
    max-width: 1200px;
    margin: 0;
}

.brand-before-footer-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.brand-before-footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.brand-before-footer-text p {
    margin-bottom: 12px;
}

.brand-before-footer-text p:last-child {
    margin-bottom: 0;
}

.brand-before-footer-button {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-before-footer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.brand-before-footer-button:hover {
    background: #c10510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.brand-before-footer-button:hover::before {
    left: 100%;
}

/* Brand Page Responsive */
@media (max-width: 992px) {
    .brand-detail {
        min-height: 400px;
    }

    .brand-detail-content {
        padding: 40px 50px;
    }

    .brand-detail-title {
        font-size: 24px;
    }
}

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

    .brand-model-card {
        min-height: 180px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .brand-model-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .brand-detail {
        flex-direction: column;
        min-height: auto;
    }

    .brand-detail--reverse {
        flex-direction: column;
    }

    .brand-detail-media {
        flex: 0 0 auto;
        width: 100%;
        min-height: 300px;
    }

    .brand-detail-placeholder {
        min-height: 300px;
    }

    .brand-detail-content {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 30px;
    }

    .brand-detail-label {
        font-size: 12px;
    }

    .brand-detail-title {
        font-size: 22px;
    }

    .brand-detail-text {
        font-size: 14px;
    }

    .brand-before-footer {
        padding: 60px 30px;
    }

    .brand-before-footer-title {
        font-size: 24px;
    }

    .brand-before-footer-text {
        font-size: 14px;
    }
}

.brand-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.brand-model-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-decoration: none;
    background: #fff;
    border-right: 1px solid #eee;
    transition: background 0.3s ease;
}

.brand-model-card:last-child {
    border-right: none;
}

.brand-model-card:hover {
    background: #f9f9f9;
}

.brand-model-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-align: center;
}

/* Brand Car Detail Sections */
.brand-car-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-car-detail--reverse {
    flex-direction: row-reverse;
}

.brand-car-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.brand-car-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-car-detail-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.brand-car-detail-content {
    flex: 0 0 400px;
}

.brand-car-detail-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e30613;
    margin-bottom: 16px;
}

.brand-car-detail-tagline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.brand-car-detail-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.brand-car-detail-text p {
    margin-bottom: 12px;
}

.brand-car-detail-text p:last-child {
    margin-bottom: 0;
}

.brand-car-detail-button {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brand-car-detail-button:hover {
    background: #333;
}

.brand-car-detail-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.brand-car-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-car-detail-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.brand-car-detail-content {
    flex: 1;
    max-width: 550px;
}

.brand-car-detail-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e30613;
    margin-bottom: 20px;
}

.brand-car-detail-tagline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.brand-car-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.brand-car-detail-text p {
    margin-bottom: 16px;
}

.brand-car-detail-text p:last-child {
    margin-bottom: 0;
}

.brand-car-detail-button {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brand-car-detail-button:hover {
    background: #c10510;
    transform: translateY(-2px);
}

/* Brand Content Section */
.brand-content-section {
    padding: 80px 20px;
    background: #fff;
}

.brand-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-content-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.brand-content-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Brand CTA Section */
.brand-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: #fff;
}

.brand-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.brand-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.brand-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brand-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Brand Page Responsive Styles */
@media (max-width: 992px) {
    .brand-hero-title {
        font-size: 2.5rem;
    }

    .brand-cta-title {
        font-size: 2rem;
    }

    .brand-car-detail {
        gap: 40px;
        padding: 60px 30px;
    }

    .brand-car-detail-content {
        flex: 0 0 320px;
    }

    .brand-car-detail-tagline {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .brand-hero {
        min-height: 300px;
    }
    
    .brand-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .brand-hero-subtitle {
        font-size: 1rem;
    }
    
    .brand-models-section,
    .brand-content-section,
    .brand-cta-section {
        padding: 40px 20px;
    }
    
    .brand-models-grid {
        grid-template-columns: 1fr;
    }

    .brand-model-card {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .brand-model-card:last-child {
        border-bottom: none;
    }

    .brand-model-name {
        font-size: 13px;
    }

    .brand-car-detail {
        flex-direction: column;
        gap: 30px;
        padding: 50px 20px;
    }

    .brand-car-detail--reverse {
        flex-direction: column;
    }

    .brand-car-detail-content {
        flex: 0 0 auto;
        width: 100%;
        order: 2;
    }

    .brand-car-detail-image {
        width: 100%;
        order: 1;
    }

    .brand-car-detail-label {
        font-size: 12px;
    }

    .brand-car-detail-tagline {
        font-size: 24px;
    }

    .brand-car-detail-text {
        font-size: 15px;
    }

    .brand-car-detail-button {
        padding: 12px 24px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .brand-hero-title {
        font-size: 1.75rem;
    }
    
    .brand-models-title,
    .brand-cta-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .brand-models-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 0;
    }
    
    .brand-model-card {
        aspect-ratio: 3/2;
    }
    
    .brand-model-cta {
        padding: 14px 30px;
        font-size: 0.75rem;
    }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

.contact-page {
    padding-top: 50px; /* Account for fixed header */
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.contact-form-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #e30613;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.form-submit {
    margin-top: 10px;
}

.contact-submit-button {
    display: inline-block;
    padding: 16px 50px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-submit-button:active {
    transform: translateY(0);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 12px;
    color: #fff;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-info-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: row;
        justify-content: space-around;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 20px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: left;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 50px 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-submit-button {
        width: 100%;
        padding: 14px 30px;
    }
}

/* ==========================================
   Legal Page Styles
   ========================================== */

.legal-page {
    padding-top: 50px; /* Account for fixed header */
}

.legal-content-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.legal-content-section .container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 56px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.legal-content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0 0 28px;
    position: relative;
    display: inline-block;
}

.legal-content-section h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 92px;
    height: 3px;
    background: var(--aec-red, #e30613);
    border-radius: 999px;
}

.legal-content-section h2 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin: 34px 0 10px;
    padding-left: 12px;
    border-left: 3px solid var(--aec-red, #e30613);
}

.legal-content-section h3,
.legal-content-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin: 20px 0 10px;
}

.legal-content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 16px;
}

.legal-content-section ul,
.legal-content-section ol {
    margin: 0 0 16px 22px;
    padding: 0;
    color: #555;
}

.legal-content-section li {
    margin: 8px 0;
    line-height: 1.7;
    font-size: 15px;
}

.legal-content-section ul li::marker,
.legal-content-section ol li::marker {
    color: var(--aec-red, #e30613);
    font-weight: 700;
}

.legal-content-section p:last-child {
    margin-bottom: 0;
}

.legal-content-section a {
    color: var(--aec-red, #e30613);
    text-decoration: none;
    border-bottom: 1px solid rgba(227, 6, 19, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-content-section a:hover {
    color: #c10510;
    border-bottom-color: rgba(193, 5, 16, 0.55);
}

.legal-content-section p > strong {
    display: block;
    padding: 18px 20px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 12px;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.legal-content-section p em {
    display: block;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    padding: 12px 14px;
    border-left: 3px solid rgba(227, 6, 19, 0.35);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.legal-content-section a[aria-disabled="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid #e6e6e6;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 15px;
    }

    .legal-content-section .container {
        padding: 32px 22px;
    }

    .legal-content-section h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .legal-content-section .container {
        padding: 26px 18px;
        border-radius: 10px;
    }

    .legal-content-section h1 {
        font-size: 1.7rem;
    }

    .legal-content-section p {
        font-size: 14px;
    }
}

/* ============================================
   CAR DETAIL PAGES
   ============================================ */

/* Car Hero */
.car-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.car-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.car-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 900px;
}

.car-hero-tagline {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.car-hero-title {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Car Description Section */
.car-description-section {
    padding: 80px 20px;
    background: #fff;
}

.car-description-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.car-description-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.car-description-content p {
    margin-bottom: 20px;
}

/* Car Specifications Section */
.car-specs-section {
    padding: 80px 20px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.car-specs-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.car-specs-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.car-spec-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.car-spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.car-spec-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Car Features Section */
.car-features-section {
    padding: 80px 20px;
    background: #fff;
}

.car-features-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.car-features-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.car-features-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.car-features-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.car-features-content li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
    position: relative;
}

.car-features-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--aec-red, #e30613);
    font-weight: bold;
}

.car-features-content li:last-child {
    border-bottom: none;
}

/* Car Price Section */
.car-price-section {
    padding: 60px 20px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.car-price-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.car-price-display {
    margin-bottom: 30px;
}

.car-price-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.car-price-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.car-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--aec-red, #e30613);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.car-cta-button:hover {
    background: #c70511;
    transform: translateY(-2px);
}

/* Back to Brand Link */
.car-back-link {
    padding: 40px 20px;
    background: #f8f8f8;
    text-align: center;
}

.car-back-link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.car-back-link-button:hover {
    color: var(--aec-red, #e30613);
}

.car-back-link-icon {
    font-size: 1.2rem;
}

/* Car Detail Page Brand Colors */
.car-detail-page--cadillac .car-hero-tagline,
.car-detail-page--cadillac .car-price-value {
    color: var(--aec-red, #e30613);
}

.car-detail-page--gmc .car-hero-tagline,
.car-detail-page--gmc .car-price-value {
    color: #00a0dc;
}

.car-detail-page--chevrolet .car-hero-tagline,
.car-detail-page--chevrolet .car-price-value {
    color: #fed100;
}

/* Car Detail Page Responsive */
@media (max-width: 992px) {
    .car-hero {
        min-height: 50vh;
    }
    
    .car-hero-title {
        font-size: 3rem;
    }
    
    .car-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .car-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .car-specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .car-price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .car-hero-content {
        padding: 30px 15px;
    }
    
    .car-hero-title {
        font-size: 2rem;
    }
    
    .car-hero-tagline {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
    
    .car-specs-section,
    .car-features-section,
    .car-description-section {
        padding: 50px 15px;
    }
    
    .car-price-value {
        font-size: 2rem;
    }
}

/* ============================================
   TRIM SELECTOR & COLOUR PICKER
   ============================================ */

/* Trim Selector */
.car-trim-selector {
    background: #fff;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

.car-trim-selector .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.car-trim-label {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.car-trim-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.car-trim-button {
    padding: 15px 40px;
    background: #fff;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.car-trim-button:hover {
    background: #1a1a1a;
    color: #fff;
}

.car-trim-button.active {
    background: #1a1a1a;
    color: #fff;
}

/* Car Detail Page Brand Colors */
.car-detail-page--cadillac .car-trim-button {
    border-color: var(--aec-red, #e30613);
}

.car-detail-page--cadillac .car-trim-button.active,
.car-detail-page--cadillac .car-trim-button:hover {
    background: var(--aec-red, #e30613);
    border-color: var(--aec-red, #e30613);
}

.car-detail-page--gmc .car-trim-button {
    border-color: #00a0dc;
}

.car-detail-page--gmc .car-trim-button.active,
.car-detail-page--gmc .car-trim-button:hover {
    background: #00a0dc;
    border-color: #00a0dc;
}

.car-detail-page--chevrolet .car-trim-button {
    border-color: #fed100;
}

.car-detail-page--chevrolet .car-trim-button.active,
.car-detail-page--chevrolet .car-trim-button:hover {
    background: #fed100;
    border-color: #fed100;
    color: #000;
}

/* Colour Picker */
.car-colors-section {
    background: #f8f8f8;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

.car-colors-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.car-colors-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 25px;
}

.car-colors-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.car-color-swatch {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.car-color-swatch:hover {
    transform: scale(1.05);
}

.car-color-swatch.selected .car-color-circle {
    box-shadow: 0 0 0 3px #1a1a1a;
}

.car-color-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}

.car-color-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
}

/* Trim Stats Section */
.car-stats-section {
    background: #fff;
    padding: 50px 20px;
    border-bottom: 1px solid #eee;
}

.car-stats-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.car-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.car-stats-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.car-stat-item {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.car-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
}

.car-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.car-stats-fuel {
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.car-fuel-item {
    text-align: center;
}

.car-fuel-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.car-fuel-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.car-stats-disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

/* CTA Section */
.car-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.car-cta-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.car-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.car-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.car-cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--aec-red, #e30613);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.car-cta-button:hover {
    background: #c70511;
    transform: translateY(-2px);
}

/* Back to Brand Link */
.car-back-link {
    padding: 40px 20px;
    background: #f8f8f8;
    text-align: center;
}

.car-back-link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.car-back-link-button:hover {
    color: var(--aec-red, #e30613);
}

.car-back-link-icon {
    font-size: 1.2rem;
}

/* Car Hero Price */
.car-hero-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .car-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .car-trim-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .car-trim-button {
        width: 100%;
        max-width: 300px;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr;
    }
    
    .car-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .car-colors-grid {
        gap: 20px;
    }
    
    .car-color-circle {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   CAR DETAIL SPLIT LAYOUT
   ============================================ */

.car-detail-split {
    padding: 60px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.car-detail-split .container {
    max-width: 1400px;
    margin: 0 auto;
}

.car-detail-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Car Image */
.car-detail-left {
    position: sticky;
    top: 100px;
}

.car-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Right: Colours & Stats */
.car-detail-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Colour Picker in Split Layout */
.car-colors-section {
    background: transparent;
    padding: 0;
    border: none;
}

.car-colors-section .container {
    max-width: none;
    margin: 0;
}

.car-colors-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.car-colors-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.car-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.car-color-swatch:hover {
    transform: scale(1.05);
}

.car-color-swatch.selected .car-color-circle {
    box-shadow: 0 0 0 3px #1a1a1a;
}

.car-color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s ease;
}

.car-color-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
}

/* Stats in Split Layout */
.car-stats-section {
    background: transparent;
    padding: 0;
    border: none;
}

.car-stats-section .container {
    max-width: none;
    margin: 0;
}

.car-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.car-stats-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.car-stat-item {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
}

.car-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.car-stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.car-stats-fuel {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.car-fuel-item {
    text-align: center;
}

.car-fuel-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.car-fuel-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.car-stats-disclaimer {
    margin-top: 15px;
    font-size: 0.7rem;
    color: #888;
    text-align: left;
    font-style: italic;
    padding: 0 5px;
}

/* Responsive Split Layout */
@media (max-width: 992px) {
    .car-detail-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .car-detail-left {
        position: static;
        order: -1;
    }
    
    .car-detail-image {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .car-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .car-colors-grid {
        gap: 15px;
    }
    
    .car-color-circle {
        width: 45px;
        height: 45px;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CAR IMAGE CAROUSEL
   ============================================ */

.car-image-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

.car-image-track {
    position: relative;
    width: 100%;
}

.car-image-slide {
    display: none;
    width: 100%;
}

.car-image-slide.active {
    display: block;
}

.car-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CAR DETAIL SPLIT LAYOUT
   ============================================ */

.car-detail-split {
    padding: 60px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.car-detail-split .container {
    max-width: 1400px;
    margin: 0 auto;
}

.car-detail-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Car Image & Colours */
.car-detail-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.car-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Colour Picker */
.car-colors-section {
    background: transparent;
    padding: 0;
    border: none;
}

.car-colors-section .container {
    max-width: none;
    margin: 0;
}

.car-colors-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.car-colors-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.car-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.car-color-swatch:hover {
    transform: scale(1.05);
}

.car-color-swatch.selected .car-color-circle {
    box-shadow: 0 0 0 3px #1a1a1a;
}

.car-color-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s ease;
}

.car-color-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: #555;
}

/* Right: Stats */
.car-detail-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.car-stats-section {
    background: transparent;
    padding: 0;
    border: none;
}

.car-stats-section .container {
    max-width: none;
    margin: 0;
}

.car-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.car-stats-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.car-stat-item {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
}

.car-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.car-stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.car-stats-fuel {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.car-fuel-item {
    text-align: center;
}

.car-fuel-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.car-fuel-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.car-stats-disclaimer {
    margin-top: 15px;
    font-size: 0.7rem;
    color: #888;
    text-align: left;
    font-style: italic;
    padding: 0 5px;
}

/* Responsive Split Layout */
@media (max-width: 992px) {
    .car-detail-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .car-detail-left {
        order: -1;
    }
}

@media (max-width: 768px) {
    .car-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .car-colors-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .car-colors-grid {
        gap: 10px;
    }
    
    .car-color-circle {
        width: 40px;
        height: 40px;
    }
    
    .car-stats-main {
        grid-template-columns: 1fr;
    }
}

/* Trim Features */
.car-features-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.car-feature-group {
    margin-bottom: 20px;
}

.car-feature-group:last-child {
    margin-bottom: 0;
}

.car-feature-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--aec-red, #e30613);
    display: inline-block;
}

.car-feature-content {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #555;
}

.car-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.car-feature-content li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.car-feature-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--aec-red, #e30613);
}

.car-feature-content p {
    margin: 0 0 10px;
}

.car-feature-content p:last-child {
    margin-bottom: 0;
}
