/*
 * Custom Theme Stylesheet - Merchants Automobiles
 * Premium Red & Pitch Black Theme with Sleek Animations
 * Exactly matching the mockup design layout
 */

:root {
    --bg-black: #08080a;
    --bg-dark-gray: #121216;
    --bg-light-white: #ffffff;
    --bg-light-gray: #f8f9fa;
    --text-white: #ffffff;
    --text-gray: #a0a5b0;
    --text-dark: #1e2229;
    --primary-red: #E31B23;
    --hover-red: #c11219;
    --whatsapp-green: #25D366;
    --border-color: #22252c;
    --border-light: #e2e8f0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Resets & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.highlight {
    color: var(--primary-red);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-text-group {
    display: flex;
    flex-direction: column;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-badge.dark {
    color: #555860;
}

.section-heading {
    font-size: 32px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-heading.dark-text {
    color: var(--text-dark);
}

.section-subtext {
    color: #64748b;
    max-width: 600px;
    margin-top: 10px;
}

/* Header Styles */
.site-header {
    background-color: rgba(8, 8, 10, 0.98);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Logo Design */
.site-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    background: linear-gradient(135deg, var(--primary-red), #9e0e13);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-red);
    text-transform: uppercase;
}

/* Nav Menu */
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation .nav-menu a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    color: var(--text-white);
}

.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu .current-menu-item a {
    color: var(--primary-red);
}

.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.header-phone i {
    color: var(--primary-red);
    font-size: 18px;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
}

.phone-label {
    font-size: 9px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp-header {
    background-color: var(--primary-red);
    color: var(--text-white);
    font-weight: 700;
    font-size: 13px;
    padding: 11px 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.35);
}

.btn-whatsapp-header:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 22px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: right center;
    padding: 120px 20px 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #08080a;
}

@media (min-width: 1600px) {
    .hero-swiper .swiper-slide {
        background-size: contain;
        background-position: right center;
        background-repeat: no-repeat;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text-content {
    max-width: 55%;
}

.hero-subtitle {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 40px;
}

.hero-badges span {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges i {
    color: var(--primary-red);
    font-size: 14px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn-primary-hero {
    background-color: var(--primary-red);
    color: var(--text-white);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(227, 27, 35, 0.3);
}

.btn-primary-hero:hover {
    background-color: var(--hover-red);
    transform: translateY(-3px);
}

.btn-secondary-hero {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-hero:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    transform: translateY(-3px);
}

/* Hero Search Bar Panel */
.hero-search-wrapper {
    background-color: rgba(18, 18, 22, 0.95);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 100%;
    position: relative;
}

.search-input-group {
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
}

.search-bar-icon {
    font-size: 18px;
    color: var(--text-gray);
    margin-left: 15px;
}

.search-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    padding: 15px 10px;
    outline: none;
}

/* Auto Line Up Section (White Themed) */
.auto-lineup-section {
    background-color: var(--bg-light-white);
    color: var(--text-dark);
}

.auto-lineup-section .btn-view-all-header {
    color: #64748b;
    font-weight: 700;
}

.auto-lineup-section .btn-view-all-header:hover {
    color: var(--primary-red);
}

.lineup-tabs-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.lineup-tabs-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.lineup-tab {
    background: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: #475569;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.lineup-tab:hover {
    background-color: var(--bg-light-gray);
    border-color: #cbd5e1;
    color: var(--text-dark);
}

.lineup-tab.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
}

/* Slider & Carousel layout for Brand Line Up */
.lineup-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 20px;
}

.lineup-slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
}

.lineup-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.brand-models-group {
    display: none;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 10px 5px;
}

.brand-models-group.active {
    display: flex;
}

.brand-models-group .model-item-card {
    flex: 0 0 calc(25% - 22.5px);
    /* 4 cards per view */
    min-width: 210px;
    margin: 5px 0;
}

@media (max-width: 991px) {
    .lineup-slider-wrapper {
        padding: 0 50px;
    }

    .lineup-control-btn.prev-btn {
        left: 5px;
    }

    .lineup-control-btn.next-btn {
        right: 5px;
    }

    .brand-models-group .model-item-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 cards per view */
    }
}

@media (max-width: 575px) {
    .lineup-slider-wrapper {
        padding: 0;
    }

    .lineup-control-btn {
        display: none !important;
        /* Hide arrows on small mobile, scroll natively */
    }

    .brand-models-group .model-item-card {
        flex: 0 0 85%;
        /* Let part of the next card peek through */
    }
}

.lineup-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.lineup-control-btn:hover {
    background-color: var(--bg-light-white);
    border-color: #cbd5e1;
    color: var(--text-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.lineup-control-btn.prev-btn {
    left: 0;
}

.lineup-control-btn.next-btn {
    right: 0;
}

.lineup-control-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f1f5f9;
    color: #cbd5e1;
    border-color: var(--border-light);
    box-shadow: none;
}

.model-item-card {
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.model-item-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.model-item-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: none;
    font-weight: 700;
}

.model-item-card .model-badge {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    color: #64748b;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

.model-item-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.model-item-card:hover img {
    transform: scale(1.08);
}

.lineup-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    padding: 0 25px;
}

.auto-lineup-section .btn-tab-cta {
    background-color: var(--bg-light-white);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-weight: 700;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.auto-lineup-section .btn-tab-cta:hover {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 6px 18px rgba(227, 27, 35, 0.25);
    transform: translateY(-2px);
}

/* Sell Your Car Banner */
.sell-banner-section {
    background-size: cover;
    background-position: center;
    padding: 85px 20px;
    color: var(--text-white);
}

.sell-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sell-banner-content {
    flex: 1;
}

.banner-badge {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
}

.banner-title {
    font-size: 42px;
    text-transform: uppercase;
    margin: 10px 0 20px;
    line-height: 1.1;
}

.banner-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.banner-features span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-features i {
    color: var(--primary-red);
}

.sell-banner-image {
    flex: 1;
    max-width: 480px;
    display: flex;
    justify-content: center;
}

.handover-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Why Choose Merchants (White Themed) */
.why-choose-section {
    background-color: var(--bg-light-white);
    border-bottom: 1px solid var(--border-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    /* Reduced gap to help them fit better */
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.why-card {
    background-color: var(--bg-light-gray);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card-icon {
    font-size: 38px;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.why-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 27, 35, 0.3);
}

.why-card:hover .why-card-icon {
    transform: rotateY(180deg);
}

/* Brands We Work With (White Themed, Horizontal Single Row) */
.brands-work-section {
    background-color: var(--bg-light-white);
    border-bottom: 1px solid var(--border-light);
}

.btn-view-all-brands-header {
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all-brands-header:hover {
    background-color: var(--bg-light-gray);
    border-color: #cbd5e1;
}

.brands-logo-row-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 15px;
}

.brands-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    min-width: 1000px;
    /* Ensures inline display */
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    color: #64748b;
}

.brand-svg {
    width: 65px;
    height: 40px;
    transition: var(--transition-smooth);
}

.brand-logo-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

/* Hover effects for brand logo inline items */
.brand-logo-item {
    text-decoration: none;
}

.brand-logo-item:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.brand-logo-item:hover .brand-svg {
    transform: scale(1.15);
}

.brand-logo-item:hover span {
    color: var(--text-dark);
}

/* Brands Section CTA Button */
.btn-outline-red-centered {
    display: inline-block;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    background-color: transparent;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-outline-red-centered:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

/* News & Insights (White Themed) */
.news-insights-section {
    background-color: var(--bg-light-white);
}

.news-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.news-card.white-card {
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.news-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content {
    padding: 25px;
}

.news-date {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
}

.news-title {
    font-size: 16px;
    margin: 8px 0 15px;
    line-height: 1.4;
    height: 48px;
    overflow: hidden;
    color: var(--text-dark);
}

.news-title a:hover {
    color: var(--primary-red);
}

.btn-read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-read-more:hover {
    gap: 10px;
}

.news-card.white-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.news-card:hover .news-card-img img {
    transform: scale(1.08);
}

/* Social Media Section (White Themed) */
.social-feed-section {
    background-color: var(--bg-light-white);
    border-top: 1px solid var(--border-light);
}

.social-feeds-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .social-feeds-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.social-feed-col {
    width: 100%;
}

.social-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.social-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.social-brand-title:hover h3 {
    color: var(--primary-red);
}

.social-brand-title h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.social-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon-wrapper.fb-icon {
    background-color: #1877f2;
}

.social-icon-wrapper.insta-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-follow-us-link {
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.social-follow-us-link:hover {
    color: var(--primary-red);
}

.social-follow-us-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.social-follow-us-link:hover i {
    transform: translateX(3px);
}

.social-slider-wrapper {
    position: relative;
    padding: 0 35px;
}

.social-slider-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
}

.social-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.social-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.social-card {
    flex: 0 0 calc(25% - 11.25px);
    /* 4 cards per view */
    min-width: 100px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.social-card:hover img {
    transform: scale(1.06);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.play-overlay i {
    color: var(--text-white);
    font-size: 16px;
    opacity: 0.85;
    background-color: rgba(0, 0, 0, 0.45);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    /* visual center alignment */
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-card:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.social-card:hover .play-overlay i {
    opacity: 1;
    transform: scale(1.1);
    background-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(227, 27, 35, 0.4);
}

.social-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    font-size: 10px;
}

.social-slider-btn:hover {
    background-color: var(--bg-light-white);
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-slider-btn.prev-btn {
    left: 0;
}

.social-slider-btn.next-btn {
    right: 0;
}

.social-slider-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.feed-card:hover i {
    color: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.15);
}

/* Testimonials (White Themed) */
.testimonials-section {
    background-color: var(--bg-light-white);
    border-top: 1px solid var(--border-light);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    box-sizing: border-box;
    flex-shrink: 0;
}

.testimonial-slide:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.testimonial-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.rating-stars {
    color: var(--primary-red);
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-quote-icon {
    color: #e2e8f0;
    font-size: 28px;
    line-height: 1;
}

.testimonial-text.dark-text {
    font-size: 15px;
    font-style: normal;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-top: auto;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.author-info h4.dark-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #64748b;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
}

.slider-prev:disabled,
.slider-next:disabled,
.slider-prev.disabled,
.slider-next.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.testimonials-section .section-header {
    padding: 0 60px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.testimonials-section .btn-read-more {
    color: var(--text-dark);
}

.testimonials-section .btn-read-more:hover {
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }

    .testimonials-section .section-header {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 20px;
    }

    .testimonials-section .section-header {
        padding: 0 20px;
    }

    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
    }

    .slider-prev {
        left: -5px;
    }

    .slider-next {
        right: -5px;
    }
}

/* Stats Showcase Grid (Dark Bar on Light/White background) */
.stats-section {
    background-color: var(--bg-light-white);
    border-top: none;
    padding: 40px 20px 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0c0c0f;
    border: 1px solid #1f2029;
    border-radius: 16px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #22252e;
}

.stat-icon-wrapper {
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.25);
}

.stat-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: 0.2px;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }

    .stat-item {
        border-right: none !important;
        justify-content: flex-start;
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }

    .stat-item {
        padding-left: 10px;
    }
}

/* Footer Section (Dark) */
.site-footer {
    background-color: #050507;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.social-icon:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 4px;
    font-size: 15px;
}

.footer-newsletter p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 4px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-red);
}

.btn-subscribe {
    background-color: var(--primary-red);
    color: var(--text-white);
    font-weight: 700;
    border: none;
    padding: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    background-color: var(--hover-red);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 20px;
    background-color: #030304;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-gray);
}

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    color: var(--primary-red);
}

.floating-action-buttons {
    position: fixed;
    bottom: 100px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    animation: floatPulse 2s infinite alternate;
}

.float-btn:hover {
    transform: scale(1.05);
}

.float-whatsapp {
    background-color: var(--whatsapp-green);
}

.float-call {
    background-color: var(--primary-red);
}

.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes floatPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }
}

/* Buy A Car Listing Page Styling */
/* Buy A Car Listing Page Styling */
.buy-a-car-page {
    background-color: var(--bg-light-white);
    color: var(--text-dark);
    padding: 120px 0 80px;
}

.listing-search-section {
    max-width: 95%;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.listing-search-form {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.listing-search-form .search-input-group {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.listing-search-form .search-icon {
    font-size: 18px;
    color: #64748b;
    margin-right: 10px;
}

.listing-search-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 15px;
    padding: 10px 5px;
    outline: none;
}

.btn-ai-assistant {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-ai-assistant:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.2);
}

/* Quick filters row in the search form */
.quick-filters-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr) auto;
    gap: 15px;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .quick-filters-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .quick-filters-row {
        grid-template-columns: 1fr;
    }
}

.quick-filter-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-filter-col label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-filter-col select {
    width: 100%;
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quick-filter-col select:hover {
    border-color: #cbd5e1;
}

.btn-search-cars {
    background-color: #0f172a;
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    height: 38px;
    justify-content: center;
}

.btn-search-cars:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

/* Promo Banner Section */
.promo-banner-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0;
}

.promo-banner-content {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.banner-text-left {
    position: relative;
    z-index: 2;
}

.banner-badge-red {
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.banner-title-white {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner-title-white .highlight {
    color: var(--primary-red);
}

.banner-btn-view {
    color: var(--text-white);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.banner-btn-view:hover {
    color: var(--primary-red);
}

.banner-btn-view i {
    transition: transform 0.2s ease;
}

.banner-btn-view:hover i {
    transform: translateX(4px);
}

.banner-stamp-right {
    position: relative;
    z-index: 2;
}

.stamp-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
    transform: rotate(-10deg);
}

.stamp-circle .stamp-top {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.stamp-circle .stamp-middle {
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.stamp-circle .stamp-bottom {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Featured & Recent Slider Section */
.featured-slider-section,
.recent-slider-section {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.section-title-listings {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.section-title-listings .highlight {
    color: var(--primary-red);
}

.view-all-link {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.view-all-link:hover {
    color: var(--text-dark);
}

.view-all-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* Slider containers */
.featured-carousel-wrapper,
.recent-carousel-wrapper {
    position: relative;
    padding: 0 35px;
}

.featured-slider-container,
.recent-slider-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.featured-slider-container::-webkit-scrollbar,
.recent-slider-container::-webkit-scrollbar {
    display: none;
}

.featured-track,
.recent-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.featured-track .car-card-item,
.recent-track .car-card-item {
    flex: 0 0 calc(20% - 12px);
    min-width: 160px;
}

@media (max-width: 1400px) {

    .featured-track .car-card-item,
    .recent-track .car-card-item {
        flex: 0 0 calc(25% - 11.25px);
    }
}

@media (max-width: 1200px) {

    .featured-track .car-card-item,
    .recent-track .car-card-item {
        flex: 0 0 calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {

    .featured-track .car-card-item,
    .recent-track .car-card-item {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 480px) {

    .featured-track .car-card-item,
    .recent-track .car-card-item {
        flex: 0 0 100%;
    }
}

.slider-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    font-size: 11px;
}

.slider-control-btn:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-control-btn.prev-btn {
    left: 0;
}

.slider-control-btn.next-btn {
    right: 0;
}

/* Car Card Styling (White, light border matching mockup) */
.car-card-item {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    height: 315px;
    /* Fixed height for uniform square-ish dimensions on desktop */
}

.car-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.car-card-img-wrapper {
    height: 125px;
    /* Taller image for square aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #f1f5f9;
}

.car-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.car-card-item:hover .car-card-img-wrapper img {
    transform: scale(1.05);
}

.featured-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 8px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.wishlist-heart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #64748b;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.wishlist-heart-btn:hover {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.car-card-details {
    padding: 10px;
    /* Reduced padding for compact layout */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-card-title {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    /* Support wrapping on narrow card widths */
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 6px;
}

.specs-divider {
    color: #cbd5e1;
    font-weight: normal;
}

.car-card-location-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 6px;
}

.car-card-location-row i {
    color: #94a3b8;
}

.car-card-package-row {
    font-size: 10px;
    margin-bottom: 8px;
}

.car-card-package-row .pkg-label {
    color: #64748b;
    font-weight: 600;
}

.car-card-package-row .pkg-value {
    color: var(--text-dark);
    font-weight: 700;
}

.car-card-price-value {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 10px;
    margin-top: auto;
}

.btn-card-view-details {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 8px 10px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-card-view-details:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
}

/* Sidebar and Main grid modifications */
.listing-layout-container {
    max-width: 98%;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 20px;
    align-items: flex-start;
}

.listing-sidebar-adspace {
    background-color: var(--bg-light-gray);
    border: 2px dashed var(--border-light);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: 90px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: var(--transition-smooth);
}

.adspace-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.adspace-placeholder i {
    font-size: 32px;
    color: #cbd5e1;
}

.adspace-placeholder span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1400px) {
    .listing-layout-container {
        grid-template-columns: 240px 1fr 240px;
        gap: 15px;
    }

    .listing-sidebar-filters {
        padding: 16px;
    }

    .listing-sidebar-adspace {
        padding: 16px;
    }
}

@media (max-width: 1200px) {
    .listing-layout-container {
        grid-template-columns: 260px 1fr;
    }

    .listing-sidebar-adspace {
        display: none;
    }
}

@media (max-width: 991px) {
    .listing-layout-container {
        grid-template-columns: 1fr;
    }

    .listing-sidebar-adspace {
        display: none;
    }
}

.listing-sidebar-filters {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.listing-sidebar-filters::-webkit-scrollbar {
    display: none;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.sidebar-header button {
    background: transparent;
    border: none;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.sidebar-header button:hover {
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-group select:hover {
    border-color: #cbd5e1;
}

/* Range Sliders */
.range-slider-group {
    margin-bottom: 22px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.range-labels label {
    margin: 0;
}

.range-labels span {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-red);
}

.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    margin: 8px 0;
}

.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-min-max {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
}

/* Main listings grid display (up to 3 per row on desktop wide) */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 1400px) {
    .listings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}

/* Results header bar */
.listings-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.results-count {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.results-count .highlight {
    color: var(--primary-red);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-sort label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.results-sort select {
    background-color: var(--text-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

/* Pagination */
.listings-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pag-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background-color: var(--text-white);
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pag-btn:hover {
    border-color: #cbd5e1;
    color: var(--text-dark);
    background-color: var(--bg-light-white);
}

.pag-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
}

.pag-dots {
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
    padding: 0 4px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

    /* Global responsiveness fix */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .site-header {
        position: relative;
    }

    .header-container {
        position: relative;
        justify-content: space-between;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        color: var(--text-white);
        font-size: 20px;
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition-smooth);
    }

    .mobile-nav-toggle:hover,
    .mobile-nav-toggle:focus {
        background-color: var(--primary-red);
        border-color: var(--primary-red);
        color: var(--text-white);
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(8, 8, 10, 0.98);
        border-bottom: 1px solid var(--border-color);
        padding: 20px 0;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-navigation .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }

    .main-navigation .nav-menu a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-text-content {
        max-width: 100%;
    }

    .listing-layout-container {
        grid-template-columns: 1fr;
    }

    .listing-sidebar-filters {
        position: static;
        margin-bottom: 30px;
    }

    .brands-logo-row {
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 26px;
    }

    .hero-badges {
        gap: 10px 15px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .sell-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-title {
        font-size: 30px;
    }

    .banner-features {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    /* Mobile form and slider fixes */
    #hero-main-search-form {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 15px !important;
    }

    #hero-main-search-form .search-input-wrapper {
        width: 100% !important;
    }

    #hero-main-search-form button {
        width: 100% !important;
        justify-content: center;
    }

    .featured-carousel-wrapper,
    .recent-carousel-wrapper,
    .lineup-slider-wrapper {
        overflow: hidden !important;
        padding: 0 10px !important;
    }

    .listing-search-form .search-input-group {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .btn-ai-assistant {
        width: 100% !important;
        justify-content: center !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .sell-wizard-steps {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .step-item {
        width: 100% !important;
        text-align: center !important;
    }

    /* Contact hero button stacks */
    .hero-contact-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .btn-contact-hero {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Collapse Buy a Car inventory grid to a single column on mobile */
    .listings-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ==========================================================================
   SELL MY CAR PAGE STYLING
   ========================================================================== */

.sell-my-car-page {
    background-color: var(--bg-black);
    color: var(--text-white);
}

/* 1. Sell Hero Section */
.sell-hero-section {
    background-size: cover;
    background-position: right center;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.sell-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.sell-hero-content {
    max-width: 650px;
    z-index: 2;
}

.sell-hero-title {
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.sell-hero-desc {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.sell-hero-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 500;
}

.sell-hero-badges i {
    color: var(--primary-red);
    margin-right: 5px;
}

.sell-hero-badges .badge-divider {
    color: #4a4f5d;
}

.btn-primary-sell {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary-sell:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
}

/* 2. How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--bg-light-white);
    border-bottom: 1px solid var(--border-light);
}

.how-it-works-section .section-heading-centered {
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.step-card {
    flex: 1;
    background-color: var(--bg-light-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: rgba(227, 27, 35, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: var(--bg-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--border-light);
}

.step-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 26px;
    color: var(--text-dark);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.step-chevron {
    color: #cbd5e1;
    font-size: 20px;
}

/* 3. Evaluation Form Section */
.evaluation-form-section {
    padding: 90px 0;
    background-color: var(--bg-black);
}

.form-section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-main-heading {
    text-align: center;
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.form-highlight-yellow {
    color: #eab308;
}

.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.form-step-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.form-step-tab.active {
    opacity: 1;
}

.step-tab-num {
    width: 32px;
    height: 32px;
    background-color: #2b303b;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.form-step-tab.active .step-tab-num {
    background-color: var(--primary-red);
}

.step-tab-label {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-indicator-line {
    flex: 0 1 120px;
    height: 2px;
    background-color: var(--primary-red);
    margin: 0 20px;
}

.evaluation-form-box {
    background-color: var(--bg-dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-col-step {
    opacity: 1;
    pointer-events: auto;
}

.form-column-heading {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.form-field-group label .required {
    color: var(--primary-red);
    margin-left: 2px;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
    width: 100%;
    background-color: var(--bg-black);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    border-color: rgba(227, 27, 35, 0.6);
    box-shadow: 0 0 8px rgba(227, 27, 35, 0.25);
}

.form-control-input::placeholder,
.form-control-textarea::placeholder {
    color: #555860;
}

select:invalid,
select option[value=""] {
    color: #555860;
}

.form-control-select option {
    background-color: var(--bg-black);
    color: var(--text-white);
}

/* File Upload cards */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 5px;
}

.photo-upload-card {
    aspect-ratio: 1.25;
    background-color: var(--bg-black);
    border: 1.5px dashed var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.photo-upload-card:hover {
    border-color: var(--primary-red);
    background-color: rgba(227, 27, 35, 0.08);
}

.photo-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.photo-camera-icon {
    font-size: 20px;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.photo-view-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

.photo-upload-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

.photo-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    display: none;
    z-index: 5;
}

.photo-preview-overlay.active {
    display: block;
}

.upload-img-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-photo {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(227, 27, 35, 0.9);
    border: none;
    color: var(--text-white);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-remove-photo:hover {
    background-color: var(--hover-red);
    transform: scale(1.1);
}

.form-control-textarea {
    resize: none;
}

/* Checkbox Style */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
    user-select: none;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-color: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-top: 2px;
}

.checkbox-label:hover input~.checkbox-custom {
    border-color: rgba(227, 27, 35, 0.6);
}

.checkbox-label input:checked~.checkbox-custom {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox-custom::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text-white);
    font-size: 11px;
    display: none;
}

.checkbox-label input:checked~.checkbox-custom::after {
    display: block;
}

.red-link {
    color: var(--primary-red);
    font-weight: 500;
}

.red-link:hover {
    text-decoration: underline;
}

.btn-primary-form {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-form:hover {
    background-color: var(--hover-red);
}

.btn-primary-form:disabled {
    background-color: #555860;
    cursor: not-allowed;
}

/* Centered Submit Row */
.form-submit-row-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    width: 100%;
}

.form-submit-row-centered .btn-primary-form {
    padding: 15px 45px;
    font-size: 16px;
}

.form-submit-row-centered .form-respond-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 15px;
}

.form-submit-row-centered .form-respond-time i {
    color: var(--primary-red);
    font-size: 15px;
}

/* Form field error feedback */
.form-field-group.has-error .form-control-input,
.form-field-group.has-error .form-control-select {
    border-color: var(--primary-red);
    box-shadow: 0 0 6px rgba(227, 27, 35, 0.15);
}

.field-error-msg {
    display: none;
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 500;
    margin-top: 4px;
}

.form-field-group.has-error .field-error-msg,
.form-checkbox-group.has-error .field-error-msg {
    display: block;
}

/* Success Modal Styles */
.evaluation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.evaluation-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.evaluation-modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon-success {
    font-size: 60px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.modal-icon-success i.animate-scale {
    animation: scaleUpIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUpIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-close-modal-prm {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-close-modal-prm:hover {
    background-color: var(--hover-red);
}

/* Highly Specific Typography & UI Polishing for Sell A Car Page */
.sell-my-car-page .section-container-box {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    display: block !important;
}

.sell-my-car-page button,
.sell-my-car-page input,
.sell-my-car-page select,
.sell-my-car-page textarea {
    font-family: var(--font-body) !important;
}

.sell-my-car-page h1,
.sell-my-car-page h2,
.sell-my-car-page h3,
.sell-my-car-page h4,
.sell-my-car-page h5,
.sell-my-car-page h6,
.sell-my-car-page .faq-question,
.sell-my-car-page .btn-primary-form,
.sell-my-car-page .btn-whatsapp-chat,
.sell-my-car-page .btn-primary-sell {
    font-family: var(--font-heading) !important;
}

/* 4. Why Sell Through Merchants Section */
.sell-my-car-page .why-sell-merchants-section {
    padding: 60px 0;
    background-color: var(--bg-light-white) !important;
    border-top: 1px solid var(--border-light) !important;
    border-bottom: 1px solid var(--border-light) !important;
}

.sell-my-car-page .why-sell-merchants-section .section-heading-centered {
    color: var(--text-dark) !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 45px !important;
}

.sell-my-car-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sell-my-car-page .benefit-card {
    background-color: var(--bg-light-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    padding: 28px 24px !important;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.sell-my-car-page .benefit-card:hover {
    border-color: rgba(227, 27, 35, 0.3) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.sell-my-car-page .benefit-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
}

.sell-my-car-page .benefit-icon {
    font-size: 32px !important;
    color: var(--primary-red) !important;
}

.sell-my-car-page .benefit-text h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    margin-bottom: 6px !important;
    color: var(--text-dark) !important;
    letter-spacing: -0.2px !important;
}

.sell-my-car-page .benefit-text p {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
}

/* 5. FAQ & Assistance Section */
.sell-my-car-page .faq-assistance-section {
    padding: 60px 0;
    background-color: var(--bg-light-white) !important;
}

.sell-my-car-page .faq-assistance-section .section-heading-centered {
    color: var(--text-dark) !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 45px !important;
}

.sell-my-car-page .faq-container {
    max-width: 1200px;
}

.sell-my-car-page .faq-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.sell-my-car-page .faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sell-my-car-page .faq-item {
    background-color: var(--bg-light-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.sell-my-car-page .faq-item.active {
    border-color: rgba(227, 27, 35, 0.3) !important;
}

.sell-my-car-page .faq-toggle-btn {
    width: 100%;
    background: none !important;
    border: none !important;
    padding: 22px 25px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--text-dark) !important;
    outline: none !important;
}

.sell-my-car-page .faq-question {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    letter-spacing: -0.2px !important;
}

.sell-my-car-page .faq-toggle-icon {
    font-size: 15px !important;
    color: #64748b !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

.sell-my-car-page .faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--primary-red) !important;
}

.sell-my-car-page .faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.sell-my-car-page .faq-answer-panel p {
    padding: 0 25px 22px !important;
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}

/* Sidebar Assist Card */
.sell-my-car-page .faq-sidebar-col {
    position: sticky;
    top: 100px;
}

.sell-my-car-page .assistance-card-wrapper {
    background-color: var(--bg-light-gray) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 12px !important;
    padding: 35px 30px !important;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.sell-my-car-page .assistance-card-wrapper h3 {
    font-size: 21px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
    color: var(--text-dark) !important;
    letter-spacing: -0.3px !important;
}

.sell-my-car-page .assistance-card-wrapper p {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
}

.sell-my-car-page .assistance-chat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sell-my-car-page .btn-whatsapp-chat {
    background-color: var(--primary-red) !important;
    color: var(--text-white) !important;
    padding: 14px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sell-my-car-page .btn-whatsapp-chat:hover {
    background-color: var(--hover-red) !important;
}

.sell-my-car-page .assistance-whatsapp-bubble {
    width: 48px;
    height: 48px;
    background-color: var(--bg-light-white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whatsapp-green) !important;
    font-size: 24px;
    border: 1px solid var(--border-light) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .sell-my-car-page .sell-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .sell-my-car-page .sell-hero-content {
        margin: 0 auto;
    }

    .sell-my-car-page .sell-hero-badges {
        justify-content: center;
    }

    .sell-my-car-page .steps-container {
        flex-direction: column;
        gap: 10px;
    }

    .sell-my-car-page .step-chevron {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .sell-my-car-page .form-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sell-my-car-page .form-col-step {
        opacity: 1;
        pointer-events: auto;
    }

    .sell-my-car-page .evaluation-form-box {
        padding: 25px;
    }

    .sell-my-car-page .photo-upload-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sell-my-car-page .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sell-my-car-page .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sell-my-car-page .faq-sidebar-col {
        position: static;
    }
}

@media (max-width: 575px) {
    .sell-my-car-page .sell-hero-title {
        font-size: 34px !important;
    }

    .sell-my-car-page .sell-hero-desc {
        font-size: 16px !important;
    }

    .sell-my-car-page .sell-hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .sell-my-car-page .sell-hero-badges .badge-divider {
        display: none;
    }

    .sell-my-car-page .form-grid-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .sell-my-car-page .photo-upload-grid {
        grid-template-columns: 1fr;
    }

    .sell-my-car-page .form-steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }

    .sell-my-car-page .step-indicator-line {
        display: none;
    }
}

/* Latest Arrivals Section */
.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.arrivals-follow-us {
    display: flex;
    align-items: center;
    gap: 12px;
}

.follow-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 5px;
}

.follow-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.follow-icon.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.follow-icon.fb {
    background-color: #1877F2;
}

.follow-icon.yt {
    background-color: #FF0000;
}

.follow-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

.arrivals-slider-wrapper {
    position: relative;
    width: 100%;
}

.arrivals-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
}

.arrivals-track::-webkit-scrollbar {
    display: none;
}

.arrivals-track {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.arrival-card {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.arrival-thumbnail-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.arrival-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.arrival-thumbnail-wrapper .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding-left: 3px;
}

.arrival-card:hover .arrival-thumbnail-wrapper img {
    transform: scale(1.05);
}

.arrival-card:hover .play-overlay {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.arrival-duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
}

.arrival-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrival-subtitle {
    font-size: 11px;
    color: var(--text-dark);
    font-weight: 700;
}

.arrival-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.arrivals-next-btn,
.arrivals-prev-btn {
    position: absolute;
    top: 35%;
    /* Center relative to image */
    transform: translateY(-50%);
    width: 40px;
    /* Slightly larger for easier clicking */
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    z-index: 10;
}

.arrivals-next-btn {
    right: -10px;
}

.arrivals-prev-btn {
    left: -10px;
}

.arrivals-next-btn:hover,
.arrivals-prev-btn:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

@media (max-width: 1200px) {
    .arrivals-track {
        grid-template-columns: repeat(6, 200px);
    }
}

/* Buy A Car - Popular Search Pills */
.search-pill {
    padding: 6px 16px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background-color: white;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.search-pill:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */

.contact-us-page {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}

.contact-us-page h1,
.contact-us-page h2,
.contact-us-page h3,
.contact-us-page h4,
.contact-us-page h5 {
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.contact-us-page .highlight {
    color: var(--primary-red);
}

/* 1. Hero Section */
.contact-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px 140px 20px;
    color: var(--text-white);
    position: relative;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-content {
    max-width: 650px;
}

.contact-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    display: inline-block;
    margin-bottom: 15px;
}

.contact-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-white) !important;
}

.contact-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-contact-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-contact-hero.btn-red-fill {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 1px solid var(--primary-red);
}

.btn-contact-hero.btn-red-fill:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
}

.btn-contact-hero.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-contact-hero.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
}

/* 2. Quick Info overlapping strip */
.quick-info-section {
    padding: 0 20px;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.quick-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card-item {
    background-color: var(--bg-light-white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card-icon-box {
    background-color: rgba(227, 27, 35, 0.07);
    color: var(--primary-red);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card-text-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-text-box p {
    font-size: 14px;
    color: #555c66;
    margin: 0;
    line-height: 1.4;
}

.info-card-text-box .phone-link-text a {
    color: #555c66;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.info-card-text-box .phone-link-text a:hover {
    color: var(--primary-red);
}

/* 3. Our Office Section */
.our-office-section {
    padding: 80px 20px;
    background-color: var(--bg-light-white);
}

.office-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.office-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.title-bottom-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
    margin: 0 auto 40px auto;
}

.office-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.office-details-panel {
    padding-right: 20px;
}

.office-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.office-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.office-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.office-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.office-contact-list li .list-icon {
    color: var(--primary-red);
    font-size: 16px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.office-contact-list li .list-desc {
    font-size: 15px;
    color: #4b525d;
    line-height: 1.6;
}

.office-contact-list li .list-desc a {
    color: #4b525d;
    transition: var(--transition-smooth);
}

.office-contact-list li .list-desc a:hover {
    color: var(--primary-red);
}

.office-cta-row {
    display: flex;
    gap: 15px;
}

.btn-office {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-office-red {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 1px solid var(--primary-red);
}

.btn-office-red:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
}

.btn-office-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-office-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
}

.office-map-panel {
    height: 100%;
}

.map-wrapper {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 4. Message & Why Contact Section */
.contact-message-section {
    padding: 80px 20px;
    background-color: var(--bg-light-gray);
}

.message-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.message-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
}

.column-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.contact-us-form {
    background-color: var(--bg-light-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-field-wrapper {
    display: flex;
    flex-direction: column;
}

.form-field-wrapper.field-fullname {
    grid-column: 1;
}

.form-field-wrapper.field-phone {
    grid-column: 2;
}

.form-field-wrapper.field-email {
    grid-column: 3;
}

.form-field-wrapper.field-subject {
    grid-column: 1;
    grid-row: 2;
}

.form-field-wrapper.field-message {
    grid-column: 2 / span 2;
    grid-row: 2 / span 2;
}

.form-submit-wrapper {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    align-items: flex-end;
}

.form-field-wrapper label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-field-wrapper label .required {
    color: var(--primary-red);
}

.form-field-wrapper input,
.form-field-wrapper select,
.form-field-wrapper textarea {
    background-color: #fcfdfe;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-field-wrapper input:focus,
.form-field-wrapper select:focus,
.form-field-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.08);
}

.form-field-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
    cursor: pointer;
}

.form-field-wrapper textarea {
    resize: none;
}

.btn-submit-message {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-message:hover {
    background-color: var(--hover-red);
}

.contact-alert {
    grid-column: 1 / span 3;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-alert.success {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.contact-alert.error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Why Contact Us side list */
.why-contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-item i {
        font-size: 40px;
        margin-bottom: 10px;
    }
}

.why-icon-box {
    background-color: var(--bg-light-white);
    color: var(--primary-red);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-text-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-text-box p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 5. FAQs Section */
.contact-faqs-section {
    padding: 80px 20px;
    background-color: var(--bg-light-white);
}

.faq-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.faq-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.contact-faq-item:hover {
    border-color: #cbd5e1;
}

.contact-faq-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.04);
}

.faq-header-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.faq-header-btn span {
    padding-right: 15px;
}

.faq-header-btn .faq-icon {
    font-size: 12px;
    color: #718096;
    transition: transform 0.3s ease;
}

.contact-faq-item.active .faq-header-btn {
    color: var(--primary-red);
}

.contact-faq-item.active .faq-header-btn .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.faq-body-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-body-panel p {
    padding: 0 24px 20px 24px;
    margin: 0;
    font-size: 14px;
    color: #4b525d;
    line-height: 1.6;
}

/* 6. Need Immediate Assistance Section */
.immediate-assistance-banner-section {
    padding: 40px 20px 80px 20px;
    background-color: var(--bg-light-gray);
}

.assistance-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.assistance-banner-card {
    background: linear-gradient(to right, #000000 0%, #000000 35%, #17171e 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 55px 60px 55px 360px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.assistance-banner-car-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 5;
}

.assistance-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease-out;
}

.assistance-banner-card:hover .assistance-car-img {
    transform: scale(1.03);
}

.assistance-banner-content {
    position: relative;
    z-index: 10;
}

.assistance-banner-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white) !important;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.assistance-banner-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.assistance-banner-buttons {
    display: flex;
    gap: 15px;
}

.btn-assistance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-assistance-red {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 1px solid var(--primary-red);
}

.btn-assistance-red:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
}

.btn-assistance-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-assistance-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
}

/* Modals styling */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-modal-content {
    background-color: var(--bg-light-white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #a0aec0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-modal-close:hover {
    color: var(--text-dark);
}

.contact-modal-icon {
    color: #10b981;
    font-size: 55px;
    margin-bottom: 20px;
}

.contact-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-modal-desc {
    font-size: 14px;
    color: #4b525d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-modal-okay {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-modal-okay:hover {
    background-color: var(--hover-red);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .quick-info-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .info-card-item {
        padding: 20px 15px;
        gap: 12px;
    }

    .info-card-icon-box {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .info-card-text-box h4 {
        font-size: 14px;
    }

    .info-card-text-box p {
        font-size: 12px;
    }

    .office-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .office-map-panel {
        order: -1;
    }

    .message-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .assistance-banner-card {
        padding: 50px 40px 50px 280px;
    }

    .assistance-banner-car-wrapper {
        width: 250px;
        left: 0;
        top: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 20px 120px 20px;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-ctas {
        justify-content: center;
    }

    .quick-info-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-info-section {
        margin-top: -40px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-wrapper.field-fullname,
    .form-field-wrapper.field-phone,
    .form-field-wrapper.field-email,
    .form-field-wrapper.field-subject,
    .form-field-wrapper.field-message,
    .form-submit-wrapper {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .faq-columns-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .assistance-banner-card {
        padding: 40px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #0f0f12;
        /* Fallback flat dark color on mobile */
    }

    .assistance-banner-car-wrapper {
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 280px;
        height: auto;
        margin-bottom: 25px;
    }

    .assistance-banner-car-wrapper .assistance-car-img {
        height: auto;
        object-fit: contain;
    }

    .assistance-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .assistance-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .btn-contact-hero {
        width: 100%;
        justify-content: center;
    }

    .office-cta-row {
        flex-direction: column;
    }

    .btn-office {
        width: 100%;
        justify-content: center;
    }

    .contact-us-form {
        padding: 20px;
    }

    .assistance-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-assistance {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

.about-us-page {
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3,
.about-us-page h4,
.about-us-page h5 {
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.about-us-page .highlight {
    color: var(--primary-red);
}

/* 1. Hero Section */
.about-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 150px 20px;
    color: var(--text-white);
    position: relative;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    display: inline-block;
    margin-bottom: 15px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-white) !important;
}

.about-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.7;
}

.about-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-about-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-about-hero.btn-red-fill {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 1px solid var(--primary-red);
}

.btn-about-hero.btn-red-fill:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
}

.btn-about-hero.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-about-hero.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
}

/* Floating contact bar */
.about-hero-floating-bar-wrapper {
    position: relative;
}

.hero-floating-contact-bar {
    display: flex;
    flex-direction: column;
    background-color: rgba(18, 18, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 20px 12px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-floating-contact-bar a {
    color: var(--text-gray);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-floating-contact-bar a:hover {
    color: var(--text-white);
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* 2. Our Journey Section */
.about-story-section {
    padding: 100px 20px;
    background-color: var(--bg-light-white);
}

.story-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.story-video-column {
    position: relative;
}

.video-thumbnail-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-play-story-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(227, 27, 35, 0.4);
    transition: var(--transition-smooth);
}

.btn-play-story-overlay i {
    margin-left: 4px;
}

.btn-play-story-overlay:hover {
    background-color: var(--hover-red);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 27, 35, 0.6);
}

.story-text-column {
    padding-left: 20px;
}

.story-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.story-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-p {
    font-size: 15px;
    color: #4b525d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-quote-card {
    background-color: var(--bg-light-gray);
    border-left: 4px solid var(--primary-red);
    border-radius: 4px;
    padding: 20px 25px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quote-icon-box {
    color: var(--primary-red);
    font-size: 22px;
    margin-top: -5px;
}

.quote-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* 3. Why Choose Us Section */
.about-why-section {
    padding: 100px 20px;
    background-color: var(--bg-light-gray);
}

.why-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.why-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-card {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 25px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-card-content {
    color: var(--text-white);
}

.why-card-icon {
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

.why-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white) !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card-content p {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* 4. Services Section */
.about-services-section {
    padding: 100px 20px;
    background-color: var(--bg-light-white);
}

.services-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.services-section-heading {
    font-size: 32px;
    font-weight: 800;
    height: 100%;
    object-fit: cover;
}

.btn-play-story-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(227, 27, 35, 0.4);
    transition: var(--transition-smooth);
}

.btn-play-story-overlay i {
    margin-left: 4px;
}

.btn-play-story-overlay:hover {
    background-color: var(--hover-red);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 27, 35, 0.6);
}

.story-text-column {
    padding-left: 20px;
}

.story-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.story-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.story-p {
    font-size: 15px;
    color: #4b525d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-quote-card {
    background-color: var(--bg-light-gray);
    border-left: 4px solid var(--primary-red);
    border-radius: 4px;
    padding: 20px 25px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quote-icon-box {
    color: var(--primary-red);
    font-size: 22px;
    margin-top: -5px;
}

.quote-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* 3. Why Choose Us Section */
.about-why-section {
    padding: 100px 20px;
    background-color: var(--bg-light-gray);
}

.why-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.why-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-card {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 25px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-card-content {
    color: var(--text-white);
}

.why-card-icon {
    background-color: var(--primary-red);
    color: var(--text-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

.why-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white) !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card-content p {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* 4. Services Section */
.about-services-section {
    padding: 100px 20px;
    background-color: var(--bg-light-white);
}

.services-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.services-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-card-item {
    background-color: var(--bg-light-white);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}

.service-card-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(227, 27, 35, 0.05);
    transform: translateY(-5px);
}

.service-card-icon-box {
    background-color: rgba(227, 27, 35, 0.07);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}

.service-card-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-arrow-link {
    color: #718096;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.service-card-item:hover .service-arrow-link {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* 5. Team Section */
.about-team-section {
    padding: 100px 20px;
    background-color: var(--bg-light-gray);
}

.team-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.team-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card-item {
    background-color: var(--bg-light-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.team-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-photo-box {
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio square portrait */
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

.team-photo-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-item:hover .team-photo-box img {
    transform: scale(1.05);
}

.team-text-box {
    padding: 25px 20px;
    text-align: center;
}

.team-text-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social-links a {
    color: #718096;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.team-social-links a:hover {
    color: var(--text-white);
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.2);
}

/* 6. Mission & Vision */
.about-mission-section {
    padding: 100px 20px;
    background-color: var(--bg-light-white);
}

.mission-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-card {
    background: linear-gradient(135deg, #0a0a0c 0%, #15151c 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 50px 60px;
    color: var(--text-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.mission-col,
.vision-col {
    position: relative;
}

.mission-icon {
    background-color: rgba(227, 27, 35, 0.08);
    border: 1px solid rgba(227, 27, 35, 0.2);
    color: var(--primary-red);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.15);
}

.mission-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.mission-col h3,
.vision-col h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white) !important;
    margin-bottom: 15px;
}

.mission-col p,
.vision-col p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.7;
    margin: 0;
}

.mission-divider {
    width: 1px;
    height: 140px;
    background-color: var(--border-color);
}

/* 7. Principles / Values Section */
.about-values-section {
    padding: 100px 20px;
    background-color: var(--bg-light-white);
    border-top: 1px solid #f1f5f9;
}

.values-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.values-section-heading {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.values-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card-item {
    background-color: var(--bg-light-white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(227, 27, 35, 0.04);
}

.value-icon-box {
    background-color: rgba(227, 27, 35, 0.06);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px auto;
}

.value-card-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* 8. Mercedes CTA Banner */
.about-cta-banner-section {
    padding: 40px 20px 80px 20px;
    background-color: var(--bg-light-gray);
}

.cta-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner-card {
    background: linear-gradient(to right, #000000 0%, #000000 35%, #17171e 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 55px 60px 55px 360px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-banner-car-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 5;
}

.cta-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease-out;
}

.cta-banner-card:hover .cta-car-img {
    transform: scale(1.03);
}

.cta-banner-content {
    position: relative;
    z-index: 10;
}

.cta-banner-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white) !important;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-banner-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.cta-banner-buttons {
    display: flex;
    gap: 15px;
}

.btn-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-cta-red {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 1px solid var(--primary-red);
}

.btn-cta-red:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
}

.btn-cta-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cta-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    border-color: var(--text-white);
}

/* Modals styling for Video */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.about-modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.about-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-modal-close:hover {
    color: var(--primary-red);
}

.video-player-iframe-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-player-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Responsive Breakpoints (About Us)
   ========================================================================== */

@media (max-width: 1199px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-card-item {
        min-height: 220px;
    }
}

@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-ctas {
        justify-content: center;
    }

    .about-hero-floating-bar-wrapper {
        display: flex;
        justify-content: center;
    }

    .hero-floating-contact-bar {
        flex-direction: row;
        padding: 12px 25px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text-column {
        padding-left: 0;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-divider {
        width: 100%;
        height: 1px;
        background-color: var(--border-color);
    }

    .values-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-banner-card {
        padding: 50px 40px 50px 280px;
    }

    .cta-banner-car-wrapper {
        width: 250px;
        left: 0;
        top: 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px 100px 20px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .story-heading,
    .why-section-heading,
    .services-section-heading,
    .team-section-heading,
    .values-section-heading {
        font-size: 26px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-card {
        padding: 40px 30px;
        text-align: center;
        display: flex;
    }

    @media (max-width: 768px) {
        .why-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid #e9b5b5;
            border-radius: 8px;
            padding: 30px 20px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        }

        .why-item i {
            font-size: 40px;
            margin-bottom: 10px;
        }
    }

    .cta-banner-card {
        flex-direction: column;
        align-items: center;
        background: #0f0f12;
    }

    .cta-banner-car-wrapper {
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 280px;
        height: auto;
        margin-bottom: 25px;
    }

    .cta-banner-car-wrapper .cta-car-img {
        height: auto;
        object-fit: contain;
    }

    .cta-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .btn-about-hero {
        width: 100%;
        justify-content: center;
    }

    .why-cards-grid,
    .services-cards-grid,
    .team-cards-grid,
    .values-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-card {
        min-height: 280px;
    }

    .team-card-item {
        max-width: 320px;
        margin: 0 auto;
    }

    .mission-vision-card {
        padding: 35px 25px;
    }

    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-action {
        width: 100%;
        justify-content: center;
    }
}



/* Responsive Layout Updates - Buy A Car Page */

@media (max-width: 1400px) {
    .listings-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 1200px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .promo-banner-content {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .listing-sidebar-adspace {
        display: none !important;
    }

    .ad-popup-trigger {
        display: inline-block;
    }

    .promo-banner-content {
        padding: 30px 20px !important;
        height: auto !important;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .banner-title-white {
        font-size: 20px;
    }

    .banner-stamp-right {
        transform: scale(0.8);
        margin-top: 10px;
    }

    /* Contact Us form grid overrides */
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-form-grid > div {
        grid-column: span 1 !important;
    }

    .contact-form-column {
        padding: 30px 20px !important;
    }
}

@media (max-width: 991px) {
    .listing-sidebar-filters {
        display: block !important;
    }

    .filter-toggle-btn {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .listings-grid {
        grid-template-columns: 1fr !important;
    }

    .section-container {
        padding: 40px 15px !important;
    }
}

.filter-toggle-btn {
    display: none;
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.ad-popup-trigger {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.ad-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ad-popup-modal.show {
    display: flex;
}

.ad-popup-content {
    background: var(--bg-dark-gray);
    padding: 40px 20px;
    border-radius: 8px;
    position: relative;
    max-width: 90%;
    text-align: center;
}

.ad-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.car-card {
    aspect-ratio: 1 / 1.2;
}

.car-card .car-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


@media (max-width: 991px) {

    .filter-toggle-btn,
    .btn-ai-assistant {
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px;
    }

    .filter-toggle-btn i,
    .btn-ai-assistant i {
        color: #ffffff !important;
    }

    .popular-searches-row {
        flex-wrap: wrap !important;
    }

    .listing-search-container {
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .listing-layout-container {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .search-input-group input {
        width: 100%;
        min-width: 0;
    }

    .popular-searches-row a {
        word-break: break-word;
        white-space: normal;
    }
}

/* Fix Mobile Horizontal Overflow Layout Issues */
@media (max-width: 1200px) {

    .featured-slider-container,
    .recent-slider-container,
    .social-slider-container {
        min-width: 0;
    }

    .listings-main-content {
        min-width: 0;
    }
}

@media (max-width: 991px) {
    .social-feed-col {
        min-width: 0;
    }
}

@media (max-width: 991px) {

    .arrivals-next-btn,
    .arrivals-prev-btn,
    .lineup-control-btn,
    .slider-control-btn,
    .social-slider-btn {
        display: none !important;
    }
}


/* Custom overrides for glassy header and new footer layout */
.site-header.glassy-header {
    background: rgba(15, 15, 15, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-actions .btn-header-call {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    gap: 12px;
}

.header-actions .btn-header-call:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-actions .btn-header-call .call-icon {
    color: #e50000;
    font-size: 20px;
}

.header-actions .btn-header-call .call-text {
    display: flex;
    flex-direction: column;
}

.header-actions .btn-header-call .call-number {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 3px;
}

.header-actions .btn-header-call .call-label {
    color: #aaa;
    font-size: 11px;
    line-height: 1;
}

.site-footer .footer-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr !important;
    gap: 30px;
}

@media (max-width: 1024px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr !important;
    }
}

.site-footer .footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Further overrides to match new screenshot */
.site-header.glassy-header {
    background: rgba(85, 85, 85, 0.95) !important;
    /* Grey background */
    border-bottom: 1px solid #444 !important;
}

.site-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.site-logo .logo-badge {
    background-color: #e50000 !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    font-size: 24px !important;
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo .brand-main {
    color: #000 !important;
    /* Black */
    font-weight: 900 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.site-logo .brand-sub {
    color: #e50000 !important;
    /* Red */
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-top: 2px !important;
}

.main-navigation ul.nav-menu>li>a {
    color: #fff !important;
    font-weight: 600 !important;
}

.main-navigation ul.nav-menu>li.current-menu-item>a {
    color: #e50000 !important;
    border-bottom: 2px solid #e50000 !important;
    padding-bottom: 5px !important;
}

.header-actions .btn-header-call {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Overrides to match the 2nd image (Dark/Black Glassy Theme) */
.site-header.glassy-header {
    background: rgba(10, 10, 10, 0.85) !important;
    /* Dark/Black glassy background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.site-logo .logo-badge {
    background-color: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.site-logo .brand-main {
    color: #fff !important;
    /* White */
    font-weight: 600 !important;
    font-size: 24px !important;
    text-transform: lowercase !important;
    letter-spacing: 1px !important;
}

.site-logo .brand-sub {
    color: #e50000 !important;
    /* Red */
    text-transform: lowercase !important;
    letter-spacing: 6px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    margin-top: 0px !important;
}

.main-navigation ul.nav-menu>li>a {
    color: #fff !important;
    font-size: 15px !important;
}

.main-navigation ul.nav-menu>li.current-menu-item>a {
    color: #fff !important;
    /* Keep text white */
    border-bottom: 2px solid #e50000 !important;
    /* Red underline */
}

.header-actions .btn-header-call {
    background: rgba(25, 25, 25, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
}

/* Final override for solid black navbar */
.site-header,
.site-header.glassy-header {
    background: #000000 !important;
    background-color: #000000 !important;
}

/* Restore Black Glassy Look */
.site-header,
.site-header.glassy-header {
    background: rgba(0, 0, 0, 0.65) !important;
    /* Semi-transparent black for the glass effect */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Solid black initially, Glassy on scroll */
.site-header,
.site-header.glassy-header {
    background: #000000 !important;
    /* Solid black at top */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease !important;
}

.site-header.scrolled,
.site-header.glassy-header.scrolled {
    background: rgba(0, 0, 0, 0.65) !important;
    /* Glassy black on scroll */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-socials .social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.3) !important;
    /* Made it grey based on mockup */
    text-decoration: none !important;
}

.footer-socials .social-icon:hover {
    color: #fff !important;
}

/* User specified colors */
.site-header,
.site-header.glassy-header {
    background: rgba(12, 16, 19, 0.85) !important;
    /* Adjusted to 85% opacity to allow the glass blur to be visible */
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.site-footer {
    background-color: #0c1013 !important;
}

.site-footer .footer-bottom {
    background-color: #0c1013 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer title red underlines */
.site-footer .footer-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.site-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #e50000;
}

/* ==========================================================================
   News & Insights Page Styles
   ========================================================================== */

.news-insights-page {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* 1. Hero Section */
.news-hero-section {
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 5px solid var(--primary-red);
}

.news-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-hero-content {
    max-width: 600px;
    color: var(--text-white);
}

.news-hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.tag-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.news-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.news-hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-news-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-smooth);
}

/* 2. Quick Topics */
.quick-topics-section {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 20px;
}

.quick-topics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.quick-topics-label {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
}

.quick-topics-buttons {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.quick-topics-buttons::-webkit-scrollbar {
    height: 4px;
}

.quick-topics-buttons::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.topic-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background-color: #ffffff;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.topic-btn:hover {
    border-color: #cbd5e1;
    background-color: #f1f5f9;
    color: #0f172a;
}

.topic-btn.active {
    background-color: var(--primary-red, #e31837);
    color: #ffffff;
    border-color: var(--primary-red, #e31837);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.2);
}

/* General Section Setup */
.news-section {
    padding: 80px 20px;
}

.news-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.news-section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.news-view-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.news-view-all:hover {
    color: var(--hover-red);
    transform: translateX(5px);
}

/* 3. Featured Stories */
.featured-stories-section {
    background-color: #f8fafc;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.featured-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.featured-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--text-white);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.badge-red {
    background-color: var(--primary-red);
    color: #ffffff;
}

.featured-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 15px;
    line-height: 1.2;
}

.small-featured .featured-content h3 {
    font-size: 22px;
}

.featured-content p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 90%;
}

.read-story-link {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.featured-card:hover .read-story-link {
    gap: 12px;
}

/* 4. Latest Articles */
.latest-articles-section {
    background-color: #ffffff;
}

.articles-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.article-horizontal-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    gap: 20px;
    transition: all 0.3s ease;
}

.article-horizontal-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
}

.article-img-box {
    width: 140px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    flex-grow: 1;
}

.article-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.article-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-meta {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-dot {
    margin: 0 5px;
}

.article-arrow {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.article-horizontal-card:hover .article-arrow {
    color: var(--primary-red);
}

/* 5. Vehicle Spotlight */
.vehicle-spotlight-banner {
    padding: 0 20px 80px 20px;
    background-color: #ffffff;
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.spotlight-card {
    background-color: #08080a;
    border-radius: 12px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #1e293b;
}

.spotlight-content-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.spotlight-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.spotlight-left-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spotlight-features li {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-features li i {
    color: var(--primary-red);
}

.spotlight-center-img {
    width: 450px;
}

.spotlight-car {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
}

.spotlight-specs {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-item i {
    font-size: 20px;
    color: #94a3b8;
    width: 24px;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 14px;
    font-weight: 800;
}

.btn-spotlight-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-spotlight-view:hover {
    background-color: var(--hover-red);
    color: #ffffff;
}

/* 6. Buying Resource Centre */
.resource-centre-section {
    background-color: #f8fafc;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transform: translateY(-3px);
}

.resource-icon {
    font-size: 28px;
    color: #0f172a;
}

.resource-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.resource-text p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* 7. Latest Deliveries */
.latest-deliveries-section {
    background-color: #ffffff;
}

.deliveries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.delivery-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}

.delivery-img {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.delivery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.delivery-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #94a3b8;
}

.delivery-bottom i {
    color: #f43f5e;
}

/* 8. Market Watch & Customer Stories */
.dual-layout-section {
    background-color: #f8fafc;
}

.dual-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
}

.market-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.market-stat-card {
    background-color: #08080a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.market-stat-card i {
    font-size: 24px;
    margin-bottom: 15px;
}

.trend-up {
    color: #22c55e;
}

.trend-down {
    color: #ef4444;
}

.trend-neutral {
    color: #94a3b8;
}

.stat-title {
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.text-white {
    color: #ffffff;
}

.stat-desc {
    font-size: 11px;
    color: #64748b;
}

.customer-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.story-testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 12px;
    color: #0f172a;
}

.author-info span {
    font-size: 10px;
    color: #64748b;
}

/* 9. Responsive Adjustments */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .articles-grid-2col {
        grid-template-columns: 1fr;
    }

    .spotlight-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spotlight-center-img {
        width: 100%;
    }

    .spotlight-specs {
        text-align: left;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deliveries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .deliveries-grid {
        grid-template-columns: 1fr;
    }

    .customer-stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Footer Overrides */
.site-footer {
    padding: 40px 0 0 !important;
}

.site-footer .footer-container {
    padding: 0 20px 30px !important;
}

.site-footer .footer-desc,
.site-footer .footer-links a,
.site-footer .footer-contact span,
.site-footer .footer-contact i,
.site-footer .footer-newsletter p,
.site-footer .footer-bottom .copyright,
.site-footer .footer-legal a,
.site-footer .footer-socials .social-icon {
    color: #e2e8f0 !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-socials .social-icon:hover {
    color: var(--primary-red) !important;
}

/* Custom Social Media Section Overrides for New Design */
.social-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.scard {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.scard-ig {
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(to right, #833ab4, #fd1d1d, #fcb045) border-box;
}

.scard-yt {
    border-top-color: #ff0000;
}

.scard-fb {
    border-top-color: #1877f2;
}

.scard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scard-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scard-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.ig-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.yt-icon {
    background: #ff0000;
}

.fb-icon {
    background: #1877f2;
}

.scard-title {
    font-weight: 800;
    font-size: 14px;
    color: #111;
}

.scard-view-link {
    font-size: 12px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

.scard-media {
    flex-grow: 1;
}

.scard-media.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mt-2 {
    margin-top: 8px;
}

.sm-thumb,
.lg-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.sm-thumb img,
.lg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.lg-thumb {
    height: 180px;
}

.tall-thumb {
    height: 280px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.lg-thumb .play-overlay {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.lg-thumb .red-play {
    background: #ff0000;
    border: none;
}

.lg-thumb-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.lg-thumb-title span {
    font-size: 12px;
    font-weight: 400;
}

.scard-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.prof-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
}

.prof-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prof-info strong {
    font-size: 13px;
    color: #111;
}

.prof-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
    margin-top: 2px;
}

.btn-follow {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-yt {
    background: #ff0000;
}

.btn-fb {
    background: #1877f2;
}

.scard-footer-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.scard-footer-link:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
    color: #fff;
}

@media (max-width: 992px) {
    .social-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        padding: 30px 20px !important;
        background: #fff !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
        margin-bottom: 15px !important;
    }

    .why-item i {
        font-size: 40px !important;
        margin-bottom: 10px !important;
    }
}

/* ==========================================================================
   NEWS AND INSIGHTS REDESIGN 
   ========================================================================== */

.news-insights-page-new {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

.news-insights-page-new a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.ni-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.ni-section {
    padding: 80px 0;
}

/* Base UI Elements */
.ni-section-tag {
    display: inline-block;
    color: #e31b23;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ni-section-tag.text-white {
    color: rgba(255, 255, 255, 0.7);
}

.ni-badge {
    background: #e31b23;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

.ni-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ni-btn-red {
    background: #e31b23;
    color: #fff;
    border: 1px solid #e31b23;
}

.ni-btn-red:hover {
    background: #c8151e;
    border-color: #c8151e;
    color: #fff;
}

.ni-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ni-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ni-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ni-btn-outline-white:hover {
    border-color: #fff;
    color: #fff;
}

/* Typography */
.ni-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ni-header-desc {
    font-size: 16px;
    color: #64748b;
}

/* 1. HERO SECTION */
.ni-hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.ni-hero-content {
    max-width: 700px;
}

.ni-hero-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e31b23;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ni-hero-tag .tag-line {
    width: 30px;
    height: 2px;
    background: #e31b23;
}

.ni-hero-title {
    font-size: 65px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.ni-hero-title span {
    color: #e31b23;
}

.ni-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.ni-hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.ni-hero-update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.update-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* 2. SUB NAV */
.ni-sub-nav {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    /* Adjust based on your header height */
    z-index: 100;
}

.ni-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ni-nav-list::-webkit-scrollbar {
    display: none;
}

.ni-nav-list li a {
    display: block;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.ni-nav-list li a:hover,
.ni-nav-list li a.active {
    color: #111;
    border-bottom-color: #e31b23;
}

/* 3. HEADLINES */
.ni-headlines-section {
    background: #fff;
}

.ni-headlines-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.ni-card-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.ni-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.ni-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.ni-card-large h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 15px 0;
    line-height: 1.2;
}

.ni-card-large p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.ni-read-more {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ni-headlines-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ni-card-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    min-height: 215px;
}

.ni-card-small h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
    line-height: 1.2;
}

.ni-card-small p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Effects */
.ni-card-large:hover .ni-card-overlay,
.ni-card-small:hover .ni-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.ni-card-large:hover h3,
.ni-card-small:hover h3 {
    color: #e31b23;
}

/* 4. INSIGHTS GRID */
.ni-insights-section.bg-light {
    background: #f8fafc;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ni-view-all {
    background: #e2e8f0;
    color: #111;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.ni-view-all:hover {
    background: #cbd5e1;
}

.ni-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ni-insight-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ni-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ni-insight-img {
    position: relative;
    aspect-ratio: 16/9;
}

.ni-insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ni-insight-img .ni-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.ni-insight-content {
    padding: 25px;
}

.ni-insight-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ni-insight-card:hover .ni-insight-content h3 {
    color: #e31b23;
}

.ni-insight-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.ni-read-more-red {
    font-size: 12px;
    font-weight: 700;
    color: #e31b23;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 5. STATS SECTION */
.ni-stats-section {
    background: black;
    padding: 80px 0;
}

.ni-stats-section .ni-section-header h2 {
    color: #fff;
}

.ni-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.ni-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #e31b23;
    margin-bottom: 10px;
    line-height: 1;
}

.ni-stat-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 6. FULL BRIEFS LIST */
.ni-briefs-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.ni-briefs-desc p {
    font-size: 14px;
    color: #64748b;
    max-width: 300px;
    text-align: right;
}

.ni-briefs-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ni-brief-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.ni-brief-item:last-child {
    border-bottom: none;
}

.ni-brief-tag {
    display: block;
    color: #e31b23;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ni-brief-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.ni-brief-icon {
    width: 36px;
    height: 36px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ni-brief-item:hover {
    background: #f8fafc;
}

.ni-brief-item:hover .ni-brief-icon {
    background: #e31b23;
    transform: rotate(90deg);
}

/* 7. CTA SECTION */
.ni-cta-section {
    background: black;
    padding: 60px 0;
}

.ni-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ni-cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
}

.ni-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.ni-cta-actions {
    display: flex;
    gap: 15px;
}

.ni-disclaimer {
    background: #f8fafc;
    padding: 20px 0;
    text-align: center;
}

.ni-disclaimer p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}


/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
    .ni-headlines-grid {
        grid-template-columns: 1fr;
    }

    .ni-card-large {
        min-height: 350px;
    }

    .ni-headlines-side {
        flex-direction: row;
    }

    .ni-card-small {
        min-height: 250px;
    }

    .ni-insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ni-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ni-hero-section {
        padding: 120px 0 60px 0;
    }

    .ni-hero-title {
        font-size: 40px;
    }

    .ni-hero-desc {
        font-size: 16px;
    }

    .ni-headlines-side {
        flex-direction: column;
    }

    .ni-insights-grid {
        grid-template-columns: 1fr;
    }

    .flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ni-briefs-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ni-briefs-desc p {
        text-align: left;
        max-width: 100%;
    }

    .ni-cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .ni-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ni-cta-actions .ni-btn {
        justify-content: center;
    }

    .ni-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ni-brief-item {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   BRIEFS ACCORDION STYLES
   ========================================================================== */
.ni-brief-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.ni-brief-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.ni-brief-body {
    display: none;
    padding-top: 20px;
    max-width: 900px;
}

.ni-brief-body p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ni-brief-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.ni-brief-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s ease;
}

.ni-brief-link-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #111;
}

/* Open State */
.ni-brief-item.open {
    background: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 10;
    position: relative;
    border-radius: 8px;
    margin: 10px 0;
}

.ni-brief-item.open .ni-brief-body {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.ni-brief-item.open .ni-brief-icon {
    background: #e31b23;
    transform: rotate(45deg);
}

.ni-brief-item.open:hover .ni-brief-icon {
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}