/* ==============================
   Taxi Kuwait - style.css
   Clean | Responsive | Optimized
   ============================== */

/* 🎨 Variables */
:root {
    --primary-color: #2E86AB;
    --secondary-color: #A23B72;
    --accent-color: #F18F01;
    --dark-color: #2B2D42;
    --light-color: #F8F9FA;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

/* 🧱 Reset */
* {
    text-align:justify;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* إعداد عام للهيدر */
.header_section {
    background-color: #111;
    color: #fff;
    padding: 10px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    /* تنسيق الحاوية */
    .header_section .container-fluid {
        padding: 0 30px;
    }

/* شعار الموقع */
.navbar-brand span {
    color: #fdd835;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

    .navbar-brand span:hover {
        color: #fff;
    }

/* القائمة */
.custom_nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-nav .nav-item {
        margin: 0 10px;
    }

    .navbar-nav .nav-link {
        color: #ddd;
        font-size: 18px;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .navbar-nav .nav-link:hover {
            background-color: #fdd835;
            color: #111;
        }

        /* العنصر النشط */
        .navbar-nav .nav-link.active {
            background-color: #fdd835;
            color: #111;
            font-weight: bold;
        }

/* زر القائمة في الجوال */
.navbar-toggler {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
}

    .navbar-toggler:focus {
        outline: none;
    }

/* استجابة الهواتف */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #111;
        padding: 15px;
        border-radius: 8px;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        display: block;
        text-align: center;
    }
}

/* ==============================
   🏠 Hero / Slider Section
   ============================== */
.slider_section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, #2E86AB, #A23B72);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 50px 20px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .slider_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

    .slider_section .content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
    }

/* النصوص والصورة */
.detail-box {
    flex: 1;
    min-width: 300px;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

    .detail-box h4 {
        font-size: 1.5rem;
        color: #ffd54f;
        margin-bottom: 10px;
    }

    .detail-box h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

.img-box img {
    max-width: 100%;
    height: auto;
    animation: fadeIn 1.5s ease-in-out;
}

/* ==============================
   📋 Slider Form
   ============================== */
.slider_form {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 25px;
    color: #fff;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.8s ease-in-out;
}

    .slider_form h4 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #FFD54F;
        margin-bottom: 20px;
    }

    .slider_form input,
    .slider_form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        color: #333;
        outline: none;
        transition: box-shadow 0.3s ease;
    }

        .slider_form input:focus {
            box-shadow: 0 0 6px #FFD54F;
        }

    /* زر الحجز */
    .slider_form button {
        width: 100%;
        background: #FFD54F;
        color: #111;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 12px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .slider_form button:hover {
            background: #FFEE58;
            transform: scale(1.03);
        }

/* ==============================
   🚖 Buttons
   ============================== */
.booking-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-book,
.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFD54F;
    color: #111;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

    .btn-book:hover,
    .btn-whatsapp:hover,
    .btn-call:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-call {
    background-color: #007BFF;
    color: #fff;
}

/* ✨ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
    .slider_section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

        .slider_section .box {
            flex-direction: column;
        }

    .slider_form {
        margin-top: 25px;
    }
}
/* ==============================
   👥 About Section
   ============================== */
.about_section {
    background-color: #fff;
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .about_section .detail-box {
        background-color: #f1f1f1; /* ✅ تم تصحيح اللون */
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        animation: fadeInRight 1s ease-in-out;
    }

        .about_section .detail-box h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 20px;
            position: relative;
        }

            .about_section .detail-box h2::after {
                content: '';
                position: absolute;
                bottom: -10px;
                right: 0;
                width: 60px;
                height: 4px;
                background-color: #FFD54F;
                border-radius: 2px;
            }

        .about_section .detail-box p {
            color: #222;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .about_section .detail-box a {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FFD54F;
            color: #000;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease-in-out;
        }

            .about_section .detail-box a:hover {
                background-color: #ffea00;
                transform: translateY(-3px);
            }

    /* الصورة */
    .about_section .img-box {
        position: relative;
        text-align: center;
        animation: fadeInLeft 1s ease-in-out;
    }

        .about_section .img-box img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }

            .about_section .img-box img:hover {
                transform: scale(1.03);
            }

/* ✨ Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .about_section {
        padding: 70px 20px;
    }

        .about_section .detail-box {
            margin-bottom: 30px;
            text-align: center;
        }

            .about_section .detail-box h2 {
                font-size: 2rem;
            }
}

/* ==============================
   🧩 Service Section
   ============================== */


.service_section {
    background-color: var(--light-color);
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* العنوان الرئيسي */
.heading_container {
    text-align: center;
    margin-bottom: 60px;
}

    .heading_container h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        font-weight: bold;
        position: relative;
        display: inline-block;
    }

        .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* 🧱 صناديق الخدمات */
.service_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

    .service_container .box {
        background-color: #fafafa;
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: var(--transition);
        border-top: 5px solid transparent;
    }

        .service_container .box:hover {
            transform: translateY(-8px);
            border-top: 5px solid var(--accent-color);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            background: linear-gradient(180deg, #fff, #f9f9f9);
        }

        .service_container .box img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            transition: transform 0.3s ease-in-out;
        }

        .service_container .box:hover img {
            transform: scale(1.1);
        }

        .service_container .box h4 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .service_container .box p {
            color: var(--gray-color);
            font-size: 1rem;
            line-height: 1.6;
        }

/* ✨ تأثير دخول ناعم */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_container .box {
    animation: fadeUp 1s ease forwards;
}

/* 📱 استجابة الجوال */
@media (max-width: 768px) {
    .service_section {
        padding: 70px 0;
    }

    .heading_container h2 {
        font-size: 2rem;
    }

    .service_container {
        gap: 25px;
        padding: 0 20px;
    }

        .service_container .box {
            padding: 20px;
        }
}
/* ==============================
   📞 CTA Buttons Section
   ============================== */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

/* ==============================
   📱 Responsive Design
   ============================== */
@media (max-width: 991px) {
    .slider_section h1 {
        font-size: 2.5rem;
    }

    .heading_container h2 {
        font-size: 2.2rem;
    }

    .service_section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .slider_section {
        height: auto;
        padding: 80px 20px;
    }

        .slider_section h1 {
            font-size: 2rem;
        }

        .slider_section p {
            font-size: 1rem;
        }

    .service_container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .slider_section h1 {
        font-size: 1.7rem;
    }

    .btn-book, .btn-whatsapp, .btn-call {
        font-size: 0.9rem;
        padding: 10px;

    }
}



/* ==============================
   🗣 Client / Testimonials Section
   ============================== */
.client_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .client_section .heading_container h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 60px;
        position: relative;
    }

        .client_section .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* Container for testimonials */
.client_container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

    /* Single testimonial box */
    .testimonials-grid .item .box {
        background-color: #fff;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }

        .testimonials-grid .item .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

    /* Image */
    .testimonials-grid .item .img-box {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

        .testimonials-grid .item .img-box img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

    /* Details */
    .testimonials-grid .item .detail-box h3 {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .testimonials-grid .item .detail-box p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Quote icon */
    .testimonials-grid .item .detail-box .quote-icon {
        width: 30px;
        opacity: 0.2;
        position: absolute;
        bottom: 15px;
        left: 15px;
    }

/* Responsive */
@media (max-width: 768px) {
    .client_section {
        padding: 70px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ==============================
   📞 Contact Section
   ============================== */
.contact_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .contact_section .heading_container h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 60px;
        position: relative;
    }

        .contact_section .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* Contact form */
.contact_form {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .contact_form:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .contact_form h4 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
    }

    /* Inputs */
    .contact_form .form-control {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .contact_form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
            outline: none;
        }

    /* Button */
    .contact_form .btn-success {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: #25D366;
        color: #fff;
        font-weight: bold;
        padding: 12px 25px;
        border-radius: 30px;
        border: none;
        width: 100%;
        transition: all 0.3s ease;
    }

        .contact_form .btn-success:hover {
            background-color: #128C7E;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

/* Image box */
.contact_section .img-box {
    text-align: center;
}

    .contact_section .img-box img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

        .contact_section .img-box img:hover {
            transform: translateY(-5px);
        }

/* Responsive */
@media (max-width: 768px) {
    .contact_section {
        padding: 70px 15px;
    }

        .contact_section .row {
            flex-direction: column-reverse;
            text-align: center;
        }

    .contact_form {
        margin-bottom: 40px;
    }
}


/* ==============================
   🌟 Why Choose Us Section
   ============================== */
.why_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

    .why_section .heading_container {
        text-align: center;
        margin-bottom: 60px;
    }

        .why_section .heading_container h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }

            .why_section .heading_container h2::after {
                content: '';
                display: block;
                width: 60px;
                height: 4px;
                background: var(--accent-color);
                margin: 10px auto 0;
                border-radius: 2px;
            }

/* Features / Boxes */
.why_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

    .why_container .box {
        background-color: #fff;
        text-align: center;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

        .why_container .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

    /* Images with hover effect */
    .why_container .img-box {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

        .why_container .img-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
        }

        .why_container .img-box .img-1 {
            opacity: 1;
        }

        .why_container .img-box .img-2 {
            opacity: 0;
        }

    .why_container .box:hover .img-box .img-1 {
        opacity: 0;
    }

    .why_container .box:hover .img-box .img-2 {
        opacity: 1;
    }

    /* Text */
    .why_container .detail-box h5 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .why_container .detail-box p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 768px) {
    .why_section {
        padding: 70px 15px;
    }

    .why_container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .why_container .box {
            padding: 25px 15px;
        }
}


/* ==============================
   📰 Info / Newsletter Section
   ============================== */
.info_section {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

    .info_section .box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }

    .info_section .info_form {
        flex: 1 1 300px;
        max-width: 400px;
    }

        .info_section .info_form h4 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: var(--accent-color);
        }

        .info_section .info_form input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            margin-bottom: 15px;
            font-size: 1rem;
            outline: none;
        }

            .info_section .info_form input[type="text"]:focus {
                box-shadow: 0 0 0 3px rgba(241, 143, 1, 0.3);
            }

        .info_section .info_form button {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 25px;
            color: white;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .info_section .info_form button:hover {
                background-color: #f18f01cc;
                transform: scale(1.05);
            }

    /* Links */
    .info_section .info_links {
        flex: 1 1 200px;
        max-width: 250px;
    }

        .info_section .info_links ul {
            list-style: none;
            padding: 0;
        }

            .info_section .info_links ul li {
                margin-bottom: 12px;
            }

                .info_section .info_links ul li a {
                    color: rgba(255,255,255,0.8);
                    text-decoration: none;
                    transition: all 0.3s ease;
                }

                    .info_section .info_links ul li a:hover {
                        color: var(--accent-color);
                        padding-right: 5px;
                    }

    /* Social Icons */
    .info_section .info_social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

        .info_section .info_social a img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

            .info_section .info_social a img:hover {
                transform: scale(1.2);
                opacity: 0.8;
            }

/* Responsive */
@media (max-width: 768px) {
    .info_section .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info_section .info_form,
    .info_section .info_links {
        max-width: 100%;
    }

    .info_section .info_social {
        justify-content: center;
    }
}


/* ==============================
   🏁 Footer Section
   ============================== */
.footer_section {
    background-color: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

    .footer_section a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }

        .footer_section a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

    .footer_section p {
        text-align: center;
        margin: 0;
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer_section {
        padding: 30px 15px;
        font-size: 0.95rem;
    }
}

/* ==============================
   Taxi Kuwait - style.css
   Clean | Responsive | Optimized
   ============================== */

/* 🎨 Variables */
:root {
    --primary-color: #2E86AB;
    --secondary-color: #A23B72;
    --accent-color: #F18F01;
    --dark-color: #2B2D42;
    --light-color: #F8F9FA;
    --gray-color: #6c757d;
    --transition: all 0.3s ease;
}

/* 🧱 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* إعداد عام للهيدر */
.header_section {
    background-color: #111;
    color: #fff;
    padding: 10px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    /* تنسيق الحاوية */
    .header_section .container-fluid {
        padding: 0 30px;
    }

/* شعار الموقع */
.navbar-brand span {
    color: #fdd835;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

    .navbar-brand span:hover {
        color: #fff;
    }

/* القائمة */
.custom_nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-nav .nav-item {
        margin: 0 10px;
    }

    .navbar-nav .nav-link {
        color: #ddd;
        font-size: 18px;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 6px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .navbar-nav .nav-link:hover {
            background-color: #fdd835;
            color: #111;
        }

        /* العنصر النشط */
        .navbar-nav .nav-link.active {
            background-color: #fdd835;
            color: #111;
            font-weight: bold;
        }

/* زر القائمة في الجوال */
.navbar-toggler {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
}

    .navbar-toggler:focus {
        outline: none;
    }

/* استجابة الهواتف */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #111;
        padding: 15px;
        border-radius: 8px;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        display: block;
        text-align: center;
    }
}

/* ==============================
   🏠 Hero / Slider Section
   ============================== */
.slider_section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, #2E86AB, #A23B72);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 50px 20px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .slider_section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

    .slider_section .box {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
    }

/* النصوص والصورة */
.detail-box {
    flex: 1;
    min-width: 300px;
    color: #3a0b0b;
    animation: fadeIn 1.5s ease-in-out;
}

    .detail-box h4 {
        font-size: 1.5rem;
        color: #ffd54f;
        margin-bottom: 10px;
    }

    .detail-box h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

.img-box img {
    max-width: 100%;
    height: auto;
    animation: fadeIn 1.5s ease-in-out;
}

/* ==============================
   📋 Slider Form
   ============================== */
.slider_form {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 25px;
    color: #fff;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.8s ease-in-out;
}

    .slider_form h4 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #FFD54F;
        margin-bottom: 20px;
    }

    .slider_form input,
    .slider_form select {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        color: #333;
        outline: none;
        transition: box-shadow 0.3s ease;
    }

        .slider_form input:focus {
            box-shadow: 0 0 6px #FFD54F;
        }

    /* زر الحجز */
    .slider_form button {
        width: 100%;
        background: #FFD54F;
        color: #111;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 12px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

        .slider_form button:hover {
            background: #FFEE58;
            transform: scale(1.03);
        }

/* ==============================
   🚖 Buttons
   ============================== */
.booking-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-book,
.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFD54F;
    color: #111;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

    .btn-book:hover,
    .btn-whatsapp:hover,
    .btn-call:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-call {
    background-color: #007BFF;
    color: #fff;
}

/* ✨ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
    .slider_section {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

        .slider_section .box {
            flex-direction: column;
        }

    .slider_form {
        margin-top: 25px;
    }
}


/* ==============================
   👥 About Section
   ============================== */
.about_section {
    background-color: #2c2c2c;
    color: #fff; 
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .about_section .detail-box {
        background-color: #f9f9f9;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        animation: fadeInRight 1s ease-in-out;
    }

        .about_section .detail-box h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 20px;
            position: relative;
        }

            .about_section .detail-box h2::after {
                content: '';
                position: absolute;
                bottom: -10px;
                right: 0;
                width: 60px;
                height: 4px;
                background-color: #FFD54F;
                border-radius: 2px;
            }

        .about_section .detail-box p {
            color: #444;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .about_section .detail-box a {
            display: inline-block;
            padding: 12px 30px;
            background-color: #FFD54F;
            color: #000;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease-in-out;
        }

            .about_section .detail-box a:hover {
                background-color: #ffea00;
                transform: translateY(-3px);
            }

    /* الصورة */
    .about_section .img-box {
        position: relative;
        text-align: center;
        animation: fadeInLeft 1s ease-in-out;
    }

        .about_section .img-box img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }

            .about_section .img-box img:hover {
                transform: scale(1.03);
            }

/* ✨ Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .about_section {
        padding: 70px 20px;
    }

        .about_section .detail-box {
            margin-bottom: 30px;
            text-align: center;
        }

            .about_section .detail-box h2 {
                font-size: 2rem;
            }
}


/* ==============================
   🧩 Service Section
   ============================== */


.service_section {
    background-color: var(--light-color);
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* العنوان الرئيسي */
.heading_container {
    text-align: center;
    margin-bottom: 60px;
}

    .heading_container h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        font-weight: bold;
        position: relative;
        display: inline-block;
    }

        .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* 🧱 صناديق الخدمات */
.service_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

    .service_container .box {
        background-color: #fafafa;
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: var(--transition);
        border-top: 5px solid transparent;
    }

        .service_container .box:hover {
            transform: translateY(-8px);
            border-top: 5px solid var(--accent-color);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            background: linear-gradient(180deg, #fff, #f9f9f9);
        }

        .service_container .box img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            transition: transform 0.3s ease-in-out;
        }

        .service_container .box:hover img {
            transform: scale(1.1);
        }

        .service_container .box h4 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .service_container .box p {
            color: var(--gray-color);
            font-size: 1rem;
            line-height: 1.6;
        }

/* ✨ تأثير دخول ناعم */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_container .box {
    animation: fadeUp 1s ease forwards;
}

/* 📱 استجابة الجوال */
@media (max-width: 768px) {
    .service_section {
        padding: 70px 0;
    }

    .heading_container h2 {
        font-size: 2rem;
    }

    .service_container {
        gap: 25px;
        padding: 0 20px;
    }

        .service_container .box {
            padding: 20px;
        }
}
/* ==============================
   📞 CTA Buttons Section
   ============================== */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}
.btn-whatsapp, .btn-call {
    position: relative; /* أو z-index أعلى */
    z-index: 10;
}
    /* ==============================
   📱 Responsive Design
   ============================== */
    @media (max-width: 991px) {
        .slider_section h1 {
            font-size: 2.5rem;
        }

        .heading_container h2 {
            font-size: 2.2rem;
        }

        .service_section {
            padding: 80px 0;
        }
    }

    @media (max-width: 768px) {
        .slider_section {
            height: auto;
            padding: 80px 20px;
        }

            .slider_section h1 {
                font-size: 2rem;
            }

            .slider_section p {
                font-size: 1rem;
            }

        .service_container {
            grid-template-columns: 1fr;
            padding: 0 20px;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .btn-whatsapp,
        .btn-call {
            width: 100%;
            max-width: 250px;
        }
    }

    @media (max-width: 480px) {
        .slider_section h1 {
            font-size: 1.7rem;
        }

        .btn-book, .btn-whatsapp, .btn-call {
            font-size: 0.9rem;
            padding: 10px;
        }
    }
    /* ==============================
   🗣 Client / Testimonials Section
   ============================== */
    .client_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .client_section .heading_container h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 60px;
        position: relative;
    }

        .client_section .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* Container for testimonials */
.client_container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

    /* Single testimonial box */
    .testimonials-grid .item .box {
        background-color: #fff;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }

        .testimonials-grid .item .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

    /* Image */
    .testimonials-grid .item .img-box {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

        .testimonials-grid .item .img-box img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

    /* Details */
    .testimonials-grid .item .detail-box h3 {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .testimonials-grid .item .detail-box p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Quote icon */
    .testimonials-grid .item .detail-box .quote-icon {
        width: 30px;
        opacity: 0.2;
        position: absolute;
        bottom: 15px;
        left: 15px;
    }

/* Responsive */
@media (max-width: 768px) {
    .client_section {
        padding: 70px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ==============================
   📞 Contact Section
   ============================== */
.contact_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

    .contact_section .heading_container h2 {
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 60px;
        position: relative;
    }

        .contact_section .heading_container h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* Contact form */
.contact_form {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .contact_form:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .contact_form h4 {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
    }

    /* Inputs */
    .contact_form .form-control {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 15px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .contact_form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
            outline: none;
        }

    /* Button */
    .contact_form .btn-success {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: #25D366;
        color: #fff;
        font-weight: bold;
        padding: 12px 25px;
        border-radius: 30px;
        border: none;
        width: 100%;
        transition: all 0.3s ease;
    }

        .contact_form .btn-success:hover {
            background-color: #128C7E;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

/* Image box */
.contact_section .img-box {
    text-align: center;
}

    .contact_section .img-box img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

        .contact_section .img-box img:hover {
            transform: translateY(-5px);
        }

/* Responsive */
@media (max-width: 768px) {
    .contact_section {
        padding: 70px 15px;
    }

        .contact_section .row {
            flex-direction: column-reverse;
            text-align: center;
        }

    .contact_form {
        margin-bottom: 40px;
    }
}


/* ==============================
   🌟 Why Choose Us Section
   ============================== */
.why_section {
    background-color: #f8f9fa;
    padding: 100px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

    .why_section .heading_container {
        text-align: center;
        margin-bottom: 60px;
    }

        .why_section .heading_container h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }

            .why_section .heading_container h2::after {
                content: '';
                display: block;
                width: 60px;
                height: 4px;
                background: var(--accent-color);
                margin: 10px auto 0;
                border-radius: 2px;
            }

/* Features / Boxes */
.why_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

    .why_container .box {
        background-color: #fff;
        text-align: center;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

        .why_container .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

    /* Images with hover effect */
    .why_container .img-box {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

        .why_container .img-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
        }

        .why_container .img-box .img-1 {
            opacity: 1;
        }

        .why_container .img-box .img-2 {
            opacity: 0;
        }

    .why_container .box:hover .img-box .img-1 {
        opacity: 0;
    }

    .why_container .box:hover .img-box .img-2 {
        opacity: 1;
    }

    /* Text */
    .why_container .detail-box h5 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .why_container .detail-box p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 768px) {
    .why_section {
        padding: 70px 15px;
    }

    .why_container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .why_container .box {
            padding: 25px 15px;
        }
}


/* ==============================
   📰 Info / Newsletter Section
   ============================== */
.info_section {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

    .info_section .box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }

    .info_section .info_form {
        flex: 1 1 300px;
        max-width: 400px;
    }

        .info_section .info_form h4 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: var(--accent-color);
        }

        .info_section .info_form input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            margin-bottom: 15px;
            font-size: 1rem;
            outline: none;
        }

            .info_section .info_form input[type="text"]:focus {
                box-shadow: 0 0 0 3px rgba(241, 143, 1, 0.3);
            }

        .info_section .info_form button {
            background-color: var(--accent-color);
            border: none;
            padding: 12px 25px;
            color: white;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .info_section .info_form button:hover {
                background-color: #f18f01cc;
                transform: scale(1.05);
            }

    /* Links */
    .info_section .info_links {
        flex: 1 1 200px;
        max-width: 250px;
    }

        .info_section .info_links ul {
            list-style: none;
            padding: 0;
        }

            .info_section .info_links ul li {
                margin-bottom: 12px;
            }

                .info_section .info_links ul li a {
                    color: rgba(255,255,255,0.8);
                    text-decoration: none;
                    transition: all 0.3s ease;
                }

                    .info_section .info_links ul li a:hover {
                        color: var(--accent-color);
                        padding-right: 5px;
                    }

    /* Social Icons */
    .info_section .info_social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

        .info_section .info_social a img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

            .info_section .info_social a img:hover {
                transform: scale(1.2);
                opacity: 0.8;
            }

/* Responsive */
@media (max-width: 768px) {
    .info_section .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info_section .info_form,
    .info_section .info_links {
        max-width: 100%;
    }

    .info_section .info_social {
        justify-content: center;
    }
}


/* ==============================
   🏁 Footer Section
   ============================== */
.footer_section {
    background-color: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .footer_section a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }

        .footer_section a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

    .footer_section p {
        margin: 0;
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer_section {
        padding: 30px 15px;
        font-size: 0.95rem;
    }
}

/* ==============================
   🚀 Floating Buttons - Mobile Only
   ============================== */
.floating-buttons {
    display: none; /* افتراضيًا مخفي على الديسكتوب */
}

@media (max-width: 768px) {
    .floating-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: fixed;
        bottom: 20px;
        width: 100%;
        pointer-events: none; /* السماح بالنقر فقط على الأزرار */
    }

        /* زر اليسار */
        .floating-buttons .call-button {
            position: fixed;
            left: 15px;
            bottom: 20px;
            pointer-events: auto;
        }

        /* زر اليمين */
        .floating-buttons .whatsapp-button {
            position: fixed;
            right: 15px;
            bottom: 20px;
            pointer-events: auto;
        }

        .floating-buttons a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

            .floating-buttons a:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            }

    .call-button {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .whatsapp-button {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
}


.area-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-form {
    border: 2px solid #007bff;
}

.features-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.contact-card {
    border-right: 4px solid #28a745;
}

.accordion-button {
    border: none;
    box-shadow: none;
    background-color: #f8f9fa; 
    color: #212529;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    
    .accordion-button:focus {
        box-shadow: none;
        outline: none;
    }

    
    .accordion-button:not(.collapsed) {
        background-color: #e9ecef;
        color: #007bff;
    }

.accordion-body {
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-collapse {
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 0 0 0.5rem 0.5rem;
    margin-bottom: 0.5rem;
}

.accordion-button::after {
    margin-left: auto;
    margin-right: 0;
    font-size: 1.2rem;
}

.accordion-item + .accordion-item {
    margin-top: 0.75rem;
}


/* ✨ قسم المناطق */
.areas-section {
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f6f8 100%);
    padding: 80px 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

/* 🟩 بطاقة المنطقة */
.area-card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 💡 عند المرور */
.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* 🌈 شريط زخرفي علوي */
.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD54F, #FFB300);
    transition: height 0.3s ease;
}

.area-card:hover::before {
    height: 100%;
    opacity: 0.07;
}

/* 🏙️ العنوان */
.area-card h3 {
    color: #0056b3;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

/* 📍الوصف */
.area-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    z-index: 2;
    position: relative;
}

/* 🧱 المسافات بين البطاقات */
.row.g-4 {
    row-gap: 25px !important;
}

/* 📱 تجاوب */
@media (max-width: 992px) {
    .areas-section {
        padding: 60px 20px;
    }

    .area-card {
        margin-bottom: 20px;
    }
}

