  :root {
            /* رنگ طلایی لوکس */
            --primary: #d4af37;       
            --primary-light: #f3e5ab;
            --primary-glow: rgba(212, 175, 55, 0.4);
            
            --bg-dark: #050505;
            --bg-card: #0f0f0f;
            --text-main: #ffffff;
            --text-muted: #9ca3af;
            
            --glass: rgba(10, 10, 10, 0.75);
            --glass-border: rgba(255, 255, 255, 0.1);
            
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { display: block; max-width: 100%; width: 100%; object-fit: cover; }

        /* Language Logic */
        .lang-en, .lang-tr, .lang-de { display: none; }
        
        body[data-lang="en"] .lang-en { display: inline-block; display: contents; }
        body[data-lang="tr"] .lang-tr { display: inline-block; display: contents; }
        body[data-lang="de"] .lang-de { display: inline-block; display: contents; }

        /* =========================================
           2. LOADER STYLES (CENTERED)
           ========================================= */
        body.loading-active { overflow: hidden; }

        #loader-wrapper {
            position: fixed; inset: 0; z-index: 10000;
            background: #000;
            display: flex; justify-content: center; align-items: center;
            flex-direction: column;
            transition: opacity 0.8s ease;
        }
        #loader-wrapper.loaded { opacity: 0; pointer-events: none; visibility: hidden; }

        .loader-content { 
            display: flex; 
            flex-direction: column; 
            align-items: center;
            justify-content: center; 
            text-align: center;
            width: 100%;
        }

        .loader-logo { font-family: 'Space Grotesk'; font-size: 2rem; letter-spacing: 5px; margin-bottom: 30px; color: var(--primary); text-transform: uppercase; }
        
        .progress-track { width: 300px; height: 2px; background: #222; overflow: hidden; margin-top: 15px; }
        .progress-bar { height: 100%; width: 0%; background: var(--primary); transition: width 0.1s linear; }
        
        #counter { 
            font-family: 'Space Grotesk'; 
            font-size: 4rem; 
            font-weight: 700;
            margin: 0; 
            color: #fff; 
            line-height: 1;
        }

        /* =========================================
           3. NAVBAR
           ========================================= */
        .navbar {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            width: 90%; max-width: 1200px;
            padding: 0.8rem 2rem;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .logo { font-size: 1.5rem; font-weight: 700; font-family: 'Space Grotesk'; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
        .logo span { color: var(--primary); }

        .nav-links { display: flex; gap: 2.5rem; }
        .nav-links a { color: var(--text-muted); font-weight: 500; position: relative; font-size: 0.95rem; }
        .nav-links a:hover { color: #fff; }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px;
            background: var(--primary); transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .nav-actions { display: flex; align-items: center; gap: 12px; }

        /* Language Dropdown */
        .lang-dropdown { position: relative; }
        
        .lang-btn {
            background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
            color: #fff; padding: 8px 16px; border-radius: 30px;
            display: flex; align-items: center; gap: 8px;
            cursor: pointer; font-size: 0.85rem; font-weight: 600;
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); }

        .lang-menu {
            position: absolute; top: 120%; right: 0;
            background: #111; border: 1px solid var(--glass-border);
            border-radius: 12px; width: 140px;
            opacity: 0; visibility: hidden; transform: translateY(-10px);
            transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            overflow: hidden;
        }
        
        .lang-dropdown.active .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

        .lang-menu li { border-bottom: 1px solid #1a1a1a; }
        .lang-menu li:last-child { border-bottom: none; }
        
        .lang-menu button {
            width: 100%; text-align: left; background: none; border: none;
            color: #ccc; padding: 10px 15px; cursor: pointer;
            font-family: 'Outfit'; transition: 0.2s;
        }
        .lang-menu button:hover { background: var(--primary); color: #000; }
        .lang-menu button.active-lang { color: var(--primary); font-weight: bold; }

        .hamburger {
            display: flex; 
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            font-size: 1.2rem;
            color: #fff;
            cursor: pointer;
            transition: var(--transition);
        }
        .hamburger:hover { background: var(--primary); color: #000; border-color: var(--primary); }

        /* =========================================
           4. HERO SECTION (FIXED)
           ========================================= */
        .hero-section {
            position: relative; height: 100vh;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }

        .video-bg {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; z-index: -2;
            filter: brightness(0.4) contrast(1.1);
            transition: opacity 1.5s ease-in-out;
        }
        .video-bg.active { opacity: 1; }

        .hero-overlay {
            position: absolute; inset: 0; background: radial-gradient(circle, rgba(5,5,5,0) 0%, #050505 90%);
            z-index: -1;
        }

        .hero-content { text-align: center; z-index: 10; padding: 0 20px; max-width: 900px; }

        /* Fix for White Rectangle Issue */
        .hero-title {
            font-family: 'Space Grotesk'; 
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700; 
            line-height: 1.2; 
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #ffffff; /* Solid White */
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); /* Subtle Glow */
        }

        .hero-subtitle { font-size: 1.3rem; color: #ccc; min-height: 30px; margin-bottom: 40px; font-weight: 300; }
        
        /* Smooth Transition for Typing Text */
        .typing-text { 
            color: var(--primary); 
            font-weight: 700; 
            border-bottom: 2px solid var(--primary);
            display: inline-block;
            transition: opacity 0.6s ease-in-out;
            opacity: 1;
        }

        /* =========================================
           5. CARS SECTION
           ========================================= */
        #cars { padding: 6rem 5%; background: linear-gradient(to bottom, #050505, #080808); position: relative; }
        
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 {
            font-family: 'Space Grotesk'; font-size: clamp(2rem, 5vw, 3rem); color: #fff;
            display: inline-block; position: relative;
        }
        .section-header h2::before {
            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
            width: 80px; height: 4px; background: var(--primary); border-radius: 2px;
        }

        .car-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px; margin: 0 auto;
        }

        .car-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.03);
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .card-image-wrapper { position: relative; height: 220px; overflow: hidden; }
        .car-card:hover .card-img { transform: scale(1.1); }
        .card-img { transition: transform 0.6s ease; width: 100%; height: 100%; object-fit: cover; }

        .damage-badge {
            position: absolute; top: 15px; right: 15px;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(4px);
            padding: 6px 12px; border-radius: 8px;
            font-size: 0.75rem; font-weight: 600; color: var(--primary);
            border: 1px solid var(--glass-border);
            display: flex; align-items: center; gap: 6px;
        }

        .card-body { padding: 1.5rem; }

        .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .car-name { font-size: 1.2rem; font-weight: 700; color: #fff; }
        .car-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

        .specs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
        .spec-tag {
            background: rgba(255,255,255,0.03); color: #aaa;
            padding: 5px 10px; border-radius: 6px; font-size: 0.8rem;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .card-btn {
            display: block; width: 100%; text-align: center;
            padding: 12px; border-radius: 8px;
            background: var(--primary);
            color: #000; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            border: none; cursor: pointer; transition: var(--transition);
            position: relative; overflow: hidden;
        }
        .card-btn:hover { background: var(--primary-light); box-shadow: 0 0 15px var(--primary-glow); }

        /* =========================================
           6. FOOTER
           ========================================= */
        footer {
            background: #020202; border-top: 1px solid #1a1a1a;
            padding: 5rem 5% 2rem;
            position: relative;
        }
        footer::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .footer-container {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem;
        }
        .footer-col h3 { color: #fff; margin-bottom: 1.5rem; font-family: 'Space Grotesk'; font-size: 1.2rem; }
        .footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.7; }
        
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-muted); display: flex; align-items: center; gap: 10px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); padding-left: 10px; }
        .footer-links a i { font-size: 0.8rem; opacity: 0.5; }

        .social-box {
            background: #111; padding: 1.5rem; border-radius: 12px;
            border: 1px solid var(--glass-border); text-align: center;
        }
        .social-box .handle { display: block; color: var(--primary); font-weight: 700; font-size: 1.1rem; margin: 10px 0; }
        
        .social-links { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }
        .social-icon {
            width: 35px; height: 35px; background: #222; color: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; transition: 0.3s;
        }
        .social-icon:hover { background: var(--primary); color: #000; transform: translateY(-3px); }

        .copyright {
            text-align: center; margin-top: 4rem; padding-top: 2rem;
            border-top: 1px solid #111; color: #555; font-size: 0.8rem;
        }

        /* =========================================
           7. MOBILE NAV & RESPONSIVE
           ========================================= */
        .mobile-nav {
            position: fixed; inset: 0; background: #000; z-index: 2000;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: 0.4s ease;
        }
        .mobile-nav.active { opacity: 1; pointer-events: all; }
        
        .mobile-nav li { margin: 20px 0; text-align: center; }
        .mobile-nav a { font-size: 1.5rem; color: #fff; font-family: 'Space Grotesk'; }
        
        .close-btn {
            position: absolute; top: 30px; right: 30px; font-size: 3rem;
            color: #fff; cursor: pointer; line-height: 1;
        }

        /* MEDIA QUERIES */
        @media (max-width: 992px) {
            .nav-links { display: none; }
            .navbar { width: 95%; padding: 0.8rem 1.5rem; }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; }
            .section-header h2 { font-size: 2rem; }
            .car-grid { grid-template-columns: 1fr; gap: 25px; }
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
            .footer-links a { justify-content: center; }
            .lang-menu { width: 160px; right: -10px; }
        }