        /* --- الخطوط والأساسيات --- */
        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

        :root {
            --gold-primary: #D4AF37; /* ذهبي فاخر */
            --gold-hover: #B4941F;
            --dark-bg: #0F172A; /* كحلي ليلي غامق */
            --dark-card: #1E293B;
            --text-light: #F8FAFC;
            --text-gray: #fefefe;
            --glass-bg: rgba(30, 41, 59, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
            --radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif; /* خط تجوال عصري */
        }

        body {
            background-color: #f0f2f5;
            color: #333;
            overflow-x: hidden;
            direction: rtl;
            text-align: right;
        }

        /* --- الهيدر (القائمة العلوية) --- */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 20px 50px;
            transition: 0.4s ease;
            background: rgba(15, 23, 42, 0.9);
        }

        .header.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 50px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo img {
            height: 50px;
            filter: brightness(0) invert(1); 
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 16px;
            transition: 0.3s;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--gold-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            right: 0;
            background-color: var(--gold-primary);
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }


        .services-hero {
            height: 100vh;
            width: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%),
                        url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 60px;
        }

        .hero-flex-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            gap: 60px;
        }

        /* --- النصوص في الهيرو --- */
        .hero-text-content {
            flex: 1;
            color: white;
            text-align: right;
        }

        .hero-text-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to left, #fff, #ccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text-content p {
            font-size: 1.2rem;
            color: #ebf3ff;
            line-height: 1.8;
            max-width: 500px;
            margin-bottom: 30px;
        }

        .hero-cta {
            display: inline-block;
            background: var(--gold-primary);
            color: #000;
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 12px;
            text-decoration: none;
            transition: 0.3s;
            margin-top: 10px;
        }

        .hero-cta:hover {
            background: var(--gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }

        /* --- بطاقة تسجيل الدخول (تصميم زجاجي) --- */
        .login-card-container {
            flex: 0 0 400px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            padding: 40px 30px;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .service-icon {
            color: var(--gold-primary);
            font-size: 2.5rem;
            margin-bottom: 10px;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
        }

        .service-content h3 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        /* --- تعديل حقول الإدخال (Inputs) --- */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group input {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            color: #fff;
            padding: 15px;
            border-radius: 12px;
            font-size: 15px;
            transition: 0.3s;
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .form-group input:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
            outline: none;
            background: rgba(0, 0, 0, 0.5);
        }

        /* --- زر الدخول --- */
        .btn-service {
            width: 100%;
            background: var(--gold-primary);
            color: #000;
            font-weight: 700;
            padding: 15px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .btn-service:hover {
            background: var(--gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }

        .signup-link {
            margin-top: 20px;
            text-align: center;
        }

        .signup-link p {
            color: var(--text-gray);
        }

        .signup-link a {
            color: var(--gold-primary);
            text-decoration: none;
            transition: 0.3s;
        }

        .signup-link a:hover {
            text-decoration: underline;
            color: #fff;
        }

        /* --- المحتوى (خدماتنا ولماذا تختارنا) --- */
        .services-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .car-categories h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 60px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .category-item {
            background: #fff;
            padding: 40px 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }

        .category-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* خط ذهبي علوي عند الهوفر */
        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-primary);
            transform: scaleX(0);
            transition: 0.4s;
        }

        .category-item:hover::before {
            transform: scaleX(1);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background: #f8f8f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--dark-bg);
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .category-item:hover .category-icon {
            background: var(--gold-primary);
            color: #fff;
        }

        .category-item h4 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--dark-bg);
        }

        .category-item p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

   
/* --- قسم العرض الخاص --- */
.special-offers {
    background: var(--dark-bg);
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* زخرفة خلفية */
.special-offers::before {
    content: '\f1b9'; /* أيقونة سيارة */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
}

.special-offers h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
    z-index: 1;
}

.special-offers p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    z-index: 1;
}

.special-offers .btn-service {
    width: auto;
    padding: 18px 60px;
    z-index: 1;
}

        /* --- التجاوب مع الجوال --- */
        @media (max-width: 992px) {
            .hero-flex-container {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero-text-content {
                text-align: center;
                margin-bottom: 40px;
            }

            .hero-text-content p {
                margin: 0 auto;
            }

            .login-card-container {
                width: 100%;
                flex: none;
            }
        }

        @media (max-width: 768px) {
            .header { padding: 15px 20px; background: var(--dark-bg); }
            .logo img { height: 40px; }
            
            .menu-toggle { display: block; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background: var(--dark-bg);
                flex-direction: column;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: 0.3s ease-in-out;
            }
            
            .nav-links.active {
                padding: 20px 0;
                max-height: 300px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-links li { width: 100%; text-align: center; }
            .nav-links a { display: block; padding: 10px; }
            
            .hero-text-content h1 { font-size: 2.2rem; }
            .services-hero { height: auto; padding: 120px 0 60px; }
            
            .special-offers { padding: 40px 20px; }
        }