/* ==========================================================================
   24Cars Coimbatore - Modern Premium Automotive Theme Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #F8F8F6;              /* Primary Background (Soft Luxury Alabaster) */
    --bg-darker: #FFFFFF;            /* Secondary Background (Surface) */
    --bg-card: #FFFFFF;              /* Card Background */
    --bg-card-hover: #F8F8F6;
    
    --text-white: #111111;           /* Primary Text (Charcoal Black) */
    --text-muted: #5E5E5E;           /* Secondary Text */
    --text-gray: #8A8A8A;
    --text-real-white: #FFFFFF;      /* Fixed White for buttons/dark elements */
    
    --border-color: #E8E8E8;         /* Borders */
    --border-hover: #A67C52;         /* Accent Color (Bronze) */
    
    --primary-button: #111111;       /* Black */
    --primary-button-hover: #A67C52; /* Bronze accent */
    
    --accent-gold: #A67C52;          /* Luxury Accent (Bronze) */
    --accent-gold-hover: #8C6845;     /* Accent Hover (Darker Bronze) */
    --success-color: #1F6B42;        /* Success green */
    
    /* Gradients (Removed loud gradients, keeping subtle shadows and transitions) */
    --grad-glow: var(--accent-gold);
    --grad-dark: var(--bg-dark);
    
    /* Shadows & Glows (Subtle, natural shadows) */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    --glow-red: 0 0 15px rgba(166, 124, 82, 0.1);
    --glow-blue: 0 0 15px rgba(166, 124, 82, 0.1);
    
    /* Dimensions */
    --header-height: 85px;
    --max-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--grad-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

/* ==========================================================================
   Typography & Typography Utilities
   ========================================================================== */

.text-gradient {
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-red {
    color: var(--primary-red);
}

.text-blue {
    color: var(--primary-blue);
}

/* ==========================================================================
   Reusable UI Components
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

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

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.25rem auto 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    gap: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-button);
    color: #FFFFFF !important;
    border-color: var(--primary-button);
    box-shadow: 0 4px 12px rgba(35, 35, 35, 0.06);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--primary-button) !important;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.btn-secondary:hover {
    background-color: var(--bg-dark);
    border-color: var(--primary-button);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background-color: var(--bg-card);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--success-color);
    color: #FFFFFF !important;
}

.btn-whatsapp:hover {
    background-color: #175232;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 107, 66, 0.15);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* Cards (Glassmorphism style) */
.glass-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-color);
    background: var(--bg-darker);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: var(--bg-darker);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.12);
}

select.form-control {
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

select.form-control option {
    background: var(--bg-darker);
    color: var(--text-white);
}

/* Range Slider */
.slider-container {
    padding: 0.5rem 0;
}

.range-output {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-top: 0.25rem;
    display: block;
}

/* ==========================================================================
   1. Header & Navigation Bar
   ========================================================================== */

header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 75px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-normal);
}

header.scrolled .logo-img {
    height: 44px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-glow);
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all var(--transition-fast);
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   3. Main Used Car Buying Section & Requirements Form
   ========================================================================== */

.requirements-section {
    background: var(--bg-darker);
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #0d111d);
    pointer-events: none;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.req-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.req-info-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.req-info-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.step-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--primary-blue);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--glow-blue);
}

.step-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.step-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Premium Form Card */
.req-form-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.req-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-glow);
}

.req-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.req-form-card .form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ==========================================================================
   4. Available Cars (Inventory) Section
   ========================================================================== */

.inventory-section {
    background: var(--bg-dark);
}

/* Filters */
.inventory-filters {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    align-items: flex-end;
}

.inventory-filters .btn-reset {
    width: 100%;
    height: 45px;
    margin-bottom: 0.5rem;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.car-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-darker);
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.car-card:hover .car-img {
    transform: scale(1.06);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(212, 175, 55, 0.9);
    border: 1px solid var(--primary-blue);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.car-badge.verified {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--primary-red);
}

.car-price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    background: rgba(10, 13, 22, 0.85);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.car-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-brand-model {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.car-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
}

.spec-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spec-line svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.car-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-results svg {
    width: 48px;
    height: 48px;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* ==========================================================================
   5. Why Choose 24Cars Section
   ========================================================================== */

.why-choose-section {
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 3rem 2rem;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: rotateY(180deg);
    box-shadow: var(--glow-blue);
}

.why-card.why-card-red:hover .why-icon {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: var(--glow-red);
}

.why-card.why-card-red .why-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-red);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==========================================================================
   6. Our Services Section
   ========================================================================== */

.services-section {
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Left Card - Used Car Buying & Selling (Main Service) */
.main-service-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.main-service-card::after {
    content: 'MAIN SERVICE';
    position: absolute;
    top: 2rem;
    right: -3.5rem;
    background: var(--accent-gold);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-sm);
}

.main-service-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.main-service-tagline {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-service-description {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.main-service-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.bullet-item svg {
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.main-service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
}

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

/* Right Services List */
.other-services-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-row-card {
    display: flex;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-row-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-row-img {
    width: 140px;
    min-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-row-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.service-row-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.service-row-details p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.service-row-details .btn-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-row-details .btn-link:hover {
    color: var(--text-white);
}

/* ==========================================================================
   7. Sell Your Car Section & Image Upload Styling
   ========================================================================== */

.sell-section {
    background: var(--bg-dark);
}

.sell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sell-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sell-info-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
}

.sell-info-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.sell-steps-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sell-step-mini {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.sell-step-mini-num {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

.sell-step-mini h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.sell-step-mini p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* File Upload Component Styling */
.file-upload-wrapper {
    position: relative;
    border: 1.5px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    background: rgba(10, 13, 22, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-wrapper:hover {
    border-color: var(--primary-blue);
    background: rgba(10, 13, 22, 0.6);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.file-upload-text span {
    color: var(--text-white);
    font-weight: 600;
}

.file-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.file-preview-tag {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. How It Works Section
   ========================================================================== */

.how-it-works-section {
    background: var(--bg-dark);
}

.how-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: var(--border-hover);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Connecting Line */
.process-flow::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.75rem;
    color: var(--text-white);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.process-card:hover .process-circle {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: var(--glow-red);
}

.process-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Process Sell Flow (4 steps) */
.process-flow-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   9. About Us Section
   ========================================================================== */

.about-section {
    background: #090c14;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 85%;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 60%;
    background: var(--bg-card);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--glow-blue), var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.about-badge-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.about-badge-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-tag {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.about-feat-item svg {
    color: var(--primary-red);
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   10. Customer Testimonials Section
   ========================================================================== */

.testimonials-section {
    background: var(--bg-darker);
}

.slider-outer {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.testimonials-wrapper {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.stars {
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.slider-dot.active {
    background: var(--accent-gold) !important;
    transform: scale(1.3);
    box-shadow: none !important;
}

.slider-arrow {
    background: var(--bg-darker) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-white) !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--text-white);
    background: var(--bg-card-hover);
}

/* ==========================================================================
   11. Contact Section
   ========================================================================== */

.contact-section {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-heading p {
    color: var(--text-muted);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-card:hover .contact-detail-icon {
    background: var(--primary-blue);
    color: var(--text-white);
}

.contact-detail-card.whatsapp-card .contact-detail-icon {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.contact-detail-card.whatsapp-card:hover .contact-detail-icon {
    background: #25d366;
    color: var(--text-white);
}

.contact-detail-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-ctas-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.contact-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   12. Floating Quick Contact Shortcuts
   ========================================================================== */

.floating-contact-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    border: none;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.floating-phone {
    background-color: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-phone:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.floating-btn .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0f172a;
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    align-self: flex-start;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-circle:hover {
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

.social-circle.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aec 90%);
    border-color: transparent;
}

.social-circle.whatsapp:hover {
    background: #25d366;
    border-color: transparent;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-item svg {
    color: var(--primary-blue);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.footer-bottom-links a:hover {
    color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-bg-overlay {
        background: var(--bg-dark);
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sell-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-images {
        order: 2;
    }
    
    .about-img-main {
        margin: 0 auto;
    }
    
    .about-badge-card {
        right: 10%;
    }
    
    .about-features {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .process-flow::after {
        display: none;
    }
    
    .process-flow-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Navigation drawer for mobile */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: left var(--transition-normal);
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        color: var(--text-white);
    }

    .hero-bg-watermark {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hamburger Active Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    .header-ctas .btn-primary {
        display: none; /* Hide find my car from small headers, place in menu or hero */
    }
    
    .req-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .inventory-filters {
        grid-template-columns: 1fr;
    }
    
    .main-service-card {
        padding: 2rem 1.5rem;
    }
    
    .main-service-bullets {
        grid-template-columns: 1fr;
    }
    
    .sell-steps-cards {
        grid-template-columns: 1fr;
    }
    
    .process-flow, .process-flow-4 {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-contact-panel {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   Success Modal Styling
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--glow-blue);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

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

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-white);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.modal-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.modal-message {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.modal-phone-message {
    color: var(--accent-silver);
    font-size: 0.95rem;
    background: rgba(10, 13, 22, 0.5);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.modal-phone-message strong {
    color: var(--primary-red);
}

.modal-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Hero Sourcing Standards Trust Card Styling
   ========================================================================== */
.hero-graphic {
    display: flex;
    justify-content: flex-end;
}

.trust-card-hero {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

.trust-card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
}

.trust-header-hero {
    margin-bottom: 1.75rem;
    text-align: left;
}

.trust-badge-hero {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.trust-header-hero h3 {
    font-size: 1.5rem;
    color: var(--text-white);
}

.trust-checklist-hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.trust-checklist-hero li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.checklist-icon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.25);
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.checklist-icon-hero svg {
    width: 12px;
    height: 12px;
}

.checklist-text-hero h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}

.checklist-text-hero p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.trust-footer-hero {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}


/* ==========================================================================
   Luxury Blended Showroom Display Styles & Animations
   ========================================================================== */
.hero-car-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: luxuryReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, luxuryFloat 9s ease-in-out infinite 1.4s;
}

.hero-car-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-car-wrapper:hover .hero-car-img {
    transform: scale(1.04) rotate(0.5deg); /* Luxurious tilt and zoom */
}

@keyframes luxuryReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes luxuryFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.8deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-bg-watermark {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.05;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: 0.06em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   Premium Dark Footer Redesign
   ========================================================================== */
footer {
    background: #111111 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 6rem 0 3rem 0 !important;
    color: #FFFFFF !important;
}

footer .footer-desc {
    color: #A7A7A7 !important;
}

footer .footer-links a {
    color: #A7A7A7 !important;
    font-family: 'Inter', sans-serif;
}

footer .footer-links a:hover {
    color: var(--accent-gold) !important;
    padding-left: 6px;
}

footer .footer-contact-item {
    color: #A7A7A7 !important;
    font-family: 'Inter', sans-serif;
}

footer .footer-contact-item svg {
    color: var(--accent-gold) !important;
}

footer .footer-col h4 {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

footer .footer-col h4::after {
    background: var(--accent-gold) !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #6D6D6D !important;
}

footer .social-circle {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #A7A7A7 !important;
}

footer .social-circle:hover {
    color: #FFFFFF !important;
    border-color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Testimonials Customer Avatar Styling */
.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-author {
    text-align: left;
}

