        @import url('utilities.css');
        @import url('components.css');

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

        /* Global: ensure all dropdowns have dark background */
        select {
            background: rgba(255, 255, 255, 0.05) !important;
            color: white !important;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px;
            font-family: inherit;
            color-scheme: dark;
        }
        select option {
            background: #1a1f3a !important;
            color: white !important;
        }
        select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08) !important;
        }

        :root {
            --primary: #0066ff;
            --primary-dark: #0052cc;
            --secondary: #00d4aa;
            --accent: #ff6b35;
            --dark: #0a0e27;
            --dark-blue: #1a1f3a;
            --text-light: #e0e7ff;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
            --gradient-3: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        }

        body {
            font-family: 'Cairo', 'Tajawal', sans-serif;
            background: #0a0e27;
            color: #e0e7ff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Announcement Banner */
        .announcement-banner {
            background: var(--gradient-2);
            color: white;
            padding: 10px 20px;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            position: relative;
            z-index: 1001;
        }
        .announcement-banner__text {
            flex: 1;
        }
        .announcement-banner__close {
            background: none;
            border: none;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
            padding: 0 5px;
        }
        .announcement-banner__close:hover {
            opacity: 1;
        }

        /* CMS Content - Admin-entered HTML */
        .cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
            color: white;
            margin: 20px 0 10px;
        }
        .cms-content p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        .cms-content ul, .cms-content ol {
            padding-right: 20px;
            margin-bottom: 15px;
        }
        .cms-content li {
            margin-bottom: 8px;
            line-height: 1.7;
        }
        .cms-content a {
            color: var(--primary);
        }
        .cms-content strong {
            color: white;
        }

        /* Header */
        .header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.02); }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
        }

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

        .logo-ar {
            font-size: 2em;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-en {
            font-size: 0.9em;
            color: #64748b;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .user-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-family: inherit;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
        }

        .btn-gradient {
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
        }

        .header-user-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .wallet-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.25);
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .wallet-badge:hover {
            background: rgba(0, 212, 170, 0.18);
            border-color: var(--secondary);
            transform: translateY(-1px);
        }

        .wallet-badge-icon {
            font-size: 1.1em;
        }

        .wallet-badge-amount {
            color: var(--secondary);
            font-weight: 800;
            font-size: 0.95em;
        }

        .wallet-badge-separator {
            color: #475569;
            margin: 0 2px;
            font-size: 0.85em;
        }

        .wallet-badge-currency {
            color: #94a3b8;
            font-size: 0.8em;
            font-weight: 500;
        }

        .wallet-badge-mobile {
            width: 100%;
            justify-content: center;
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 12px;
        }

        .wallet-badge-mobile .wallet-badge-amount {
            font-size: 1.1em;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .user-profile:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1em;
        }

        .nav-main {
            display: flex;
            gap: 5px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            overflow-x: auto;
        }

        .nav-link {
            padding: 12px 24px;
            color: #94a3b8;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-2);
            border-radius: 3px 3px 0 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--secondary);
        }

        .nav-link.active {
            background: rgba(0, 212, 170, 0.1);
            color: white;
        }

        .nav-link.active::after {
            width: 70%;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page-section.active {
            display: block;
        }

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

        /* ============================================ */
        /* HERO SECTION                                 */
        /* ============================================ */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: -40px -20px 60px -20px;
            padding: 0;
        }

        .hero-image-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(180deg, rgba(5, 8, 22, 0.4) 0%, rgba(5, 8, 22, 0.2) 40%, rgba(5, 8, 22, 0.7) 100%),
                linear-gradient(90deg, rgba(5, 8, 22, 0.8) 0%, transparent 50%, rgba(5, 8, 22, 0.3) 100%);
            z-index: 1;
        }

        [dir="ltr"] .hero-overlay {
            background:
                linear-gradient(180deg, rgba(5, 8, 22, 0.4) 0%, rgba(5, 8, 22, 0.2) 40%, rgba(5, 8, 22, 0.7) 100%),
                linear-gradient(270deg, rgba(5, 8, 22, 0.8) 0%, transparent 50%, rgba(5, 8, 22, 0.3) 100%);
        }

        .hero-glow {
            position: absolute;
            top: -20%;
            right: 10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
            z-index: 1;
            animation: heroGlowPulse 6s ease-in-out infinite;
        }

        @keyframes heroGlowPulse {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 40px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-text-side {
            max-width: 600px;
            text-align: right;
        }

        [dir="ltr"] .hero-text-side {
            text-align: left;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 102, 255, 0.15);
            border: 1px solid rgba(0, 102, 255, 0.4);
            border-radius: 50px;
            color: #4d9fff;
            font-weight: 700;
            font-size: 0.85em;
            margin-bottom: 24px;
            animation: slideInDown 0.8s ease;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: 3.8em;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
            animation: slideInDown 0.8s ease 0.2s both;
        }

        .hero-highlight {
            background: linear-gradient(135deg, #4d9fff 0%, #00d4aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
            line-height: 1.7;
            animation: slideInDown 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideInDown 0.8s ease 0.6s both;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 1em;
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
            transition: all 0.3s;
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
        }

        .btn-hero-outline {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1em;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Hero Timer Card */
        .hero-timer-card {
            background: rgba(10, 14, 39, 0.75);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 102, 255, 0.3);
            border-radius: 20px;
            padding: 32px;
            min-width: 320px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 102, 255, 0.08);
            animation: fadeInScale 0.8s ease 0.4s both;
        }

        .hero-timer-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 102, 255, 0.6);
            box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 102, 255, 0.15);
        }

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

        .timer-card-label {
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .timer-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .timer-block {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timer-number {
            font-size: 3em;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            font-variant-numeric: tabular-nums;
            text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
        }

        .timer-label {
            font-size: 0.75em;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            margin-top: 4px;
        }

        .timer-sep {
            font-size: 2.5em;
            font-weight: 900;
            color: #0066ff;
            line-height: 1;
            margin-bottom: 16px;
        }

        .timer-car-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timer-car-name {
            font-size: 0.95em;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
        }

        .timer-car-price {
            font-size: 1.1em;
            font-weight: 800;
            color: #00d4aa;
        }

        .timer-bid-btn {
            background: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 800;
            font-size: 0.95em;
            transition: all 0.3s;
        }

        .hero-timer-card:hover .timer-bid-btn {
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
        }

        .hero-timer-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
            cursor: default;
        }

        .hero-timer-placeholder:hover {
            transform: none;
        }

        .timer-placeholder-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1em;
            margin: 20px 0;
        }

        .hero-brand-text {
            font-size: 2em;
            font-weight: 900;
            letter-spacing: 6px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .btn-large {
            padding: 18px 45px;
            font-size: 1.1em;
            font-weight: 700;
        }

        .btn-white {
            background: white;
            color: var(--dark);
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
        }

        /* ================================ */
        /* STATISTICS SECTION              */
        /* ================================ */
        .stats-section {
            position: relative;
            padding: 60px 20px;
            margin: 0;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 170, 0.05) 100%);
            border-top: 1px solid rgba(0, 102, 255, 0.15);
            border-bottom: 1px solid rgba(0, 102, 255, 0.15);
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 35px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-2);
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 102, 255, 0.3);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
        }

        .stat-card:hover::after {
            width: 100px;
        }

        .stat-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }

        .stat-number {
            font-size: 3em;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 8px;
            font-variant-numeric: tabular-nums;
        }

        .stat-label {
            font-size: 1.1em;
            color: #94a3b8;
            font-weight: 600;
        }

        @media (max-width: 968px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stat-number {
                font-size: 2.4em;
            }
            .stats-section {
                padding: 40px 15px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card {
                padding: 25px 12px;
                border-radius: 14px;
            }
            .stat-icon {
                font-size: 2em;
                margin-bottom: 10px;
            }
            .stat-number {
                font-size: 1.8em;
            }
            .stat-label {
                font-size: 0.9em;
            }
        }

        /* Features Grid */
        .features-section {
            margin: 80px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
        }

        .feature-icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .feature-title {
            font-size: 1.4em;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .feature-description {
            color: #94a3b8;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Section Title */
        .section-title {
            font-size: 3em;
            font-weight: 900;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #64748b;
            margin-bottom: 50px;
        }

        /* Cars Grid */
        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .car-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
        }

        .car-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
        }

        .car-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #1e293b, #334155);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4em;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

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

        /* Lazy loading fade-in */
        img[loading="lazy"] {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        img[loading="lazy"].loaded {
            opacity: 1;
        }

        .car-image-placeholder {
            font-size: 4em;
            opacity: 0.3;
        }

        .car-gallery-indicator {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            padding: 6px 14px;
            border-radius: 20px;
            color: white;
            font-size: 0.85em;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .car-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75em;
            font-weight: 700;
        }

        .car-badge--promoted {
            top: auto;
            bottom: 15px;
            right: 15px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
        }

        .watchlist-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4em;
            transition: all 0.3s;
        }

        .watchlist-btn:hover {
            transform: scale(1.15);
        }

        .watchlist-btn.active {
            background: #ef4444;
            color: white;
        }

        .car-info {
            padding: 25px;
        }

        .car-title {
            font-size: 1.5em;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .car-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 0.95em;
        }

        .price-section {
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 2em;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .starting-price {
            font-size: 0.9em;
            color: #64748b;
        }

        .countdown {
            background: var(--gradient-3);
            color: white;
            padding: 12px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .countdown--ended {
            background: rgba(100, 116, 139, 0.3);
        }

        .countdown--urgent {
            background: rgba(255, 107, 53, 0.3);
            animation: pulse 2s infinite;
        }

        /* Auction Detail Page */
        .auction-detail {
            display: grid;
            grid-template-columns: 1fr 450px;
            gap: 40px;
            margin-top: 40px;
        }

        .auction-main {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }

        .auction-image {
            width: 100%;
            height: 500px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            font-weight: 700;
            color: white;
        }

        .auction-info {
            padding: 40px;
        }

        .auction-title {
            font-size: 2.5em;
            font-weight: 900;
            color: white;
            margin-bottom: 10px;
        }

        .auction-meta {
            display: flex;
            gap: 20px;
            color: #64748b;
            margin-bottom: 30px;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .spec-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .spec-label {
            color: #64748b;
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .spec-value {
            color: white;
            font-size: 1.2em;
            font-weight: 700;
        }

        .description-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .description-section__title {
            color: white;
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Auction Gallery */
        .auction-gallery {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.03);
            height: auto;
        }

        .auction-gallery__main {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .auction-gallery__placeholder {
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5em;
            color: #64748b;
        }

        .auction-gallery__count {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 8px;
            font-size: 0.9em;
        }

        .auction-video {
            width: 100%;
            max-height: 300px;
            border-radius: 12px;
            background: #000;
            margin-bottom: 10px;
        }

        /* Inspection Info */
        .inspection-info__badge {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.1em;
            display: block;
            margin-bottom: 10px;
        }

        .inspection-info__details {
            color: #94a3b8;
            font-size: 0.9em;
            line-height: 1.8;
        }

        .inspection-info__details strong {
            color: white;
        }

        /* Seller Rating */
        .seller-rating {
            color: #fbbf24;
            font-size: 0.9em;
        }

        /* Bid Alerts */
        .bid-alert {
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: center;
        }

        .bid-alert--urgent {
            background: rgba(255, 107, 53, 0.15);
            border: 2px solid rgba(255, 107, 53, 0.4);
            animation: pulse 2s infinite;
        }

        .bid-alert--primary {
            background: rgba(0, 102, 255, 0.15);
            border: 2px solid rgba(0, 102, 255, 0.4);
        }

        .bid-alert__text {
            font-weight: 700;
            font-size: 0.95em;
        }

        .bid-alert__text--accent { color: var(--accent); }
        .bid-alert__text--primary { color: var(--primary); }

        /* Auto Bid Section */
        .auto-bid-section {
            background: rgba(0, 212, 170, 0.05);
            border: 2px solid rgba(0, 212, 170, 0.2);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .auto-bid-section__header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .auto-bid-section__icon {
            font-size: 1.5em;
        }

        .auto-bid-section__title {
            color: var(--secondary);
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        .auto-bid-section__desc {
            color: #64748b;
            font-size: 0.85em;
        }

        .auto-bid-section__btn {
            background: var(--gradient-2);
            box-shadow: 0 5px 20px rgba(0, 212, 170, 0.3);
        }

        /* Auto Bid Status */
        .auto-bid-status {
            margin-top: 15px;
            padding: 12px;
            background: rgba(0, 212, 170, 0.1);
            border-radius: 8px;
            text-align: center;
        }

        .auto-bid-status__active {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .auto-bid-status__amount {
            color: #94a3b8;
            font-size: 0.9em;
        }

        .auto-bid-status__cancel {
            margin-top: 10px;
            padding: 6px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: white;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s;
        }

        .auto-bid-status__cancel:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Bid Notice (commission / ended) */
        .bid-notice {
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }

        .bid-notice--warning {
            background: rgba(245, 158, 11, 0.1);
            border: 2px solid rgba(245, 158, 11, 0.3);
        }

        .bid-notice--ended {
            background: rgba(107, 114, 128, 0.2);
            border: 2px solid rgba(107, 114, 128, 0.3);
        }

        .bid-notice__icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .bid-notice__title {
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .bid-notice__title--warning { color: #fbbf24; }
        .bid-notice__title--ended { color: #9ca3af; margin-bottom: 10px; }

        .bid-notice__text {
            color: #94a3b8;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .bid-notice__text--muted { color: #6b7280; }

        /* Bid History BEM */
        .bid-history__title {
            color: white;
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .bid-history__item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .bid-history__user {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bid-history__avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8em;
            color: white;
            flex-shrink: 0;
        }

        .bid-history__avatar--mine {
            background: var(--gradient-1);
        }

        .bid-history__name {
            color: white;
            font-weight: 600;
        }

        .bid-history__name--mine {
            color: var(--primary);
        }

        .bid-history__auto {
            color: var(--secondary);
            font-size: 0.75em;
            margin-right: 5px;
        }

        .bid-history__amount-col {
            text-align: left;
        }

        .bid-history__amount {
            color: var(--secondary);
            font-weight: 700;
        }

        .bid-history__time {
            color: #64748b;
            font-size: 0.8em;
        }

        /* Rating Form */
        .rating-form {
            background: rgba(251, 191, 36, 0.05);
            border: 2px solid rgba(251, 191, 36, 0.2);
            border-radius: 12px;
            padding: 25px;
        }

        .rating-form__title {
            color: #fbbf24;
            margin-bottom: 15px;
            text-align: center;
        }

        .rating-form__deadline {
            display: block;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            margin-top: 5px;
        }

        .rating-form__stars {
            text-align: center;
            margin-bottom: 20px;
        }

        /* Rating Done */
        .rating-done {
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.3);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            color: var(--secondary);
            font-weight: 600;
        }

        /* Glass Card Modifier */
        .glass-card--md {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            overflow: hidden;
        }

        .thumb-strip {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        .thumb-strip__item {
            flex-shrink: 0;
            width: 70px;
            height: 52px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .thumb-strip__item--active,
        .thumb-strip__item:hover {
            border-color: var(--primary);
        }
        .thumb-strip__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .admin-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: flex-start;
        }

        .description-section h3 {
            color: white;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .description-text {
            color: #94a3b8;
            line-height: 1.8;
        }

        /* Bidding Panel */
        .bidding-panel {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            position: sticky;
            top: 120px;
        }

        .bidding-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .current-bid {
            font-size: 3em;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .bid-count {
            color: #64748b;
            font-size: 0.95em;
        }

        .time-left {
            background: var(--gradient-3);
            color: white;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1em;
            margin-bottom: 25px;
        }

        .bid-input-group {
            margin-bottom: 20px;
        }

        .bid-input-group label {
            display: block;
            color: #94a3b8;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .bid-input {
            width: 100%;
            padding: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 1.2em;
            font-weight: 700;
            font-family: inherit;
            transition: all 0.3s;
        }

        .bid-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .bid-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }

        .bid-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        }

        .bid-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(100, 116, 139, 0.3);
            box-shadow: none;
        }

        .bid-btn:disabled:hover {
            transform: none;
        }

        .bid-history {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bid-history h4 {
            color: white;
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        .bid-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .bid-user {
            color: #94a3b8;
        }

        .bid-amount {
            color: var(--secondary);
            font-weight: 700;
        }

        /* Inspection Info */
        .inspection-info {
            background: rgba(0, 212, 170, 0.1);
            border: 2px solid rgba(0, 212, 170, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .inspection-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: var(--dark);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .inspection-details {
            color: #94a3b8;
            line-height: 1.8;
        }

        .inspection-details strong {
            color: white;
        }

        /* Alert */
        .alert {
            padding: 20px 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            border: 1px solid;
        }

        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            color: #93c5fd;
        }

        .alert-warning {
            background: rgba(245, 158, 11, 0.1);
            border-color: rgba(245, 158, 11, 0.3);
            color: #fcd34d;
        }

        .alert-icon {
            font-size: 1.5em;
        }

        /* Form */
        .form-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .form-section {
            margin-bottom: 40px;
        }

        .form-section-title {
            font-size: 1.6em;
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

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

        .form-group label {
            color: #94a3b8;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group select option {
            background: #1a1f3a;
            color: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

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

        /* Searchable Select */
        .searchable-select {
            position: relative;
        }
        .searchable-select__trigger {
            padding: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        .searchable-select__trigger:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }
        .searchable-select__arrow {
            color: #94a3b8;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .searchable-select__arrow.rotate-180 {
            transform: rotate(180deg);
        }
        .searchable-select__dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: #1a1f3a;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            z-index: 50;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .searchable-select__search {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            box-sizing: border-box;
        }
        .searchable-select__search::placeholder {
            color: #64748b;
        }
        .searchable-select__options {
            max-height: 200px;
            overflow-y: auto;
        }
        .searchable-select__options::-webkit-scrollbar {
            width: 6px;
        }
        .searchable-select__options::-webkit-scrollbar-track {
            background: transparent;
        }
        .searchable-select__options::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
        }
        .searchable-select__option {
            padding: 12px 16px;
            color: #cbd5e1;
            cursor: pointer;
            transition: background 0.15s;
        }
        .searchable-select__option:hover {
            background: rgba(255, 255, 255, 0.08);
            color: white;
        }
        .searchable-select__option.active {
            background: rgba(var(--primary-rgb, 99, 102, 241), 0.2);
            color: var(--primary);
        }
        .searchable-select__empty {
            padding: 16px;
            color: #64748b;
            text-align: center;
            font-size: 14px;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        }

        /* Dashboard */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 25px;
        }

        .sidebar-wrapper {
            position: relative;
        }

        .dashboard-sidebar {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 15px;
            position: sticky;
            top: 120px;
            max-height: calc(100vh - 140px);
            overflow-y: auto;
            font-size: 0.9rem;
        }

        .sidebar-toggle-btn {
            display: none;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 10px 20px;
            color: #e2e8f0;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 15px;
            font-family: inherit;
        }

        .dashboard-sidebar::-webkit-scrollbar {
            width: 4px;
        }
        .dashboard-sidebar::-webkit-scrollbar-track {
            background: transparent;
        }
        .dashboard-sidebar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-item {
            padding: 10px 14px;
            margin-bottom: 4px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            color: #94a3b8;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sidebar-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--secondary);
        }

        .sidebar-item.active {
            background: var(--gradient-2);
            color: white;
        }

        .dashboard-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            min-width: 0;
            overflow: hidden;
        }

        .dashboard-section {
            display: none;
        }

        .dashboard-section.active {
            display: block;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 3000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--dark-blue);
            padding: 45px;
            border-radius: 25px;
            max-width: 500px;
            width: 90%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .modal-header {
            font-size: 2em;
            font-weight: 900;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-align: center;
        }

        .modal-close {
            float: left;
            font-size: 2em;
            cursor: pointer;
            color: #64748b;
            line-height: 1;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: white;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: var(--gradient-2);
            color: white;
            padding: 18px 35px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5);
            display: none;
            z-index: 4000;
            font-weight: 600;
            min-width: 300px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .notification.show {
            display: block;
            animation: notificationSlideDown 0.4s ease forwards;
        }

        .notification.hide {
            animation: notificationSlideUp 0.4s ease forwards;
        }

        @keyframes notificationSlideDown {
            from {
                transform: translateX(-50%) translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        @keyframes notificationSlideUp {
            from {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
            to {
                transform: translateX(-50%) translateY(-100px);
                opacity: 0;
            }
        }

        .notification.success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
        }

        .notification.error {
            background: var(--gradient-3);
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
        }

        .notification.warning {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
        }

        .notification.info {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
        }

        /* Footer */
        .footer {
            background: rgba(10, 14, 39, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 20px 30px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: #94a3b8;
            line-height: 2;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #64748b;
        }

        /* ============================================ */
        /* SWITCHER SELECT (shared desktop + mobile)    */
        /* ============================================ */
        .switcher-select {
            padding: 8px 12px;
            background: rgba(26, 31, 58, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-family: inherit;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s;
        }
        .switcher-select option {
            background: #1a1f3a;
            color: white;
        }
        .nav-switchers {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
            margin-right: 20px;
        }

        /* ============================================ */
        /* MOBILE MENU                                  */
        /* ============================================ */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }
        .mobile-menu-btn span {
            display: block;
            width: 26px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1050;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-overlay.open {
            display: block;
            opacity: 1;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            bottom: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(180deg, #0d1230 0%, #0a0e27 100%);
            z-index: 1060;
            flex-direction: column;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        [dir="ltr"] .mobile-menu {
            right: auto;
            left: -300px;
            border-left: none;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-menu.open {
            right: 0;
        }
        [dir="ltr"] .mobile-menu.open {
            right: auto;
            left: 0;
        }

        .mobile-menu-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .mobile-menu-links {
            flex: 1;
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            overflow-y: auto;
            min-height: 0;
        }

        .mobile-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            color: #94a3b8;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05em;
            border-radius: 12px;
            transition: all 0.2s ease;
        }
        .mobile-link:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--secondary);
        }
        .mobile-link.active {
            background: rgba(0, 212, 170, 0.12);
            color: white;
            border-right: 3px solid var(--secondary);
        }
        [dir="ltr"] .mobile-link.active {
            border-right: none;
            border-left: 3px solid var(--secondary);
        }

        .mobile-menu-bottom {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .mobile-close-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.2em;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .mobile-user-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .mobile-user-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-logout-btn {
            color: #ef4444;
            border-color: #ef4444;
        }

        .mobile-logout-btn:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        /* ============================================ */
        /* RESPONSIVE                                   */
        /* ============================================ */
        @media (max-width: 1200px) {
            .dashboard-content {
                padding: 25px;
            }
            .dashboard-grid {
                gap: 20px;
            }
        }

        @media (max-width: 968px) {
            .hero {
                min-height: auto;
            }

            .hero-content {
                flex-direction: column;
                padding: 100px 20px 40px;
                gap: 30px;
                text-align: center;
            }

            .hero-text-side {
                text-align: center;
                max-width: 100%;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero-timer-card {
                min-width: auto;
                width: 100%;
                max-width: 360px;
                margin: 0 auto;
                padding: 24px;
            }

            .timer-number {
                font-size: 2.2em;
            }

            .timer-sep {
                font-size: 1.8em;
            }

            .hero-glow {
                width: 300px;
                height: 300px;
                top: -10%;
                right: -10%;
            }

            .hero-overlay {
                background:
                    linear-gradient(180deg, rgba(5, 8, 22, 0.5) 0%, rgba(5, 8, 22, 0.3) 30%, rgba(5, 8, 22, 0.8) 100%);
            }

            .auction-detail {
                grid-template-columns: 1fr;
            }

            .bidding-panel {
                position: static;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-sidebar {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                height: 100vh;
                z-index: 1001;
                border-radius: 0;
                transition: right 0.3s ease;
                overflow-y: auto;
                background: #0d1117;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            .dashboard-sidebar.open {
                right: 0;
            }

            .sidebar-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1000;
            }

            .sidebar-overlay.open {
                display: block;
            }

            .sidebar-toggle-btn {
                display: flex !important;
            }

            .cars-grid {
                grid-template-columns: 1fr;
            }

            .bid-btn {
                font-size: 1.3em;
                padding: 20px;
                font-weight: 800;
            }

            .form-row {
                grid-template-columns: 1fr !important;
            }

            /* Hide desktop nav, show hamburger */
            .desktop-only {
                display: none !important;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .mobile-menu {
                display: flex;
            }

            /* Compact header on mobile */
            .nav-top {
                padding: 12px 0;
            }
            .logo-ar {
                font-size: 1.4em;
            }
            .logo-en {
                font-size: 0.75em;
            }
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2em;
            }
            .nav-switchers {
                margin-left: auto;
                margin-right: 10px;
                gap: 6px;
            }
            .switcher-select {
                padding: 6px 8px;
                font-size: 0.8em;
                border-width: 1px;
            }

            /* Footer responsive */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Small phones */
        @media (max-width: 480px) {
            .hero-content {
                padding: 90px 16px 30px;
            }
            .hero h1 {
                font-size: 1.8em;
            }
            .hero-subtitle {
                font-size: 0.95em;
            }
            .btn-hero-primary, .btn-hero-outline {
                padding: 12px 24px;
                font-size: 0.9em;
                width: 100%;
                text-align: center;
            }
            .timer-number {
                font-size: 1.8em;
            }
            .timer-sep {
                font-size: 1.5em;
            }
            .hero-timer-card {
                padding: 20px;
            }
            .nav-container {
                padding: 0 12px;
            }
            .nav-switchers {
                gap: 4px;
                margin-right: 8px;
            }
            .switcher-select {
                padding: 5px 6px;
                font-size: 0.75em;
            }
        }

        .hidden {
            display: none;
        }

        [x-cloak] {
            display: none !important;
        }
    
        /* ============================================ */
        /* NOTIFICATION BADGE */
        /* ============================================ */
        .notification-badge {
            background: #ef4444;
            color: white;
            font-size: 0.7em;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 8px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        /* ============================================ */
        /* MESSAGES SYSTEM */
        /* ============================================ */
        .messages-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 20px;
            height: 600px;
        }

        .messages-list {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 20px;
            overflow-y: auto;
        }

        .message-item {
            padding: 15px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .message-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-5px);
        }

        .message-item.unread {
            border-left-color: var(--primary);
            background: rgba(0, 102, 255, 0.1);
        }

        .message-item.active {
            background: rgba(0, 102, 255, 0.2);
            border-left-color: var(--primary);
        }

        .message-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            overflow-y: auto;
        }

        .message-header {
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .message-body {
            line-height: 1.8;
            color: #cbd5e1;
        }

        .message-reply-form {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ============================================ */
        /* NOTIFICATIONS CENTER */
        /* ============================================ */
        .notifications-grid {
            display: grid;
            gap: 15px;
        }

        .notification-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            border-right: 4px solid;
            transition: all 0.3s;
            cursor: pointer;
        }

        .notification-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-5px);
        }

        .notification-item.unread {
            background: rgba(0, 102, 255, 0.1);
        }

        .notification-item.bid {
            border-right-color: #3b82f6;
        }

        .notification-item.payment {
            border-right-color: #10b981;
        }

        .notification-item.message {
            border-right-color: #8b5cf6;
        }

        .notification-item.system {
            border-right-color: #f59e0b;
        }

        .notification-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 10px;
        }

        .notification-time {
            font-size: 0.85em;
            color: #94a3b8;
        }

        /* ============================================ */
        /* RATINGS SYSTEM */
        /* ============================================ */
        .ratings-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .rating-tab {
            padding: 12px 24px;
            background: transparent;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
        }

        .rating-tab.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .rating-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.3em;
        }

        .star {
            cursor: pointer;
            transition: all 0.2s;
            color: #64748b;
        }

        .star.active {
            color: #fbbf24;
            transform: scale(1.1);
        }

        .star:hover {
            transform: scale(1.2);
        }

        /* ============================================ */
        /* HELP CENTER */
        /* ============================================ */
        .help-search {
            margin-bottom: 40px;
        }

        .help-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .help-category {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .help-category:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            color: #cbd5e1;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* ============================================ */
        /* REPORTS & CHARTS */
        /* ============================================ */
        .reports-filters {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .chart-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .stat-value {
            font-size: 2.5em;
            font-weight: bold;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 10px 0;
        }

        .export-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        /* ============================================ */
        /* PWA ADMIN SETTINGS                          */
        /* ============================================ */
        .pwa-admin-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            align-items: start;
        }

        @media (max-width: 968px) {
            .pwa-admin-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Toggle Switch */
        .pwa-toggle {
            position: relative;
            display: inline-block;
            width: 56px;
            height: 30px;
            flex-shrink: 0;
        }
        .pwa-toggle input { opacity: 0; width: 0; height: 0; }
        .pwa-toggle__slider {
            position: absolute;
            cursor: pointer;
            inset: 0;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            transition: 0.3s;
        }
        .pwa-toggle__slider::before {
            content: '';
            position: absolute;
            height: 22px;
            width: 22px;
            bottom: 4px;
            left: 4px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }
        .pwa-toggle input:checked + .pwa-toggle__slider {
            background: var(--gradient-2);
        }
        .pwa-toggle input:checked + .pwa-toggle__slider::before {
            transform: translateX(26px);
        }

        /* Color Picker */
        .pwa-color-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 480px) {
            .pwa-color-row { grid-template-columns: 1fr; }
        }
        .pwa-color-input {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pwa-color-picker {
            width: 44px;
            height: 44px;
            border: 2px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            cursor: pointer;
            background: none;
            padding: 2px;
        }

        /* Icon Upload */
        .pwa-icon-upload {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .pwa-icon-preview {
            width: 80px;
            height: 80px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .pwa-icon-preview img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .pwa-icon-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .pwa-icon-btn { cursor: pointer; }

        /* Form Hint */
        .form-hint {
            display: block;
            color: #64748b;
            font-size: 0.8em;
            margin-top: 5px;
        }

        /* Phone Mockup Preview */
        .pwa-preview-container {
            position: sticky;
            top: 20px;
        }
        .pwa-phone-mockup {
            width: 100%;
            max-width: 260px;
            background: #1a1f3a;
            border-radius: 30px;
            overflow: hidden;
            border: 3px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .pwa-phone__status-bar {
            padding: 10px 20px;
            text-align: center;
            font-size: 0.8em;
        }
        .pwa-phone__splash {
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
        }
        .pwa-phone__icon {
            width: 80px;
            height: 80px;
            border-radius: 18px;
        }

        /* Home Screen Icon Preview */
        .pwa-homescreen-preview {
            text-align: center;
        }
        .pwa-homescreen-icon {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .pwa-homescreen-icon__img {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pwa-homescreen-icon__img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .pwa-homescreen-icon__name {
            color: white;
            font-size: 0.75em;
            max-width: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ============================================ */
        /* PWA INSTALL BANNER                          */
        /* ============================================ */
        .pwa-install-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 31, 58, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 102, 255, 0.3);
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 3000;
            animation: pwaSlideUp 0.4s ease;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
        }
        @keyframes pwaSlideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        .pwa-install-banner__content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pwa-install-banner__icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3em;
            flex-shrink: 0;
        }
        .pwa-install-banner__text {
            display: flex;
            flex-direction: column;
            color: #e0e7ff;
            font-size: 0.9em;
        }
        .pwa-install-banner__text strong {
            color: white;
            font-size: 1.1em;
        }
        .pwa-install-banner__actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }
        .pwa-install-banner__dismiss {
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.85em;
            padding: 8px;
        }
        .btn--sm {
            padding: 8px 20px;
            font-size: 0.85em;
        }
        @media (max-width: 480px) {
            .pwa-install-banner {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .pwa-install-banner__content { justify-content: center; }
        }

        /* ========================
         * OFFICES - Directory & Show
         * ======================== */

        /* Offices Grid (index page) */
        .offices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        /* Office Card */
        .office-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s, border-color 0.2s;
            display: block;
        }
        .office-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,102,255,0.3);
        }
        .office-card__header {
            background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,212,170,0.1));
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .office-card__logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.1);
        }
        .office-card__logo--default {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0066ff, #00d4aa);
            color: white;
            font-size: 2em;
            font-weight: 900;
        }
        .office-card__body {
            padding: 20px;
        }
        .office-card__name {
            color: white;
            font-size: 1.15em;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .office-card__location {
            color: #94a3b8;
            font-size: 0.9em;
            margin-bottom: 12px;
        }
        .office-card__stats {
            display: flex;
            gap: 15px;
            color: #64748b;
            font-size: 0.85em;
        }

        /* Office Header (show page) */
        .office-header {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .office-header__info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .office-header__logo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.1);
        }
        .office-header__logo--default {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0066ff, #00d4aa);
            color: white;
            font-size: 2.5em;
            font-weight: 900;
        }
        .office-header__name {
            color: white;
            font-size: 1.6em;
            font-weight: 900;
            margin-bottom: 5px;
        }
        .office-header__location {
            color: #94a3b8;
            font-size: 0.95em;
            margin-bottom: 5px;
        }
        .office-header__rating {
            color: #fbbf24;
            font-size: 1.1em;
        }

        /* Office Stats Bar */
        .office-stats-bar {
            display: flex;
            gap: 0;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            overflow: hidden;
        }
        .office-stats-bar__item {
            flex: 1;
            text-align: center;
            padding: 20px;
            border-left: 1px solid rgba(255,255,255,0.06);
        }
        .office-stats-bar__item:first-child {
            border-left: none;
        }
        .office-stats-bar__value {
            display: block;
            color: white;
            font-size: 1.5em;
            font-weight: 900;
        }
        .office-stats-bar__label {
            color: #94a3b8;
            font-size: 0.85em;
        }

        /* Office Stats Grid (dashboard) */
        .office-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
        }
        .office-stat-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }
        .office-stat-card__icon {
            font-size: 1.5em;
            margin-bottom: 8px;
        }
        .office-stat-card__value {
            color: white;
            font-size: 1.8em;
            font-weight: 900;
            display: block;
        }
        .office-stat-card__label {
            color: #94a3b8;
            font-size: 0.85em;
            margin-top: 4px;
        }

        /* Office Car Thumbnail */
        .office-car-thumb {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
        }
        .office-car-thumb--placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.03);
            font-size: 1.5em;
        }

        /* Office Logo Preview (settings page) */
        .office-logo-preview {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.1);
        }

        /* Readonly form input */
        .form-input--readonly {
            opacity: 0.7;
            cursor: default;
            user-select: all;
        }

        @media (max-width: 768px) {
            .office-header {
                flex-direction: column;
                text-align: center;
            }
            .office-header__info {
                flex-direction: column;
            }
            .office-stats-bar {
                flex-direction: column;
            }
            .office-stats-bar__item {
                border-left: none;
                border-top: 1px solid rgba(255,255,255,0.06);
            }
            .office-stats-bar__item:first-child {
                border-top: none;
            }
            .offices-grid {
                grid-template-columns: 1fr;
            }
        }

