/* ========================================
   CARBUY - Modern Design System
   Version 2.0
   ======================================== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables - Colors Preserved
   ======================================== */
:root {
    /* Primary / Brand Base - Deep Navy Blue */
    --primary-color: #0A1A2F;
    
    /* Secondary / Surfaces - Steel Gray */
    --secondary-color: #1F2C3A;
    
    /* Accent / Action - Electric Cyan */
    --accent-color: #28C2FF;
    
    /* Text Light - Pure White */
    --text-light: #FFFFFF;
    
    /* Text Secondary - Cool Gray */
    --text-secondary: #DCE6F0;
    
    /* Borders / Lines - Soft Blue Gray */
    --border-color: #3D5266;
    
    /* Success / Price Highlight - Aqua Mint */
    --success-color: #3FFFE0;
    
    /* Warning / Market Heat - Fresh Yellow */
    --warning-color: #FFE278;
    
    /* New Design Tokens */
    --glass-bg: rgba(31, 44, 58, 0.7);
    --glass-border: rgba(61, 82, 102, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(40, 194, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base Reset & Typography
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Header & Navigation - Modern Glass Style
   ======================================== */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    border-bottom: 1px solid var(--glass-border);
}

.top-bar-content {
    padding: 10px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-contacts {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-contact {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-bar-contact:hover {
    color: var(--accent-color);
}

.top-bar-contact i {
    color: var(--accent-color);
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.logo span {
    color: var(--text-light);
}

.logo:hover {
    transform: scale(1.02);
    transition: transform var(--transition-fast);
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    font-size: 13px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-light);
    background: rgba(40, 194, 255, 0.1);
}

.nav-links a.active {
    color: var(--accent-color);
    background: rgba(40, 194, 255, 0.15);
}

/* Header nav dropdown (Services submenu) */
.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 8px 14px;
    white-space: nowrap;
}

.nav-dropdown.active > a {
    color: var(--accent-color);
    background: rgba(40, 194, 255, 0.15);
}

.nav-dropdown .dropdown-caret {
    font-size: 12px;
    opacity: 0.75;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    padding: 10px;
    background: #1a2332;
    border: 1px solid rgba(61, 82, 102, 0.6);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    color: var(--text-secondary, #DCE6F0);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--accent-color);
    font-size: 13px;
}

.nav-dropdown-menu a:hover {
    background: rgba(40, 194, 255, 0.12);
    color: var(--text-light, #fff);
    padding-left: 18px;
}

.nav-dropdown-menu a + a {
    margin-top: 2px;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ========================================
   Buttons - Modern Style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1FA8E6 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(40, 194, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 194, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 194, 255, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #2FD9C8 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(63, 255, 224, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 255, 224, 0.5);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #FFD957 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 226, 120, 0.4);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 226, 120, 0.5);
}

/* ========================================
   Hero Section - Modern Gradient
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #162942 100%);
    padding: 100px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 194, 255, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ========================================
   Full Width Slider Styles (Listings Page)
   ======================================== */
.fullwidth-slider-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--primary-color);
}

.fullwidth-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fullwidth-slider-track {
    position: relative;
    width: 100%;
    height: 450px;
}

.fullwidth-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.fullwidth-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.fullwidth-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fullwidth-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.fullwidth-slider-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    color: var(--text-light);
    font-size: 22px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: var(--shadow-lg);
}

.fullwidth-slider-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.fullwidth-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.fullwidth-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.fullwidth-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.fullwidth-dot.active {
    background: var(--accent-color);
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(40, 194, 255, 0.7);
}

/* Responsive Full Width Slider */
@media (max-width: 1024px) {
    .fullwidth-slider-track {
        height: 380px;
    }
    
    .fullwidth-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .fullwidth-slider-controls {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .fullwidth-slider-track {
        height: 300px;
    }
    
    .fullwidth-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .fullwidth-slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .fullwidth-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .fullwidth-slider-track {
        height: 220px;
    }
    
    .fullwidth-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .fullwidth-slider-controls {
        padding: 0 10px;
    }
    
    .fullwidth-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .fullwidth-dot {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   Badge Styles - Modern Pill Design
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.badge-new {
    background: linear-gradient(135deg, var(--success-color) 0%, #2FD9C8 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(63, 255, 224, 0.4);
}

.badge-urgent {
    background: linear-gradient(135deg, var(--warning-color) 0%, #FFD957 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 226, 120, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.badge-hot {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 226, 120, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 226, 120, 0.7);
    }
}

/* Card Badge Position */
.car-image .badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

/* ========================================
   Search Filter - Glass Morphism
   ======================================== */
.search-filter {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    max-width: 1100px;
    margin: -60px auto 50px;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-filter select,
.search-filter input {
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 160px;
    background-color: rgba(10, 26, 47, 0.8);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.search-filter select:focus,
.search-filter input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(40, 194, 255, 0.15);
    background-color: rgba(10, 26, 47, 0.95);
}

.search-filter .btn {
    min-width: 160px;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

/* ========================================
   Car Grid & Cards - Modern Glass Cards
   ======================================== */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.car-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.car-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
    box-shadow:
        var(--shadow-lg),
        var(--shadow-glow),
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(40, 194, 255, 0.15);
    border-color: rgba(40, 194, 255, 0.4);
}

.car-card:hover::before {
    opacity: 1;
}

/* 3D Hover Effect for Car Image */
.car-card:hover .car-image {
    transform: scale(1.08);
}

.car-card .car-image {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.car-image {
    height: 220px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.car-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(10, 26, 47, 0.9));
}

.car-details {
    padding: 24px;
}

.car-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.car-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.car-info span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.car-price {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--success-color) 0%, #2FD9C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Form Elements - Modern Style
   ======================================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="file"],
textarea,
select {
    background-color: rgba(10, 26, 47, 0.8);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(40, 194, 255, 0.15);
    background-color: rgba(10, 26, 47, 0.95);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* File Input Styling */
input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1FA8E6 100%);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    margin-right: 16px;
    transition: all var(--transition-fast);
}

input[type="file"]::file-selector-button:hover {
    transform: scale(1.02);
}

/* Checkbox and Radio Styling */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
}

/* Select Dropdown Arrow */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2328C2FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

select option {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 12px;
}

/* ========================================
   Card Container - Glass Style
   ======================================== */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(40, 194, 255, 0.2);
}

/* Form Container */
.form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.form-header {
    color: var(--text-light);
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
}

.form-section-title {
    color: var(--accent-color);
    margin-top: 36px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-grid-full {
    grid-column: 1 / -1;
}

/* ========================================
   Price Highlight & Status
   ======================================== */
.price-highlight {
    background: linear-gradient(135deg, var(--success-color) 0%, #2FD9C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.status-active { color: var(--success-color); }
.status-pending { color: var(--warning-color); }
.status-inactive { color: var(--text-secondary); }

/* Dividers */
hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 28px 0;
}

/* ========================================
   Table Styles - Modern
   ======================================== */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

table thead {
    background: rgba(10, 26, 47, 0.8);
}

table th {
    padding: 18px 20px;
    text-align: left;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

table td {
    padding: 16px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(61, 82, 102, 0.3);
}

table tr:last-child td {
    border-bottom: none;
}

table tr {
    transition: all var(--transition-fast);
}

table tr:hover {
    background-color: rgba(40, 194, 255, 0.08);
}

/* ========================================
   Alert Messages - Modern Style
   ======================================== */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(63, 255, 224, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-warning {
    background: rgba(255, 226, 120, 0.1);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-info {
    background: rgba(40, 194, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.alert-error {
    background: rgba(255, 107, 107, 0.1);
    border-color: #FF6B6B;
    color: #FF6B6B;
}

/* ========================================
   Loading Spinner - Modern
   ======================================== */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Scrollbar Styling
   ======================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
    border: 3px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection */
::selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

::-moz-selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* ========================================
   Footer - Modern Glass Style
   ======================================== */
footer.site-footer {
    background: var(--primary-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    margin-top: 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

.footer-bottom-bar .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-bar .copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-bar .copyright i {
    color: var(--accent-color);
}

.footer-bottom-bar .copyright .brand-text {
    color: var(--accent-color);
    font-weight: 700;
}

.footer-bottom-bar .footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-bar .footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom-bar .footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-bar .footer-links a i {
    color: var(--accent-color);
}

.footer-bottom-bar .footer-links .divider {
    color: var(--border-color);
}

@media (max-width: 768px) {
    .footer-bottom-bar .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-bottom-bar .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    text-align: left;
}

.footer-section:first-child {
    background: rgba(31, 44, 58, 0.5);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.footer-section:last-child {
    background: linear-gradient(135deg, rgba(31, 44, 58, 0.6) 0%, rgba(10, 26, 47, 0.6) 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    background: rgba(10, 26, 47, 0.6);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 !important;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
    transform: translateX(8px);
}

.contact-label {
    color: var(--accent-color);
    font-weight: 600;
    min-width: 80px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   Features Section - Modern Cards
   ======================================== */
.features-section {
    padding: 80px 5%;
    background: transparent;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 48px 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(40, 194, 255, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: block;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   Contact CTA Section - Modern
   ======================================== */
.contact-cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.9) 0%, rgba(31, 44, 58, 0.9) 100%);
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(40, 194, 255, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 800;
    position: relative;
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 1.2rem;
    position: relative;
}

.cta-brand {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-cta-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.contact-cta-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    flex: 1;
    max-width: 300px;
    min-width: 220px;
    transition: all var(--transition-normal);
}

.contact-cta-card:hover {
    transform: translateY(-10px);
    border-color: rgba(40, 194, 255, 0.4);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    transition: all var(--transition-normal);
}

.contact-cta-card:hover .cta-icon {
    transform: scale(1.2);
}

.contact-cta-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-info {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 80px;
}

.contact-form {
    flex: 1;
    min-width: 320px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.contact-form h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 36px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: 700;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    padding-top: 24px;
}

.info-item {
    margin-bottom: 48px;
}

.info-item h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.info-item p {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.info-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--accent-color);
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    align-items: center;
}

.phone-prefix {
    padding: 14px 18px;
    background: rgba(10, 26, 47, 0.8);
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-light);
    font-weight: 600;
}

.phone-prefix + input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
}

/* Character Counter */
.char-count {
    text-align: right;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    font-size: 20px;
    color: white;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* Success Message Alert */
.success-message {
    background: rgba(63, 255, 224, 0.15);
    color: var(--success-color);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border-left: 4px solid var(--success-color);
    font-weight: 500;
}

/* ========================================
   Dashboard Styles
   ======================================== */
.dashboard-sidebar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: var(--radius-lg) !important;
}

.dashboard-menu { 
    list-style: none; 
    padding: 0; 
}

.dashboard-menu li { 
    margin-bottom: 4px; 
}

.dashboard-menu a { 
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px; 
    color: var(--text-secondary); 
    text-decoration: none; 
    border-radius: var(--radius-md); 
    transition: all var(--transition-fast);
    font-weight: 500;
}

.dashboard-menu a:hover, 
.dashboard-menu a.active { 
    background: rgba(40, 194, 255, 0.15); 
    color: var(--accent-color); 
}

.dashboard-menu i { 
    width: 24px;
    font-size: 16px;
}

.stat-box { 
    padding: 18px 24px; 
    border-radius: var(--radius-md); 
    font-weight: 600; 
    flex: 1; 
    min-width: 140px; 
    text-align: center;
    transition: all var(--transition-fast);
}

.stat-box:hover {
    transform: translateY(-4px);
}

.status-badge { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    padding: 6px 14px; 
    border-radius: var(--radius-full); 
    color: white; 
    font-size: 0.8rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: linear-gradient(135deg, #1565c0, #1976d2); }
.status-active { background: linear-gradient(135deg, #2e7d32, #43a047); }
.status-expired { background: linear-gradient(135deg, #ef6c00, #fb8c00); }
.status-deactive { background: linear-gradient(135deg, #7b1fa2, #9c27b0); }
.status-rejected { background: linear-gradient(135deg, #c62828, #e53935); }

/* ========================================
   Auth Container - Modern Style
   ======================================== */
.auth-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.auth-container h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 800;
}

.error-msg {
    background: rgba(255, 107, 107, 0.15);
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid #FF6B6B;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.6s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .car-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .feature-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 16px 5%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 60px 5% 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-filter {
        margin-top: -40px;
        padding: 20px;
    }
    
    .section-title {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-label {
        min-width: auto;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-cta-grid {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .contact-cta-card {
        max-width: 100%;
        min-width: auto;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .auth-container {
        margin: 40px 20px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }
    
    .feature-card {
        padding: 36px 24px;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .car-image {
        height: 180px;
    }
    
    .car-details {
        padding: 20px;
    }
    
    .car-price {
        font-size: 22px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* ========================================
   Urgent Sale Section - Təcili Satılır
   ======================================== */
.urgent-section-title {
    margin-bottom: 28px;
}

.urgent-section-title h2 {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: urgentGradient 3s ease infinite;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.urgent-section-title h2::after {
    background: linear-gradient(90deg, #ff6b35, #f7931e, transparent);
}

@keyframes urgentGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.urgent-fire-icon {
    font-size: 1.2em;
    color: #ff6b35;
    -webkit-text-fill-color: #ff6b35;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

@keyframes fireFlicker {
    0% {
        transform: scale(1) rotate(-5deg);
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
    }
    100% {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.9));
    }
}

.urgent-car-grid {
    margin-bottom: 50px;
}

.urgent-car-card {
    border: 2px solid rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.urgent-car-card::before {
    background: linear-gradient(90deg, #ff6b35, #f7931e) !important;
    opacity: 1 !important;
    height: 4px;
}

.urgent-car-card:hover {
    border-color: rgba(255, 107, 53, 0.7);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.3), 0 0 30px rgba(255, 107, 53, 0.2);
}

.urgent-car-card .car-image {
    position: relative;
}

.urgent-fire-image {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 50px;
    height: 50px;
    z-index: 10;
    animation: fireFloat 1s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.7));
    object-fit: contain;
}

@keyframes fireFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.7));
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 1));
    }
}

.urgent-car-card .car-price {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Responsive Urgent Section */
@media (max-width: 768px) {
    .urgent-fire-image {
        width: 42px;
        height: 42px;
        top: 6px;
        right: 6px;
    }
    
    .urgent-fire-icon {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .urgent-fire-image {
        width: 35px;
        height: 35px;
        top: 5px;
        right: 5px;
    }
}

/* Urgent Section - Blur for Guests */
.urgent-section-wrapper {
    position: relative;
}

.urgent-section-wrapper.blur-for-guests .urgent-car-grid {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.urgent-login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(10, 26, 47, 0.3);
    border-radius: var(--radius-lg);
}

.urgent-login-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: var(--radius-xl);
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.2);
    animation: pulseBox 2s ease-in-out infinite;
}

@keyframes pulseBox {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 107, 53, 0.4);
    }
}

.urgent-login-box i {
    font-size: 50px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
    animation: lockBounce 1s ease-in-out infinite;
}

@keyframes lockBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.urgent-login-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
}

.urgent-login-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1rem;
}

.urgent-login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.urgent-login-buttons .btn {
    padding: 12px 30px;
}

.urgent-login-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.urgent-login-buttons .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
    .urgent-login-box {
        padding: 30px;
        margin: 20px;
    }
    
    .urgent-login-box h3 {
        font-size: 1.2rem;
    }
    
    .urgent-login-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
    padding: 50px 5%;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.8) 0%, rgba(31, 44, 58, 0.8) 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 194, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(40, 194, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(40, 194, 255, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(40, 194, 255, 0.2) 0%, rgba(63, 255, 224, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Popular Brands Section
   ======================================== */
.brands-section {
    padding: 40px 5%;
    background: transparent;
    overflow: hidden;
}

.brands-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.brands-title i {
    color: #ffd700;
    margin-right: 10px;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-width: 120px;
    text-decoration: none;
}

.brand-item:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(40, 194, 255, 0.2);
}

.brand-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(40, 194, 255, 0.5));
}

.brand-item span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-item:hover span {
    color: var(--accent-color);
}

/* ========================================
   Most Viewed Section
   ======================================== */
.most-viewed-title h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.most-viewed-title h2 i {
    color: #ff6b35;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

.most-viewed-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.most-viewed-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.most-viewed-card:hover {
    transform: translateX(10px);
    border-color: rgba(40, 194, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(40, 194, 255, 0.1);
}

.rank-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.most-viewed-card:nth-child(1) .rank-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.most-viewed-card:nth-child(2) .rank-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.most-viewed-card:nth-child(3) .rank-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.mv-image {
    width: 100px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.mv-details {
    flex: 1;
}

.mv-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.mv-info {
    font-size: 13px;
    color: var(--text-secondary);
}

.mv-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--success-color) 0%, #2FD9C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
}

.mv-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mv-link:hover {
    transform: scale(1.15) rotate(45deg);
    box-shadow: 0 8px 20px rgba(40, 194, 255, 0.4);
}

/* Responsive Stats & Brands */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-xl);
        padding: 20px;
    }
    
    .stat-card {
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        border-bottom: 1px solid rgba(61, 82, 102, 0.3);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .stat-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(61, 82, 102, 0.3);
    }
    
    .stat-card::before {
        display: none;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 26px;
        margin-bottom: 0;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .most-viewed-card {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .mv-image {
        width: 80px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .brand-item {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .brand-item img {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
}

/* ========================================
   Car Card Quick Action Icons
   ======================================== */
.car-quick-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.car-card:hover .car-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quick-action-btn:hover {
    transform: scale(1.2) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.quick-action-btn.action-barter {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.quick-action-btn.action-barter:hover {
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.quick-action-btn.action-urgent {
    background: linear-gradient(135deg, #ff6b35 0%, #c0392b 100%);
}

.quick-action-btn.action-urgent:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.quick-action-btn.action-add {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.quick-action-btn.action-add:hover {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.quick-action-btn.action-analytics {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.quick-action-btn.action-analytics:hover {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

/* Tooltip for quick action buttons */
.quick-action-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--primary-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.quick-action-btn::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-action-btn:hover::before,
.quick-action-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Always visible quick actions on mobile */
@media (max-width: 768px) {
    .car-quick-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    .quick-action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .quick-action-btn::before,
    .quick-action-btn::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .car-quick-actions {
        gap: 6px;
        bottom: 8px;
        right: 8px;
    }
    
    .quick-action-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* ========================================
   Hero Background Slider
   ======================================== */
.hero-bg-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 26, 47, 0.85) 0%,
        rgba(31, 44, 58, 0.7) 50%,
        rgba(10, 26, 47, 0.85) 100%
    );
    z-index: 1;
}

.hero-bg-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-bg-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: -3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-bg-title .brand-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-bg-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--warning-color) 0%, #FFD957 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-bg-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(40, 194, 255, 0.2);
}

.hero-feature i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-feature span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.hero-bg-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-bg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-bg-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-bg-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(40, 194, 255, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
    .hero-bg-slider-container {
        height: 450px;
    }
    
    .hero-bg-features {
        gap: 20px;
    }
    
    .hero-feature {
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .hero-bg-slider-container {
        height: 400px;
    }
    
    .hero-bg-title {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }
    
    .hero-bg-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-bg-tagline {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .hero-bg-features {
        gap: 15px;
    }
    
    .hero-feature {
        padding: 12px 20px;
    }
    
    .hero-feature i {
        font-size: 1.5rem;
    }
    
    .hero-feature span {
        font-size: 12px;
    }
    
    .hero-bg-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .hero-bg-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-bg-slider-container {
        height: 350px;
    }
    
    .hero-bg-title {
        font-size: 2rem;
    }
    
    .hero-bg-tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-bg-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-feature {
        padding: 10px 20px;
        flex-direction: row;
        gap: 12px;
    }
    
    .hero-bg-dots {
        bottom: 15px;
    }
}

/* ========================================
   Urgent Page Styles
   ======================================== */
.urgent-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgent-page-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: boltPulse 1.5s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
    }
}

.urgent-type-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.urgent-type-btn {
    flex: 1;
    padding: 18px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urgent-type-btn:hover {
    border-color: rgba(255, 107, 53, 0.5);
    color: var(--text-light);
    transform: translateY(-3px);
}

.urgent-type-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.urgent-type-btn.active i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.urgent-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.urgent-form .urgent-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgent-form .urgent-section-title i {
    color: var(--accent-color);
}

.urgent-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.urgent-form .form-group label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.urgent-form input,
.urgent-form select,
.urgent-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 26, 47, 0.8);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.urgent-form input:focus,
.urgent-form select:focus,
.urgent-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    background: rgba(10, 26, 47, 0.95);
}

.urgent-form input::placeholder,
.urgent-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.dual-input {
    display: flex;
    gap: 10px;
}

.dual-input input {
    flex: 1;
}

.urgent-fee-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 25px 0;
    color: #ff6b35;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.urgent-fee-note i {
    font-size: 1.2rem;
}

.urgent-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.urgent-buttons .btn {
    min-width: 150px;
    padding: 14px 30px;
}

.urgent-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.urgent-buttons .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.urgent-buttons .btn-outline {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.urgent-buttons .btn-outline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Urgent Page */
@media (max-width: 768px) {
    .urgent-page-title {
        font-size: 1.5rem;
    }
    
    .urgent-type-buttons {
        flex-direction: column;
    }
    
    .urgent-form {
        padding: 25px;
    }
    
    .urgent-form-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-buttons {
        flex-direction: column;
    }
    
    .urgent-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .urgent-page-title {
        font-size: 1.3rem;
    }
    
    .urgent-form {
        padding: 20px;
    }
    
    .urgent-type-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ========================================
   Barter Page Styles
   ======================================== */
.barter-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.barter-page-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: barterRotate 3s ease-in-out infinite;
}

@keyframes barterRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(15deg) scale(1.1);
    }
    75% {
        transform: rotate(-15deg) scale(1.1);
    }
}

.barter-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.barter-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.barter-section-title i {
    color: #e67e22;
}

.barter-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.barter-form .form-group label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.barter-form input,
.barter-form select,
.barter-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 26, 47, 0.8);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.barter-form input:focus,
.barter-form select:focus,
.barter-form textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
    background: rgba(10, 26, 47, 0.95);
}

.barter-form input::placeholder,
.barter-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.barter-upload-box {
    background: rgba(10, 26, 47, 0.6);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.barter-upload-box:hover {
    border-color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.barter-upload-box i {
    font-size: 3rem;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.barter-upload-box p {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.barter-upload-box small {
    color: var(--text-secondary);
    font-size: 13px;
}

.barter-fee-note {
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 25px 0;
    color: #e67e22;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.barter-fee-note i {
    font-size: 1.2rem;
}

.barter-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.barter-buttons .btn {
    min-width: 150px;
    padding: 14px 30px;
}

.barter-buttons .btn-primary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.barter-buttons .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
    transform: translateY(-3px);
}

.barter-buttons .btn-outline {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.barter-buttons .btn-outline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Barter Page */
@media (max-width: 768px) {
    .barter-page-title {
        font-size: 1.5rem;
    }
    
    .barter-form {
        padding: 25px;
    }
    
    .barter-form-grid {
        grid-template-columns: 1fr;
    }
    
    .barter-upload-box {
        padding: 30px;
    }
    
    .barter-buttons {
        flex-direction: column;
    }
    
    .barter-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .barter-page-title {
        font-size: 1.3rem;
    }
    
    .barter-form {
        padding: 20px;
    }
    
    .barter-upload-box {
        padding: 25px;
    }
    
    .barter-upload-box i {
        font-size: 2.5rem;
    }
}

/* ========================================
   Analytics Page Styles
   ======================================== */
.analytics-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.analytics-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.analytics-title i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analytics-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.analytics-filters select {
    padding: 12px 18px;
    background: rgba(10, 26, 47, 0.8);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    min-width: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analytics-filters select:hover {
    border-color: var(--accent-color);
}

.analytics-filters select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(40, 194, 255, 0.15);
}

/* KPI Cards Grid */
.analytics-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.analytics-kpi-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.analytics-kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.analytics-kpi-card.kpi-blue::before {
    background: linear-gradient(180deg, #3498db, #2980b9);
}

.analytics-kpi-card.kpi-green::before {
    background: linear-gradient(180deg, #2ecc71, #27ae60);
}

.analytics-kpi-card.kpi-yellow::before {
    background: linear-gradient(180deg, #f1c40f, #f39c12);
}

.analytics-kpi-card.kpi-red::before {
    background: linear-gradient(180deg, #e74c3c, #c0392b);
}

.analytics-kpi-card.kpi-purple::before {
    background: linear-gradient(180deg, #9b59b6, #8e44ad);
}

.kpi-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.kpi-blue .kpi-icon {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.kpi-green .kpi-icon {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.kpi-yellow .kpi-icon {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.kpi-red .kpi-icon {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.kpi-purple .kpi-icon {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.kpi-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 5px 0;
    line-height: 1;
}

.kpi-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Analytics Section */
.analytics-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 30px;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.section-heading i {
    color: var(--accent-color);
}

/* Market Stats Grid */
.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.market-stat {
    background: rgba(10, 26, 47, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-stat:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.market-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.market-stat-value.blue {
    color: #3498db;
}

.market-stat-value.green {
    color: #2ecc71;
}

.market-stat-value.red {
    color: #e74c3c;
}

.market-stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* Analytics Charts Grid */
.analytics-charts-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.analytics-charts-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.analytics-charts-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.analytics-charts-grid.one-col {
    grid-template-columns: 1fr;
}

.analytics-charts-grid.main-charts {
    grid-template-columns: 2fr 1fr;
}

.analytics-chart-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 25px;
    transition: all 0.3s ease;
}

.analytics-chart-card:hover {
    border-color: rgba(40, 194, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.analytics-chart-card.wide {
    grid-column: span 1;
}

.chart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Analytics Table */
.analytics-table-wrapper {
    overflow-x: auto;
}

.analytics-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.analytics-table thead {
    background: rgba(10, 26, 47, 0.8);
}

.analytics-table th {
    padding: 16px 20px;
    text-align: left;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.analytics-table td {
    padding: 16px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(61, 82, 102, 0.3);
    font-size: 14px;
}

.analytics-table tr:last-child td {
    border-bottom: none;
}

.analytics-table tr {
    transition: all 0.2s ease;
}

.analytics-table tr:hover {
    background: rgba(40, 194, 255, 0.08);
}

.analytics-table .car-name {
    font-weight: 600;
    color: var(--text-light);
}

.analytics-table .car-price {
    font-weight: 700;
    color: var(--success-color);
}

.analytics-table .status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.analytics-table .status-active {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.analytics-table .status-sold {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.analytics-table .no-data {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 30px;
}

/* Responsive Analytics */
@media (max-width: 1024px) {
    .analytics-charts-grid.two-col,
    .analytics-charts-grid.three-col,
    .analytics-charts-grid.main-charts {
        grid-template-columns: 1fr;
    }
    
    .analytics-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .analytics-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .analytics-title {
        font-size: 1.5rem;
    }
    
    .analytics-filters {
        width: 100%;
    }
    
    .analytics-filters select {
        flex: 1;
        min-width: 120px;
    }
    
    .analytics-kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-kpi-card {
        padding: 20px;
    }
    
    .kpi-content h3 {
        font-size: 1.5rem;
    }
    
    .analytics-section {
        padding: 20px;
    }
    
    .market-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analytics-chart-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .analytics-title {
        font-size: 1.3rem;
    }
    
    .analytics-filters {
        flex-direction: column;
    }
    
    .analytics-filters select {
        width: 100%;
    }
    
    .market-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-table th,
    .analytics-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    header, footer, .nav-buttons, .search-filter {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .car-card {
        break-inside: avoid;
    }
}

/* ========================================
   Light Mode Theme - Global Styles
   ======================================== */
body.light-mode {
    --primary-color: #f8fafc;
    --secondary-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(226, 232, 240, 0.8);
    --text-light: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.15);
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Light Mode - Cards */
body.light-mode .car-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.light-mode .car-card:hover {
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(14, 165, 233, 0.4);
}

body.light-mode .car-title {
    color: #1e293b;
}

body.light-mode .car-info {
    color: #64748b;
}

body.light-mode .car-price {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light Mode - Search Filter */
body.light-mode .search-filter-centered-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
}

body.light-mode .filter-input,
body.light-mode .filter-select {
    background: rgba(241, 245, 249, 0.8);
    border-color: #e2e8f0;
    color: #1e293b;
}

body.light-mode .filter-input::placeholder {
    color: #94a3b8;
}

body.light-mode .filter-input:focus,
body.light-mode .filter-select:focus {
    border-color: #0ea5e9;
    background: white;
}

/* Light Mode - Sections */
body.light-mode .section-title,
body.light-mode .section-header h2 {
    color: #1e293b;
}

body.light-mode .section-subtitle {
    color: #64748b;
}

/* Light Mode - Footer */
body.light-mode footer {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: #e2e8f0;
}

body.light-mode .footer-title {
    color: #1e293b;
}

body.light-mode .footer-links a,
body.light-mode .footer-text {
    color: #64748b;
}

body.light-mode .footer-links a:hover {
    color: #0ea5e9;
}

/* Light Mode - Buttons */
body.light-mode .btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

body.light-mode .btn-outline {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

body.light-mode .btn-outline:hover {
    background: #0ea5e9;
    color: white;
}

/* Light Mode - Form Elements */
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="password"],
body.light-mode input[type="number"],
body.light-mode textarea,
body.light-mode select {
    background: rgba(255, 255, 255, 0.9);
    border-color: #e2e8f0;
    color: #1e293b;
}

body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Light Mode - Stats Section */
body.light-mode .stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
}

body.light-mode .stat-value {
    color: #1e293b;
}

body.light-mode .stat-label {
    color: #64748b;
}

/* Light Mode - Carousel Sections */
body.light-mode .below-market-section,
body.light-mode .urgent-buy-carousel-section {
    background: rgba(255, 255, 255, 0.5);
}

body.light-mode .below-market-section::before,
body.light-mode .urgent-buy-carousel-section::before {
    opacity: 0.05;
}

/* Light Mode - Badges */
body.light-mode .badge {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

/* Light Mode - Scrollbar */
body.light-mode ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

body.light-mode ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ========== YENİ FİLTER STİLLƏRİ ========== */

/* Min il / Max il select-lərini kiçilt */
.search-filter select.year-select {
    padding: 10px 12px;
    min-width: 100px;
    max-width: 120px;
    font-size: 13px;
    flex: 0 1 auto;
}

/* Qiymət + Valyuta Toggle Wrapper */
.price-currency-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.price-currency-wrapper input[type="number"] {
    width: 110px;
    min-width: 90px;
}

.currency-toggle {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(40, 194, 255, 0.2);
    background: rgba(10, 26, 47, 0.6);
    flex-shrink: 0;
}

.currency-btn {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.currency-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(40, 194, 255, 0.1);
}

.currency-btn.active {
    background: linear-gradient(135deg, #28C2FF, #0ea5e9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(40, 194, 255, 0.3);
}

/* Vəziyyət Filteri (Hamısı/Yeni/Sürülmüş) */
.condition-filter-group {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(40, 194, 255, 0.2);
    background: rgba(10, 26, 47, 0.6);
    flex-shrink: 0;
}

.condition-btn {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.condition-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(40, 194, 255, 0.1);
}

.condition-btn.active {
    background: linear-gradient(135deg, #28C2FF, #0ea5e9);
    color: #fff;
    box-shadow: 0 2px 8px rgba(40, 194, 255, 0.3);
}

/* Elan Növü Checkbox Dropdown */
.listing-type-select-wrapper {
    position: relative;
    min-width: 140px;
}

.listing-type-trigger {
    cursor: pointer !important;
    caret-color: transparent;
}

.listing-type-checklist-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    background: rgba(10, 26, 47, 0.98);
    border: 1px solid rgba(40, 194, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    padding: 8px 0;
    animation: dropdownSlide 0.2s ease;
}

.listing-type-checklist-dropdown.show {
    display: block;
}

.listing-type-checklist-content {
    display: flex;
    flex-direction: column;
    padding: 4px 8px;
}

.lt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.lt-checkbox-label:hover {
    background: rgba(40, 194, 255, 0.1);
    color: #fff;
}

.lt-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #28C2FF;
    cursor: pointer;
    flex-shrink: 0;
}

.lt-checkbox-label span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lt-checkbox-label span i {
    width: 16px;
    text-align: center;
    color: #28C2FF;
    font-size: 12px;
}

/* Seçilmiş Maşınları Göstərmə Butonu */
.exclude-toggle-btn {
    position: relative;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.exclude-toggle-btn.active {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    color: #ef4444 !important;
}

.exclude-toggle-btn:hover {
    background: rgba(239, 68, 68, 0.15) !important;
}

/* Light mode overrides */
body.light-mode .currency-toggle {
    background: rgba(241, 245, 249, 0.9);
    border-color: #e2e8f0;
}

body.light-mode .currency-btn {
    color: #64748b;
}

body.light-mode .currency-btn:hover {
    color: #334155;
    background: rgba(40, 194, 255, 0.08);
}

body.light-mode .currency-btn.active {
    background: linear-gradient(135deg, #28C2FF, #0ea5e9);
    color: #fff;
}

body.light-mode .condition-filter-group {
    background: rgba(241, 245, 249, 0.9);
    border-color: #e2e8f0;
}

body.light-mode .condition-btn {
    color: #64748b;
}

body.light-mode .condition-btn:hover {
    color: #334155;
    background: rgba(40, 194, 255, 0.08);
}

body.light-mode .condition-btn.active {
    background: linear-gradient(135deg, #28C2FF, #0ea5e9);
    color: #fff;
}

body.light-mode .listing-type-checklist-dropdown {
    background: rgba(255, 255, 255, 0.98);
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body.light-mode .lt-checkbox-label {
    color: #334155;
}

body.light-mode .lt-checkbox-label:hover {
    background: rgba(40, 194, 255, 0.08);
    color: #0f172a;
}

body.light-mode .exclude-toggle-btn.active {
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Responsive - filter bar */
@media (max-width: 1200px) {
    .price-currency-wrapper {
        flex-wrap: wrap;
    }

    .price-currency-wrapper input[type="number"] {
        width: 90px;
    }
}

@media (max-width: 768px) {
    .price-currency-wrapper {
        width: 100%;
    }

    .price-currency-wrapper input[type="number"] {
        flex: 1;
        min-width: 70px;
    }

    .condition-filter-group {
        width: 100%;
        justify-content: center;
    }

    .condition-btn {
        flex: 1;
        text-align: center;
        padding: 8px 8px;
        font-size: 11px;
    }

    .listing-type-select-wrapper {
        width: 100%;
    }

    .listing-type-checklist-dropdown {
        width: 100%;
        min-width: unset;
    }
}
