/* ===================================
   Three6 Car Sales - Main Stylesheet
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffbc09; /* Golden yellow primary */
    --primary-light: #ffd633; /* Lighter gold */
    --primary-dark: #e6a800; /* Darker gold */
    --secondary-color: #b38600; /* Deep gold */
    --accent-color: #cc9900; /* Medium gold */
    --black: #000000; /* Pure black */
    --dark-gray: #2c2c2c; /* Dark gray */
    --light-gray: #f8f8f8; /* Light gray */
    --white: #ffffff; /* Pure white */
    --text-color: var(--dark-gray);
    --dark-section-bg: #1a1a1a; /* Dark section background */
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --info-color: #2196F3;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

.nav-utility {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-utility-btn {
    position: relative;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-utility-btn:hover {
    background: rgba(0, 0, 0, 0.25);
    color: var(--black);
    border-bottom: none;
}

.nav-utility-btn .compare-badge,
.nav-utility-btn .wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--primary-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(230, 168, 0, 0.5) 50%, rgba(255, 188, 9, 0.5) 100%), 
                url('../img/background.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 188, 9, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(179, 134, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-phone {
    margin: 1.5rem 0 0;
    font-size: 1.05rem;
    color: var(--white);
    animation: fadeInUp 1s ease 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-phone i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.hero-phone a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.hero-phone a:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 188, 9, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 188, 9, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-light {
    background: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--dark-section-bg);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
    color: #ccc;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(255, 188, 9, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* ===================================
   Vehicles Grid
   =================================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Denser variant for the admin vehicle list — the public-site card size
   (minmax 320px) only fits 2 per row in the admin content area. */
.admin-vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.25rem;
}

.admin-vehicles-grid .vehicle-image {
    height: 160px;
}

.vehicle-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.15);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #1a1a1a;
}

.vehicle-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    text-shadow: none;
}

.status-live {
    background: var(--primary-color);
    color: var(--black);
}

.status-available {
    background: var(--primary-color);
    color: var(--black);
}

.status-sold {
    background: var(--danger-color);
    color: #fff;
}

.status-reserved {
    background: var(--warning-color);
    color: #fff;
}

.vehicle-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.vehicle-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #ccc;
}

.vehicle-detail {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.vehicle-card .btn {
    width: 100%;
}

.loading-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.125rem;
}

/* ===================================
   Features Section
   =================================== */
.why-choose-section {
    background: #111;
    border-top: 1px solid rgba(255, 188, 9, 0.15);
    border-bottom: 1px solid rgba(255, 188, 9, 0.15);
    padding-top: 2.5rem;
}

.why-choose-section .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-item p {
    color: #aaa;
}

/* ===================================
   Contact & Sourcing Section
   =================================== */
.contact-sourcing-section {
    background: #0f0f0f;
    padding: 5rem 0;
}

.contact-sourcing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-section .section-subtitle {
    color: #ccc;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.quick-contact-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.sourcing-cta-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.sourcing-cta-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sourcing-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sourcing-cta-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.sourcing-cta-card p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sourcing-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.benefit-item i {
    font-size: 1rem;
}

/* ===================================
   Sourcing Request Page
   =================================== */
.sourcing-request-section {
    background: #0f0f0f;
    padding: 5rem 0;
}

.sourcing-request-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.sourcing-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sourcing-info p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sourcing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sourcing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sourcing-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.sourcing-features .feature-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sourcing-features .feature-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.sourcing-form-container h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sourcing-form-container > p {
    color: #ccc;
    margin-bottom: 2rem;
}

.detailed-sourcing-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h4 i {
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: #fff;
    text-align: center;
    padding: 1.75rem 0;
}

.page-header h1 {
    font-size: 1.85rem;
    margin: 0 0 0.3rem;
}

.page-header p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   Filters Section
   =================================== */
.filters-section {
    background: var(--dark-section-bg);
    padding: 2rem 0;
}

.filters-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.filter-group label i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.results-count {
    text-align: center;
    margin-top: .5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* ===================================
   Service Detail Pages
   =================================== */
.services-grid-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.services-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-col-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-col-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-col-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.service-col-card h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-col-tagline {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-col-desc {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-col-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-col-features li {
    color: #999;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-col-features li:last-child {
    border-bottom: none;
}

.service-col-features li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-col-card .btn-block {
    margin-top: auto;
}

/* Old service styles kept for backward compatibility */
.service-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.service-section.service-alt {
    background: #1a1a1a;
}

.service-card-modern {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.service-header h2 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-weight: 700;
}

.service-tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.service-content-grid {
    display: grid;
    gap: 3rem;
}

.service-description {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-description p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-badge {
    background: rgba(15, 15, 15, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    background: rgba(26, 26, 26, 0.9);
}

.feature-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-badge h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-badge p {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section-modern {
    padding: 5rem 0;
    background: #0f0f0f;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: fit-content;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.contact-intro {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-methods-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.contact-info-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    color: #e6b800;
    gap: 0.75rem;
}

.contact-form-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.contact-form-modern .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-modern label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.contact-form-modern select option {
    background: #1a1a1a;
    color: #fff;
}

.contact-form-modern textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-modern button[type="submit"] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .services-three-col {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .services-three-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   Sourcing Request Page
   =================================== */
.sourcing-section-modern {
    padding: 5rem 0;
    background: #0f0f0f;
}

.sourcing-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
}

.sourcing-benefits-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: fit-content;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 110px;
}

.sourcing-benefits-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.benefits-intro {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-modern {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.benefit-modern h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-modern p {
    color: #999;
    margin: 0;
    font-size: 0.875rem;
}

.sourcing-form-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sourcing-form-modern .form-section-modern {
    margin-bottom: 2.5rem;
}

.section-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.section-header-modern i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.125rem;
}

.section-header-modern h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.form-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.form-grid-two-col {
    grid-template-columns: repeat(2, 1fr);
}

.sourcing-form-modern .form-group {
    margin-bottom: 0;
}

.sourcing-form-modern label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.sourcing-form-modern input,
.sourcing-form-modern select,
.sourcing-form-modern textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.sourcing-form-modern input:focus,
.sourcing-form-modern select:focus,
.sourcing-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.sourcing-form-modern select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group-full {
    margin-bottom: 1.5rem;
}

.form-group-full label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.form-group-full textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-group-full textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-actions-modern {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    flex: 1;
}

/* Responsive — used by both the Sourcing Request and Sell Your Car (part
   exchange) forms, which share .form-grid-modern / .form-grid-two-col /
   .sourcing-layout. Placed here, after their base rules, so it actually
   wins the cascade (an earlier attempt at this further up the file was
   silently overridden by these base rules and never took effect). */
@media (max-width: 992px) {
    .sourcing-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid-modern {
        grid-template-columns: 1fr;
    }

    .form-actions-modern {
        flex-direction: column;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 188, 9, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #a00d25;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    /* Logo/tagline column and Contact column each take their own full-width
       row; Quick Links and Services pair up side by side between them. */
    .footer-col:nth-child(1),
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        padding: 0;
    }
}

/* ===================================
   Admin Styles
   =================================== */
.admin-body {
    background: var(--dark-gray);
    min-height: 100vh;
}

/* Admin Login */
.admin-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    padding: 2rem;
    position: relative;
}

.admin-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 188, 9, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(179, 134, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.admin-login-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-logo {
    max-width: 150px;
    margin-bottom: .5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.admin-login-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.admin-login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.admin-login-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    z-index: 2;
}

.floating-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.5rem;
    z-index: 1;
}

.admin-login-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.admin-login-form input:-webkit-autofill,
.admin-login-form input:-webkit-autofill:hover,
.admin-login-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset;
    -webkit-text-fill-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 188, 9, 0.1);
}

.admin-login-form input:focus + .input-icon + .floating-label {
    top: -0.5rem;
    left: 2.5rem;
    font-size: 0.875rem;
    color: #fff;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.form-group-checkbox input {
    width: auto;
}

.admin-login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.admin-login-footer a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.admin-login-footer a:hover {
    color: var(--primary-light);
}

/* Admin Navigation */
.admin-nav {
    width: 260px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-nav-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #333;
    text-align: center;
}

.admin-nav-header img {
    max-width: 80px;
    margin-bottom: 1rem;
}

.admin-nav-header h2 {
    font-size: 1.25rem;
}

.admin-nav-menu {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
}

.admin-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #ccc;
    transition: all 0.3s;
}

.admin-nav-menu li a:hover,
.admin-nav-menu li a.active {
    background: var(--secondary-color);
    color: #fff;
}

.admin-nav-menu li a i {
    font-size: 1.125rem;
    width: 20px;
}

.admin-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.admin-user-info i {
    font-size: 1.5rem;
}

.btn-logout {
    width: 100%;
    padding: 0.75rem;
    background: var(--danger-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-logout:hover {
    background: #d32f2f;
}

/* Admin Content */
.admin-content {
    margin-left: 260px;
    flex: 1;
    padding: 2rem;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
}

.admin-header-actions {
    display: flex;
    gap: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Admin Section */
.admin-section {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-section-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Admin Table */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--dark-section-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.admin-table td {
    color: var(--text-color);
}

.admin-table img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.admin-table .status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.live {
    background: #d4edda;
    color: #155724;
}

.status-badge.sold {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.in-progress {
    background: #fff3cd;
    color: #856404;
}

.status-badge.reserved {
    background: #d1ecf1;
    color: #0c5460;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.btn-icon.edit {
    color: var(--info-color);
}

.btn-icon.delete {
    color: var(--danger-color);
}

.btn-icon:hover {
    opacity: 0.7;
}

.btn-danger {
    background: var(--danger-color);
    color: #fff;
}

.btn-danger:hover {
    background: #d32f2f;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-filter-group {
    flex: 1;
    min-width: 200px;
}

.admin-filter-group input,
.admin-filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: #fff;
}

/* Admin Form */
.admin-form {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section h3 i {
    color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row-compact {
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Photo Upload Styles */
.photo-upload-section {
    margin-top: 1.5rem;
}

.photo-upload-info {
    background: rgba(255, 188, 9, 0.1);
    border: 1px solid rgba(255, 188, 9, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.photo-upload-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.photo-upload-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.existing-photos {
    margin-bottom: 2rem;
}

.existing-photos h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.photo-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark-section-bg);
}

.photo-preview {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-controls {
    padding: 0.75rem;
}

.photo-controls input {
    width: 100%;
    margin-bottom: 0.5rem;
}

.photo-controls input:last-child {
    margin-bottom: 0;
}

.new-photos-upload h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.photo-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: var(--dark-section-bg);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.photo-upload-area:hover,
.photo-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(255, 188, 9, 0.05);
}

.upload-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.upload-placeholder p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--text-color);
}

.upload-hint {
    color: #666;
    font-size: 0.9rem;
}

.selected-files {
    margin-bottom: 1rem;
}

.selected-file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-section-bg);
    margin-bottom: 0.5rem;
}

.file-preview {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-info {
    flex: 1;
}

.file-name {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

.remove-file-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.remove-file-btn:hover {
    background: #c82333;
}

.upload-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--border-color);
}

.no-photos {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
    background: var(--dark-section-bg);
    border-radius: 8px;
}

/* Vehicle Detail Page */
.vehicle-detail-section {
    padding: 5rem 0;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vehicle-gallery {
    position: sticky;
    top: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-large {
    width: 100%;
    height: 400px;
    background: var(--dark-section-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.no-image-large i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.vehicle-info-detail {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 140px;
    max-height: 140px;
    overflow: hidden;
    align-content: start;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--dark-section-bg);
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.vehicle-description,
.vehicle-features {
    margin-bottom: 2rem;
}

.vehicle-description h3,
.vehicle-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.vehicle-description p {
    line-height: 1.6;
    color: var(--text-color);
}

.vehicle-features ul {
    list-style: none;
    padding: 0;
}

.vehicle-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.vehicle-features li:last-child {
    border-bottom: none;
}

.vehicle-features li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 188, 9, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.feature-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category h4 i {
    font-size: 1rem;
}

.feature-category ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    border-bottom: none;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature-category li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Quick Stats */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-section-bg);
    border-radius: 10px;
}

.quick-stat h4 {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.quick-stat p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn {
        order: 3;
        margin-left: 0.5rem;
    }

    .nav-utility {
        order: 2;
        margin-left: auto;
        padding-left: 0;
        border-left: none;
        gap: 0.4rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-nav {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .admin-nav.active {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact & Sourcing section responsive */
    .contact-sourcing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sourcing-cta-card {
        height: auto;
    }
    
    .quick-contact-form,
    .sourcing-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Contact & Sourcing section mobile */
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .sourcing-cta-card h3 {
        font-size: 1.5rem;
    }
    
    .quick-contact-form,
    .sourcing-cta-card {
        padding: 1.5rem;
    }
    
    /* Sourcing request page responsive */
    .sourcing-request-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sourcing-info h2 {
        font-size: 2rem;
    }
    
    .sourcing-form-container h3 {
        font-size: 1.75rem;
    }
    
    .detailed-sourcing-form {
        padding: 2rem;
    }
}

/* ===================================
   LOGIN.PHP STYLES
   =================================== */

.admin-body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-container {
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
}

.admin-login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admin-login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.admin-login-header {
    margin-bottom: 2.5rem;
}

.admin-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 188, 9, 0.3);
}

.admin-login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.admin-login-form {
    margin-bottom: 2rem;
}

.admin-login-form .form-group {
    margin-bottom: 1.5rem;
}

.input-container {
    position: relative;
    margin-bottom: 1rem;
}

.input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 188, 9, 0.1);
}

.input-container input:focus + .input-icon {
    color: var(--primary-color);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.floating-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-container input:focus + .input-icon + .floating-label,
.input-container input:not(:placeholder-shown) + .input-icon + .floating-label {
    top: -10px;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 188, 9, 0.3);
}

.admin-login-footer {
    border-top: 1px solid #e1e1e1;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.admin-login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.admin-login-footer a:hover {
    color: var(--secondary-color);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.alert-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.alert i {
    font-size: 1.1rem;
}

/* ===================================
   ADMIN DASHBOARD STYLES
   =================================== */

.admin-nav-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.admin-nav-info span {
    color: var(--white);
    font-weight: 500;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.dashboard-section {
    padding: 3rem 0;
    background: #0f0f0f;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.stat-content p {
    color: #ccc;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.quick-actions-section {
    padding: 3rem 0;
    background: var(--dark-section-bg);
}

.quick-actions-section h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.action-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.action-card p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Login responsive styles */
@media (max-width: 480px) {
    .admin-login-box {
        padding: 2rem 1.5rem;
        margin: 10px;
    }

    .admin-login-header h1 {
        font-size: 1.75rem;
    }

    .admin-logo {
        width: 70px;
        height: 70px;
    }

    .input-container input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    }

    .input-icon {
        left: 0.875rem;
    }

    .floating-label {
        left: 2.75rem;
    }
}
/* ===================================
   Vehicle Search Section
   =================================== */
.search-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 3rem 0;
    border-bottom: 3px solid var(--primary-color);
}

.search-container {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.vehicle-search-form {
    margin: 0;
}

.search-basic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-field label i {
    font-size: 1rem;
}

.search-input {
    padding: 0.875rem 1rem;
    border: 2px solid #374151;
    border-radius: 10px;
    background: #1e293b;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 188, 9, 0.1);
}

.search-input option {
    background: #1e293b;
    color: var(--white);
}

.search-btn {
    width: 100%;
    height: 48px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Advanced Search Toggle */
.advanced-search-toggle {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background: rgba(255, 188, 9, 0.1);
}

.btn-text i {
    transition: transform 0.3s ease;
}

/* Advanced Search Section */
.search-advanced {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.search-advanced.active {
    max-height: 800px;
    opacity: 1;
    margin-top: 2rem;
}

.search-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 15px;
    border: 1px solid #374151;
}

.search-advanced-actions {
    margin-top: 1.5rem;
    text-align: center;
}

/* Search Results */
.search-results {
    margin-top: 3rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #374151;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #374151;
}

.search-results-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--black);
    transform: rotate(90deg);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.empty-state i {
    font-size: 4rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Responsive Search Section */
@media (max-width: 768px) {
    .search-container {
        padding: 1.5rem;
    }

    .search-title {
        font-size: 1.5rem;
    }

    .search-basic {
        grid-template-columns: 1fr;
    }

    .search-advanced-grid {
        grid-template-columns: 1fr;
    }

    .search-results {
        padding: 1rem;
    }
}

/* Comparison Badge */
.compare-link {
    position: relative;
}

.compare-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* WhatsApp Button */
.btn-success {
    background: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background: #20ba5a;
    border-color: #20ba5a;
}

/* Comparison button active state */
.btn.active {
    background: #16a34a !important;
    border-color: #16a34a !important;
}

/* ===================================
   Vehicle Detail Page - Modern
   =================================== */

.vehicle-detail-hero {
    background: linear-gradient(135deg, var(--primary-color), #333);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.vehicle-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.vehicle-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.vehicle-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vehicle-title-modern h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.variant-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.vehicle-price-hero {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    text-shadow: none;
    white-space: nowrap;
}

.vehicle-detail-section-modern {
    background: #0f0f0f;
    padding: 4rem 0;
}

.vehicle-detail-grid-modern {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 3rem;
    align-items: start;
}

/* Gallery Styles */
.vehicle-gallery-modern {
    position: sticky;
    top: 110px;
}

.vehicle-gallery-modern .main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.vehicle-gallery-modern .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.vehicle-gallery-modern .main-image:hover img {
    transform: scale(1.02);
}

.vehicle-gallery-modern .thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.vehicle-gallery-modern .thumbnail {
    width: 100%;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.vehicle-gallery-modern .thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.vehicle-gallery-modern .thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.vehicle-gallery-modern .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Card */
.vehicle-info-card-modern {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.info-section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

/* Specs Grid */
.vehicle-specs-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.spec-item-modern {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.1);
    transition: all 0.3s ease;
}

.spec-item-modern:hover {
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.spec-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.spec-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.spec-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* Description */
.vehicle-description-modern {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.vehicle-description-modern p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Features */
.vehicle-features-modern {
    margin-bottom: 2.5rem;
}

.vehicle-features-modern .feature-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.5);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
}

.vehicle-features-modern .feature-category:last-child {
    margin-bottom: 0;
}

.vehicle-features-modern .feature-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.vehicle-features-modern .feature-category h4 i {
    font-size: 1.2rem;
    width: 24px;
}

.vehicle-features-modern .feature-category ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.vehicle-features-modern .feature-category li {
    padding: 0.5rem 0;
    border-bottom: none;
    color: #ddd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.vehicle-features-modern .feature-category li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Action Buttons */
.vehicle-actions-modern {
    background: rgba(15, 15, 15, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.vehicle-actions-modern .info-section-title {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-buttons-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vehicle-actions-modern .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.vehicle-actions-modern .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vehicle-detail-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vehicle-gallery-modern {
        position: static;
    }
    
    .vehicle-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vehicle-title-modern h1 {
        font-size: 2rem;
    }
    
    .vehicle-price-hero {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vehicle-detail-hero {
        padding: 2rem 0;
    }
    
    .vehicle-title-modern h1 {
        font-size: 1.75rem;
    }
    
    .vehicle-price-hero {
        font-size: 2rem;
    }
    
    .vehicle-specs-modern {
        grid-template-columns: 1fr;
    }
    
    .vehicle-gallery-modern .main-image {
        border-radius: 10px;
    }
    
    .action-buttons-grid,
    .action-buttons-secondary {
        grid-template-columns: 1fr;
    }
    
    .vehicle-features-modern .feature-category ul {
        grid-template-columns: 1fr;
    }
}

/* Advanced Filters */
.advanced-filters {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 20px;
    border: 2px solid var(--primary-color);
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.advanced-filters .filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.advanced-filters .filter-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline.active {
    background: var(--success-color, #16a34a);
    border-color: var(--success-color, #16a34a);
    color: white;
}

@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-filters .filter-actions {
        flex-direction: column;
    }
}

/* ===================================
   Redesigned Inventory Filters
   =================================== */
.filters-bar {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 2px solid #2a2a2a;
}

.filter-item {
    flex: 1;
    min-width: 150px;
}

.filter-item.filter-search {
    flex: 2;
    position: relative;
    display: flex;
    align-items: center;
}

.filter-item.filter-search i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
}

.filter-item.filter-search input {
    padding-left: 45px;
}

.filter-item input,
.filter-item select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: white;
}

.filter-item input:focus,
.filter-item select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 188, 9, 0.2);
}

.filter-item label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.filter-item label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.filter-submit {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 0;
}

/* Advanced Filters Panel */
.advanced-filters-panel {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 2px solid #2a2a2a;
}

.advanced-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.advanced-filters-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Filter Summary */
.filter-summary {
    text-align: center;
    margin: 1rem auto 0;
    padding: 0;
    width: 100%;
}

.results-count {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0rem auto;
}

.results-count strong {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.25rem;
    font-weight: 700;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.active-filters-label {
    font-weight: 600;
    color: #666;
    font-size: 0.875rem;
}

.filter-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1;
}

.filter-tag a:hover {
    color: var(--dark-gray);
}

.clear-all-filters {
    color: var(--danger-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.clear-all-filters:hover {
    background: rgba(244, 67, 54, 0.1);
}

/* Redesigned Vehicle Cards */
.vehicle-card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #2a2a2a;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 188, 9, 0.4);
    border-color: var(--primary-color);
}

.vehicle-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.vehicle-card .vehicle-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.vehicle-card .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.06);
}

.vehicle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 188, 9, 0.9) 0%, rgba(230, 168, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #000;
}

.vehicle-card:hover .vehicle-overlay {
    opacity: 1;
}

.vehicle-overlay i {
    font-size: 2.5rem;
}

.vehicle-overlay span {
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
}

.vehicle-header {
    margin-bottom: 1rem;
}

.vehicle-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 600;
}

.vehicle-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vehicle-title a:hover {
    color: var(--primary-color);
}

.vehicle-price {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-color);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 188, 9, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 188, 9, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #ccc;
    font-weight: 500;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.vehicle-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.btn-block {
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 2px solid #3a3a3a;
    background: #2a2a2a;
    color: #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-icon:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.compare-btn {
    width: auto;
    min-width: 44px;
    max-width: none;
    flex: 1;
    padding: 0 0.75rem;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-icon.compare-btn.active {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.btn-icon.compare-btn.active:hover {
    background: #45a049;
    border-color: #45a049;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-icon {
    font-size: 5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.empty-icon i {
    display: block;
}

.empty-state h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-item,
    .filter-item.filter-search {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-submit {
        width: 100%;
    }
    
    .vehicle-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .filter-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-buttons {
        width: 100%;
    }
    
    .btn-icon {
        flex: 1;
    }
}

/* ===================================
   Part Exchange Page
   =================================== */

.part-exchange-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.part-exchange-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
}

.part-exchange-benefits {
    background: rgba(26, 26, 26, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: fit-content;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 110px;
    color: #ccc;
}

.part-exchange-benefits p {
    color: #ccc;
}

.part-exchange-benefits .benefits-intro {
    color: #ccc;
}

.part-exchange-benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.part-exchange-benefits h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-item-modern {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-modern i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.benefit-item-modern h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-item-modern p {
    font-size: 0.9rem;
    color: #999;
}

.how-it-works ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.how-it-works ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.how-it-works ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.part-exchange-form-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.part-exchange-form-modern {
    color: #fff;
}

.part-exchange-form-modern .form-section-modern {
    margin-bottom: 2.5rem;
}

.part-exchange-form-modern .section-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.part-exchange-form-modern .section-header-modern i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #e6b800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.125rem;
}

.part-exchange-form-modern .section-header-modern h3 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.part-exchange-form-modern .form-group {
    margin-bottom: 0;
}

.part-exchange-form-modern .form-grid-modern {
    margin-bottom: 1.5rem;
}

.part-exchange-form-modern label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.part-exchange-form-modern input,
.part-exchange-form-modern select,
.part-exchange-form-modern textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.part-exchange-form-modern input:focus,
.part-exchange-form-modern select:focus,
.part-exchange-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.part-exchange-form-modern select option {
    background: #1a1a1a;
    color: #fff;
}

.part-exchange-form-modern input::placeholder,
.part-exchange-form-modern textarea::placeholder {
    color: #666;
}

.part-exchange-form-modern .form-group-full {
    margin-bottom: 1.5rem;
}

.part-exchange-form-modern .form-group-full label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.part-exchange-form-modern .form-group-full textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.part-exchange-form-modern .form-group-full textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.part-exchange-form-modern .form-actions-modern {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.part-exchange-form-modern .form-actions-modern .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .part-exchange-layout {
        grid-template-columns: 1fr;
    }

    .part-exchange-benefits {
        position: static;
    }
}

@media (max-width: 768px) {
    .part-exchange-form-modern .form-actions-modern {
        flex-direction: column;
    }
}

/* ===================================
   Privacy Policy Page
   =================================== */

.privacy-section {
    background: #0f0f0f;
    padding: 4rem 0;
}

.privacy-content {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.privacy-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.privacy-content ul {
    color: #ccc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-content strong {
    color: #fff;
}

.privacy-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

/* ===================================
   GDPR Cookie Consent Banner
   =================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
    }
}

/* ===================================
   Social Share Buttons
   =================================== */

.social-share-section {
    background: rgba(15, 15, 15, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    margin-bottom: 2rem;
}

.social-share-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-btn-facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn-email {
    background: #666;
    color: #fff;
}

.share-btn-copy {
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* ===================================
   Lightbox Gallery
   =================================== */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-image.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.photo-category-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(255, 193, 7, 0.3);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   Breadcrumb Navigation
   =================================== */

.breadcrumb-nav {
    background: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #ccc;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: #666;
}
/* ==========================================
   PART EXCHANGE CTA SECTION (HOMEPAGE)
   ========================================== */

.part-exchange-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2.5rem 0 5rem;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.part-exchange-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.part-exchange-cta-text {
    color: #fff !important;
}

.part-exchange-cta-text .section-title {
    color: #fff !important;
    margin-bottom: 1rem;
    text-align: left;
}

.part-exchange-cta-text .section-subtitle {
    color: #ccc !important;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.part-exchange-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pe-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pe-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pe-feature div {
    color: #fff;
}

.pe-feature h4 {
    color: #fff !important;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.pe-feature p {
    color: #999 !important;
    font-size: 0.9rem;
    line-height: 1.5;
}

.part-exchange-cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pe-visual-card {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

.pe-visual-card h3 {
    color: #fff !important;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.pe-visual-icon {
    width: 80px;
    height: 80px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.pe-visual-icon i {
    font-size: 2rem;
    color: #fff;
}

.pe-visual-icon-gold {
    background: linear-gradient(135deg, var(--primary-color), #e6a800);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.pe-visual-icon-gold i {
    color: #000;
}

.pe-visual-icon-success {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.pe-arrow {
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.pe-arrow i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large i {
    font-size: 1.2rem;
}

/* Responsive Design for Part Exchange CTA */
@media (max-width: 968px) {
    .part-exchange-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .part-exchange-features {
        grid-template-columns: 1fr;
    }

    .pe-visual-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .part-exchange-cta-section {
        padding: 3rem 0;
    }

    .part-exchange-cta-text .section-title {
        font-size: 2rem;
    }

    .part-exchange-cta-text .section-subtitle {
        font-size: 1rem;
    }

    .pe-visual-card {
        padding: 2rem 1.5rem;
    }

    .pe-visual-icon {
        width: 60px;
        height: 60px;
    }

    .pe-visual-icon i {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   Modern Statistics Section
   =================================== */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 188, 9, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 188, 9, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 188, 9, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 188, 9, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 188, 9, 0.3);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.375rem;
    color: var(--black);
    box-shadow: 0 8px 25px rgba(255, 188, 9, 0.4);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(255, 188, 9, 0.3);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .stat-number {
        font-size: 4rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .stat-label {
        font-size: 1.125rem;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: var(--dark-gray);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    transform: scale(0.95);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.testimonial-content {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 188, 9, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 188, 9, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 188, 9, 0.4);
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: #999;
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 188, 9, 0.3);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 188, 9, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ===================================
   Financing Calculator Widget
   =================================== */
.financing-calculator {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 188, 9, 0.2);
    margin-top: 2rem;
}

.financing-calculator h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calculator-inputs {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calculator-input-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.calculator-value {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-left: 0.5rem;
}

.slider-container {
    position: relative;
    padding: 1rem 0;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 188, 9, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 188, 9, 0.5);
}

.calculator-results {
    background: rgba(15, 15, 15, 0.8);
    padding: 2rem;
    border-radius: 10px;
    display: grid;
    gap: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: #ccc;
    font-size: 1rem;
}

.result-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.result-item.primary .result-value {
    font-size: 2rem;
    color: var(--primary-light);
    text-shadow: 0 2px 10px rgba(255, 188, 9, 0.3);
}

.calculator-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================
   Enhanced Responsive Design
   =================================== */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===================================
   Enhanced Inventory Page
   =================================== */
.filter-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(26, 26, 26, 0.8);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 188, 9, 0.2);
}

.view-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: rgba(255, 188, 9, 0.1);
    color: var(--primary-color);
}

.view-btn.active {
    background: var(--primary-color);
    color: var(--black);
}

/* List View Styles */
.vehicles-grid.list-view {
    grid-template-columns: 1fr;
}

.vehicles-grid.list-view .vehicle-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

.vehicles-grid.list-view .vehicle-image {
    height: 250px;
}

.vehicles-grid.list-view .vehicle-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}

.vehicles-grid.list-view .vehicle-title {
    font-size: 1.5rem;
    min-height: auto;
}

.vehicles-grid.list-view .vehicle-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.vehicles-grid.list-view .vehicle-price-section {
    text-align: right;
}

.vehicles-grid.list-view .btn {
    width: auto;
    padding: 0.75rem 2rem;
}

/* Inventory Page Enhancements */
.inventory-section {
    background: var(--dark-gray);
    padding: 3rem 0 5rem;
    min-height: 70vh;
}

.inventory-grid-animated .vehicle-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.inventory-grid-animated .vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.inventory-grid-animated .vehicle-card:nth-child(2) { animation-delay: 0.2s; }
.inventory-grid-animated .vehicle-card:nth-child(3) { animation-delay: 0.3s; }
.inventory-grid-animated .vehicle-card:nth-child(4) { animation-delay: 0.4s; }
.inventory-grid-animated .vehicle-card:nth-child(5) { animation-delay: 0.5s; }
.inventory-grid-animated .vehicle-card:nth-child(6) { animation-delay: 0.6s; }

.no-results-message {
    text-align: center;
    padding: 5rem 2rem;
    color: #ccc;
}

.no-results-message i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.no-results-message h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.no-results-message p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Enhanced Filter Styles */
.filters-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-submit {
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 188, 9, 0.3);
    color: var(--primary-color);
    padding: 0.875rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(255, 188, 9, 0.1);
    border-color: var(--primary-color);
}

.advanced-filters-panel {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 188, 9, 0.2);
}

.advanced-filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.advanced-filters-grid .filter-item label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.advanced-filters-grid .filter-item input,
.advanced-filters-grid .filter-item select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.advanced-filters-grid .filter-item input:focus,
.advanced-filters-grid .filter-item select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.advanced-filters-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 188, 9, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.filter-tag a {
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-tag a:hover {
    color: white;
}

.clear-all-filters {
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 1rem;
}

.clear-all-filters:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .filters-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .advanced-filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicles-grid.list-view .vehicle-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .view-toggle {
        justify-content: center;
    }

    .filters-bar {
        grid-template-columns: 1fr;
    }

    .advanced-filters-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Reviews Section (homepage)
   =================================== */
.reviews-cta-section {
    background: #0f0f0f;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 188, 9, 0.15);
    border-bottom: 1px solid rgba(255, 188, 9, 0.15);
    text-align: center;
}

.reviews-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.reviews-cta-stars {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

.reviews-cta-section .section-title {
    margin-bottom: 0.5rem;
}

.reviews-cta-section .section-subtitle {
    margin-bottom: 1.25rem;
}

/* Auto-scrolling testimonials marquee */
.reviews-marquee-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 1.25rem;
    text-align: left;
}

.reviews-marquee-header .section-title {
    margin: 0;
    font-size: 1.75rem;
}

.section-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.section-link:hover {
    text-decoration: underline;
}

.reviews-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation-name: reviewsScroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reviews-marquee-wrap:hover .reviews-marquee-track {
    animation-play-state: paused;
}

/* 5 or fewer reviews: show once, centered, no scrolling — a duplicated,
   endlessly-scrolling track looks broken when there's barely any content. */
.reviews-marquee-wrap.no-scroll {
    -webkit-mask-image: none;
    mask-image: none;
}

.reviews-marquee-track.static {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-mini-card {
    flex: 0 0 280px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.review-mini-stars {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.review-mini-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 0.75rem;
}

.review-mini-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .reviews-marquee-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .review-mini-card {
        flex-basis: 240px;
    }
}

/* ===================================
   Part Exchange Steps Card
   =================================== */
.pe-steps-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 188, 9, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pe-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.pe-step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--primary-color), #e6a800);
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 188, 9, 0.3);
}

.pe-step-text h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.pe-step-text p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   Section separator rhythm
   =================================== */
.featured-section {
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(255, 188, 9, 0.08);
    padding: 2.5rem 0;
}

.featured-section .section-subtitle {
    margin-bottom: 1.5rem;
}

/* Featured Vehicles carousel — always a single row; scrolls (rather than
   wraps to a second row) once there are more vehicles than fit at once.
   Centers itself when everything already fits with no overflow. */
.featured-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-vehicles-scroll {
    flex: 1;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.featured-vehicles-scroll.is-centered {
    justify-content: center;
}

.featured-vehicles-scroll::-webkit-scrollbar {
    height: 6px;
}

.featured-vehicles-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 188, 9, 0.4);
    border-radius: 10px;
}

.featured-vehicles-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.featured-vehicles-scroll .vehicle-card {
    flex: 0 0 calc((100% - 2 * 2rem) / 3);
    min-width: 280px;
    scroll-snap-align: start;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    z-index: 2;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 900px) {
    .featured-vehicles-scroll .vehicle-card {
        flex-basis: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 600px) {
    .featured-vehicles-scroll .vehicle-card {
        flex-basis: 85%;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

.services-section {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 188, 9, 0.08);
    padding-top: 2.5rem;
}

/* ===================================
   Footer contact link colours
   =================================== */
.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}
/* ===================================
   WhatsApp Floating Widget
   =================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
}

/* ===================================
   Quick Search: Body Type & Manufacturer (homepage)
   =================================== */
.quick-search-section {
    background: #0f0f0f;
    padding: 2.5rem 0;
}

.quick-search-section .section-title {
    margin-bottom: 1.5rem;
}

.quick-search-group {
    margin-bottom: 1.75rem;
}

.quick-search-group:last-child {
    margin-bottom: 0;
}

.quick-search-group-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.body-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.body-type-card {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.body-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.body-type-image {
    height: 70px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
}

.body-type-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.body-type-label {
    padding: 0.6rem 0.75rem;
    text-align: center;
}

.body-type-label span {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 1.05rem;
}

.body-type-label small {
    color: #999;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .body-type-image {
        height: 56px;
        padding: 0.5rem;
    }

    .body-type-label {
        padding: 0.5rem 0.6rem;
    }

    .body-type-label span {
        font-size: 0.95rem;
    }
}

/* ===================================
   Shop by Manufacturer (homepage)
   =================================== */
.manufacturer-chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.manufacturer-chip {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.manufacturer-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .manufacturer-chip-grid {
        gap: 0.4rem;
    }

    .manufacturer-chip {
        padding: 0.4rem 0.85rem;
        font-size: 0.82rem;
    }
}
