
        :root {
            --primary-color: #DC2626;
            --dark-color: #1F2937;
            --gray-color: #6B7280;
            --light-gray: #F3F4F6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            margin-left: 8px;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 600;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background: #B91C1C;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.7)),
                        url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&h=1080&fit=crop') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        
        .search-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            margin-top: 2rem;
        }
        
        .search-box select,
        .search-box input {
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            padding: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-box select:focus,
        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
            outline: none;
        }
        
        .btn-search {
            background: var(--primary-color);
            color: white;
            padding: 12px 40px;
            border-radius: 10px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-search:hover {
            background: #B91C1C;
            transform: translateY(-2px);
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray-color);
        }
        
        /* Featured Cars */
        .featured-cars {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .car-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .car-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .car-card:hover img {
            transform: scale(1.1);
        }
        
        .car-card-body {
            padding: 25px;
        }
        
        .car-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .car-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .btn-details {
            background: var(--dark-color);
            color: white;
            padding: 10px 30px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-details:hover {
            background: var(--primary-color);
            color: white;
            transform: translateX(-5px);
        }
        
        /* Swiper Customization */
        .swiper {
            padding-bottom: 50px;
        }
        
        .swiper-pagination-bullet {
            background: var(--primary-color);
            width: 12px;
            height: 12px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            background: var(--light-gray);
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
            background: var(--dark-color);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .feature-card p {
            color: var(--gray-color);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-color), #374151);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .btn-cta-large {
            background: var(--primary-color);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background: white;
            color: var(--primary-color);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255,255,255,0.2);
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .social-icons {
            margin: 20px 0;
        }
        
        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 30px 0 20px;
        }
        
        .copyright {
            text-align: center;
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .search-box {
                padding: 20px;
            }
        }
    