
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: #fff; color: #333; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-block; background-color: #f97316; color: white; padding: 12px 30px; border: none; border-radius: 50px; font-weight: 500; cursor: pointer; transition: background-color 0.3s; font-size: 16px; }
        .btn:hover { background-color: #e45f0c; }
        .section-title { font-size: 36px; font-weight: 600; text-align: center; margin-bottom: 50px; color: #222; position: relative; }
        .section-title::after { content: ''; width: 80px; height: 4px; background-color: #f97316; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); border-radius: 2px; }
        header { background-color: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
        .navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; flex-wrap: wrap; gap: 15px; }
        .logo h1 { font-size: 28px; font-weight: 700; color: #222; }
        .logo span { color: #f97316; }
        .nav-links { display: flex; gap: 30px; flex-wrap: wrap; }
        .nav-links a { font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: #f97316; }
        .hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat; display: flex; align-items: center; text-align: center; color: white; }
        .hero {
            min-height: 100vh;
            padding: 60px 0;
        }
        .hero-content { width: 100%; }
        .hero-content h2 { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero-content p { font-size: 20px; margin-bottom: 40px; opacity: 0.9; }
        .booking-form { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: 60px; padding: 30px; max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; border: 1px solid rgba(255,255,255,0.2); }
        .form-group { flex: 1 1 180px;max-height: 50px; background: white; border-radius: 50px; display: flex; align-items: center; padding: 0 20px; color: #333; }
        .form-group i { color: #f97316; margin-right: 10px; }
        .form-group input, .form-group select { width: 100%; padding: 15px 0; border: none; outline: none; background: transparent; font-size: 14px; }
        .booking-form .btn-search { background-color: #f97316; color: white; border: none; padding: 0 40px; border-radius: 50px; font-weight: 600; font-size: 16px; cursor: pointer; transition: background 0.3s; height: 55px; flex: 0 0 auto; }
        .booking-form .btn-search:hover { background-color: #e45f0c; }
        .featured { padding: 80px 0; background-color: #f9f9f9; }
        .car-img { height: 200px; overflow: hidden; }
        .car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .car-card:hover .car-img img { transform: scale(1.1); }
        .car-details { padding: 20px; }
        .car-details h3 { font-size: 22px; margin-bottom: 10px; color: #222; }
        .car-specs { display: flex; gap: 15px; margin-bottom: 15px; color: #666; font-size: 14px; flex-wrap: wrap; }
        .car-specs i { color: #f97316; margin-right: 5px; }
        .price { font-size: 24px; font-weight: 700; color: #f97316; margin-bottom: 15px; }
        .price span { font-size: 14px; font-weight: 400; color: #666; }
        .btn-card { display: inline-block; background-color: #f97316; color: white; padding: 10px 25px; border-radius: 50px; font-weight: 500; transition: background 0.3s; border: none; cursor: pointer; width: 100%; text-align: center; }
        .btn-card:hover { background-color: #e45f0c; }
        .why-choose { padding: 80px 0; background: white; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
        .feature-item { padding: 30px 20px; border-radius: 20px; background: #f9f9f9; transition: background 0.3s; }
        .feature-item:hover { background: #f97316; color: white; }
        .feature-item:hover i { color: white; }
        .feature-item i { font-size: 50px; color: #f97316; margin-bottom: 20px; transition: color 0.3s; }
        .feature-item h4 { font-size: 22px; margin-bottom: 10px; }
        .feature-item p { color: #666; transition: color 0.3s; }
        .feature-item:hover p { color: white; }
        footer { background-color: #1f1f1f; color: #bbb; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h3 { color: white; font-size: 20px; margin-bottom: 25px; position: relative; }
        .footer-col h3::after { content: ''; width: 40px; height: 3px; background-color: #f97316; position: absolute; left: 0; bottom: -10px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a:hover { color: #f97316; }
        .footer-col .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #333; border-radius: 50%; color: white; transition: background 0.3s; }
        .social-links a:hover { background-color: #f97316; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; font-size: 14px; }
        @media (max-width: 992px) { .navbar { flex-direction: column; } .hero-content h2 { font-size: 38px; } }
        @media (max-width: 768px) { .hero { height: auto; padding: 80px 0; } .hero-content h2 { font-size: 30px; } .booking-form { flex-direction: column; border-radius: 30px; } }





.user-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
}

.user-actions .lang-link {
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.user-actions .lang-link:hover {
    background: #f97316;
    color: white;
}

.user-actions .active {
    background: #f97316;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-actions .login,
.user-actions .signup {
    margin-left: 10px;
    padding: 6px 16px;
    border-radius: 50px;
    background: #111;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.user-actions .login:hover,
.user-actions .signup:hover {
    background: #f97316;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-link {
    font-size: 10px;
    font-weight: bold;

}


@media (max-width: 768px) {
    .user-actions {
        padding: 3px;
    }

    .lang-link {
        padding: 4px 10px;
        font-size: 13px;
    }
}



.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }
}




@media (max-width: 768px) {
    .booking-form {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }

    .form-group {
        width: 100%;
        height: 50px;
    }

    .booking-form .btn-search {
        width: 100%;
        height: 50px;
    }
}


.form-message {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease;
}

.form-message.show {
    top: 20px;
    opacity: 1;
}

.form-message.success {
    background: #e6fffa;
    color: #065f46;
    border: 1px solid #34d399;
}

.form-message.error {
    background: #ffe4e6;
    color: #7f1d1d;
    border: 1px solid #f87171;
}

.form-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0 15px;
    gap: 10px;
}


html[dir="rtl"] .form-group {
    justify-content: flex-end; 
    direction: rtl; 
}

html[dir="rtl"] .label-text {
    text-align: right;
        color: #f97316;
    font-weight: bold;
}

html[dir="rtl"] .form-group input {
    text-align: right;
}


html[dir="ltr"] .form-group {
    flex-direction: row;
    justify-content: flex-start;
}

html[dir="ltr"] .label-text {
    text-align: left;
        color: #f97316;
    font-weight: bold;
}

html[dir="ltr"] .form-group input {
    text-align: left;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.car-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 0, 0, 0.14);
}

.car-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.car-card:hover .car-img img {
    transform: scale(1.04);
}

.car-details {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.car-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.06);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
}

.price span {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.btn-card:hover {
    background: #333;
    transform: scale(1.02);
}


.map-container { border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-top: 30px; }
.map-container iframe { width: 100%; height: 400px; border: 0; }


#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

#whatsapp-float:hover {
    transform: scale(1.1);
}