/* =========================================
   1. المتغيرات والإعدادات العامة
   ========================================= */
:root {
    --primary-color: #091b8b;
    --secondary-color: #e7eaff;
    --text-color: #000000;
    --heading-font: "Cairo", sans-serif;
    --body-font: "Tajawal", sans-serif;
    --primary-light: #eaf9f7;
    --dark-text: #343a40;
    --light-text: #6c757d;
    --text-grey: #000000;
    --star-color: #ffc107;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); }
a { text-decoration: none; }
.text-end { text-align: right !important; }

/* =========================================
   2. الهيدر (Navbar)
   ========================================= */
.navbar-area {
    background-color: #f9f9f9;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    font-weight: 700;
}
.omnite-btn {
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
}
.omnite-btn-primary {
    background-color: var(--primary-color);
    color: white !important;
}
.omnite-btn-primary:hover {
    background-color: #061470;
    transform: translateY(-2px);
}
.omnite-btn-secondary {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: #c3c4cd;
}
.omnite-btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.navbar-brand img { max-height: 25px; }

/* Mobile Menu Specific Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed; /* لتغطية الشاشة بالكامل */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95); /* خلفية بيضاء شبه شفافة */
        display: flex; /* لترتيب المحتوى في المنتصف أو بداية الشاشة */
        flex-direction: column; /* لجعل العناصر تحت بعضها */
        justify-content: center; /* لوسطنة المحتوى عمودياً */
        align-items: center; /* لوسطنة المحتوى أفقياً */
        padding: 20px;
        z-index: 1000; /* أعلى من الـ navbar-area */
        transform: translateX(100%); /* لإخفاء القائمة خارج الشاشة */
        transition: transform 0.3s ease-in-out; /* حركة سلاسة عند الظهور والاختفاء */
    }

    .navbar-collapse.show {
        transform: translateX(0); /* لإظهار القائمة */
    }

    .navbar-nav {
        width: 100%; /* لجعل القائمة تأخذ عرض الشاشة بالكامل */
        text-align: center; /* لوسطنة النصوص داخل القائمة */
        margin-bottom: 30px !important; /* مسافة بين الروابط والأزرار */
    }

    .navbar-nav .nav-item {
        margin-bottom: 15px; /* مسافة بين كل رابط وآخر */
    }

    .navbar-nav .nav-link {
        display: block; /* لجعل كل رابط يأخذ سطر كامل */
        width: 80%; /* تحديد عرض الروابط */
        margin: 0 auto; /* لوسطنة الروابط */
        padding: 12px 20px !important; /* زيادة حجم الروابط لتسهيل الضغط */
        font-size: 18px; /* تكبير حجم الخط */
    }

    .mobile-btns {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px; /* مسافة بين الأزرار */
    }

    .mobile-btns .omnite-btn {
        width: 80%;
        margin: 0 auto;
        font-size: 16px;
        padding: 12px 20px;
    }

    /* إخفاء الأزرار الموجودة في الديسكتوب داخل الموبايل */
    .d-lg-flex.d-none {
        display: none !important;
    }

    /* إخفاء زر التوجل عند فتح القائمة لجعل الخلفية الشفافة هي المسيطرة */
    /* ولكن الأفضل هو وضع زر إغلاق داخل القائمة نفسها */
    /* .navbar-toggler:not(.collapsed) {
        visibility: hidden;
    } */

    /* لتصميم زر الإغلاق داخل القائمة */
    .navbar-collapse .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        z-index: 1001;
    }
}

/* =========================================
   3. Hero Section
   ========================================= */
.omnite-hero-section {
    font-family: 'Tajawal', sans-serif;
    padding: 80px 0;
    background-color: #f9f9f9;
    direction: rtl;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 10;
    margin-top: -2px;
}
.omnite-hero-section .hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.omnite-hero-section .hero-text-content { flex: 4; text-align: right; }
.omnite-hero-section .hero-headline {
    font-size: 40px; font-weight: 600; color: #000; line-height: 1.4; margin: 45px 0;
}
.omnite-hero-section .features-list {
    list-style: none; padding: 0; margin: 0 0 35px 0; display: flex; flex-wrap: wrap; gap: 15px 25px; font-size: 16px; color: #4a5568;
}
.omnite-hero-section .features-list li { display: flex; align-items: center; gap: 8px; color: #000000; }
.omnite-hero-section .features-list svg { width: 20px; height: 20px; fill: var(--primary-color); }
.omnite-hero-section .cta-buttons { display: flex; gap: 15px; margin-bottom: 40px; }
.omnite-hero-section .cta-button {
    padding: 14px 30px; border-radius: 25px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.2s ease; border: 2px solid transparent;
}
.omnite-hero-section .btn-primary { background-color: #091b8b; color: white; }
.omnite-hero-section .btn-secondary { background-color: transparent; color: var(--primary-color); border-color: #c3c4cd; }
.omnite-hero-section .hero-visual-content { flex: 1.2; }
.omnite-hero-section .video-wrapper {
    display: block; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(2, 89, 89, 0.15); border: 8px solid white;
}
.omnite-hero-section .video-wrapper video { width: 100%; height: 100%; display: block; }

/* Hero Responsive */
@media (max-width: 992px) {
    .omnite-hero-section .hero-grid { flex-direction: column; }
    .omnite-hero-section .hero-text-content { text-align: center; margin-bottom: 40px; }
    .omnite-hero-section .features-list, .omnite-hero-section .cta-buttons { justify-content: center; }
}
@media (max-width: 576px) {
    .omnite-hero-section { padding: 40px 20px; }
    .omnite-hero-section .hero-headline { font-size: 24px; margin: 30px 0; }
    .omnite-hero-section .features-list { flex-direction: row; gap: 10px; font-size: 14px; }
    .omnite-hero-section .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .omnite-hero-section .cta-button { width: 100%; max-width: 300px; text-align: center; }
}

/* =========================================
   4. Features Section
   ========================================= */
.my-features-section-v1 {
    font-family: 'Tajawal', sans-serif; background-color: #fff; padding: 80px 20px; text-align: center; direction: rtl;
}
.my-features-section-v1 .main-title { font-size: 42px; font-weight: 800; color: #000; margin-top: 0; margin-bottom: 15px; }
.my-features-section-v1 .main-title span { color: var(--primary-color); }
.my-features-section-v1 .features-desc {
    font-size: 16px; font-weight: 500; color: #000000; margin: 0 auto 60px; max-width: 670px; line-height: 1.4;
}
.my-features-section-v1 .features-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 60px; }
.my-features-section-v1 .feature-item { flex-basis: 260px; display: flex; flex-direction: column; align-items: center; padding: 10px; }
.my-features-section-v1 .feature-icon-wrapper {
    width: 90px; height: 90px; border-radius: 50%; background-color: #f6f7ff; border: 1px solid #d1d2db; display: flex; justify-content: center; align-items: center; margin-bottom: 25px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.my-features-section-v1 .feature-item:hover .feature-icon-wrapper { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(45, 189, 168, 0.15); }
.my-features-section-v1 .feature-icon-wrapper svg { width: 45px; height: 45px; color: var(--primary-color); }
.my-features-section-v1 .feature-item h3 { font-size: 20px; font-weight: 700; color: var(--dark-text); margin-top: 0; margin-bottom: 10px; }
.my-features-section-v1 .feature-item p { font-size: 15px; color: var(--light-text); line-height: 1.6; margin: 0; }
.my-features-section-v1 .action-buttons { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; }
.my-features-section-v1 .btn {
    padding: 12px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; border: 2px solid transparent;
}
.my-features-section-v1 .btn-primary { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.my-features-section-v1 .btn-primary:hover { background-color: #061470; transform: translateY(-3px); }
.my-features-section-v1 .btn-secondary { background-color: #fff; color: var(--dark-text); border: 2px solid #dee2e6; }
.my-features-section-v1 .btn-secondary:hover { background-color: #f8f9fa; transform: translateY(-3px); }

/* Features Responsive */
@media (max-width: 992px) { .my-features-section-v1 .feature-item { flex-basis: calc(50% - 30px); } }
@media (max-width: 768px) {
    .my-features-section-v1 .main-title { font-size: 32px; }
    .my-features-section-v1 .feature-item { flex-basis: 100%; }
    .my-features-section-v1 .action-buttons { flex-direction: column; gap: 10px; }
    .my-features-section-v1 .btn { width: 100%; max-width: 320px; }
}

/* =========================================
   5. Steps Component
   ========================================= */
.omnite-steps-component {
    font-family: 'Tajawal', sans-serif; background-color: #fff; direction: rtl; padding: 80px 20px; text-align: center; overflow: hidden;
}
.omnite-steps-component .container { max-width: 1140px; margin: 0 auto; }
.omnite-steps-component .section-header h1 { color: var(--primary-color); font-size: 38px; font-weight: 800; margin: 0 0 15px 0; }
.omnite-steps-component .section-header p { color: #555; font-size: 17px; line-height: 1.7; max-width: 600px; margin: 0 auto 50px auto; }
.omnite-steps-component .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.omnite-steps-component .step-card { padding: 20px; }
.omnite-steps-component .step-card .icon-wrapper {
    width: 80px; height: 80px; background-color: #f6f7ff; border-radius: 50%; margin: 0 auto 25px auto; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.omnite-steps-component .step-card:hover .icon-wrapper { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(2, 137, 123, 0.15); }
.omnite-steps-component .step-card .icon-wrapper svg { width: 40px; height: 40px; fill: var(--primary-color); }
.omnite-steps-component .step-card h3 { color: var(--primary-color); font-size: 22px; font-weight: 700; margin: 0 0 10px 0; }
.omnite-steps-component .step-card p { color: #555; font-size: 16px; line-height: 1.8; margin: 0; }
.omnite-steps-component .action-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.omnite-steps-component .btn { padding: 12px 30px; border-radius: 25px; font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; border: 2px solid transparent; transition: all 0.3s ease; }
.omnite-steps-component .btn-primary { background-color: var(--primary-color); color: #fff; }
.omnite-steps-component .btn-primary:hover { background-color: #061470; transform: translateY(-2px); }
.omnite-steps-component .btn-secondary { background-color: #fff; color: #343a40; border-color: #dee2e6; }
.omnite-steps-component .btn-secondary:hover { background-color: var(--secondary-color); transform: translateY(-2px); }

@media (max-width: 992px) { .omnite-steps-component .steps-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 576px) { .omnite-steps-component .action-buttons { flex-direction: column; align-items: center; } .omnite-steps-component .btn { width: 100%; max-width: 320px; justify-content: center; } 
    .omnite-steps-component .section-header h1 { font-size: 28px; }
}

/* =========================================
   6. Pricing Section
   ========================================= */
  /* --- تنسيق زر التبديل (Switch) --- */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            background: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #eee;
        }
        .toggle-label {
            font-weight: 700;
            font-size: 16px;
            color: #999;
            cursor: pointer;
            transition: 0.3s;
        }
        .toggle-label.active {
            color: var(--primary-color);
        }
        .switch {
            position: relative;
            display: inline-block;
            width: 55px;
            height: 28px;
            margin: 0;
        }
        .switch input { opacity: 0; width: 0; height: 0; }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider { background-color: var(--primary-color); }
        input:checked + .slider:before { transform: translateX(26px); }
        
        /* شارة التوفير */
        .save-badge {
            background-color: #ffe4e4;
            color: #d63384;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 10px;
            margin-right: 5px;
            vertical-align: middle;
        }

        /* --- تنسيق بطاقات الأسعار --- */
        .single-price {
            background-color: #fff;
            border: 1px solid #eaeaea;
            border-radius: 16px;
            padding: 40px 25px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden; /* مهم لشريط الأكثر طلباً */
        }

        .single-price:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .single-price.active {
            border: 2px solid var(--primary-color);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
            transform: scale(1.02);
            z-index: 2;
        }

        /* شريط الأكثر طلباً */
        .popular-badge {
            position: absolute;
            top: 25px;
            left: -35px; /* تم التعديل ليتناسب مع RTL */
            background: var(--primary-color);
            color: white;
            padding: 5px 40px;
            transform: rotate(-45deg);
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .plan-icon {
            width: 70px;
            height: 70px;
            background-color: #f0f4ff;
            border-radius: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            color: var(--primary-color);
            margin: 0 auto 20px;
            transition: 0.3s;
        }

        .single-price.active .plan-icon {
            background-color: var(--primary-color);
            color: #fff;
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }

        .price-value h3 {
            font-size: 36px;
            color: var(--text-dark);
            margin-bottom: 0;
            font-weight: 800;
        }
        .price-value sub {
            font-size: 14px;
            color: #888;
            font-weight: normal;
        }

        /* قائمة المميزات */
        .single-price-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
            text-align: right;
            flex-grow: 1; /* يجعل الزر ينزل للأسفل دائماً */
        }

        .single-price-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 15px;
            color: #555;
        }

        .check-icon {
            color: var(--primary-color);
            margin-left: 12px;
            font-size: 20px;
            background: #f0f4ff;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .single-price.active .check-icon {
            background: var(--primary-color);
            color: #fff;
        }

        /* الزر */
        .cmn-btn {
            display: block;
            width: 100%;
            padding: 14px;
            text-align: center;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            transition: 0.3s;
            text-decoration: none;
            margin-top: 25px;
        }

        .single-price.active .cmn-btn, .cmn-btn:hover {
            background-color: var(--primary-color);
            color: #ffffff !important;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.25);
        }

        /* صندوق الملاحظات */
        .note-box {
            font-size: 12px;
            padding: 10px;
            border-radius: 8px;
            margin-top: 15px;
            border: 1px dashed #ccc;
            background: #f9f9f9;
        }
        .note-box.pro-note {
            background: #eef2ff;
            border: 1px solid #dae2ff;
            color: var(--primary-color);
        }

        /* حالة الميزة غير المفعلة */
        .disabled-feature {
            opacity: 0.5;
        }
        .disabled-feature .check-icon {
            background: #eee !important;
            color: #bbb !important;
        }
        .disabled-feature span {
            text-decoration: line-through;
        }
/* =========================================
   7. FAQ Section
   ========================================= */
.faq-section-component-v2 { font-family: 'Tajawal', sans-serif; padding: 80px 20px; background-color: #ffffff; direction: rtl; overflow: hidden; }
.faq-section-component-v2 .faq-grid { display: flex; align-items: start; gap: 60px; max-width: 1200px; margin: 0 auto; }
.faq-section-component-v2 .faq-content-side { flex: 1.5; }
.faq-section-component-v2 .faq-item { background-color: #fff; border: 1px solid #c3c4cd; border-radius: 12px; margin-bottom: 15px; transition: box-shadow 0.3s ease; }
.faq-section-component-v2 .faq-item:hover { box-shadow: 0 5px 20px rgba(2, 89, 89, 0.05); }
.faq-section-component-v2 .faq-title {
    font-size: 16px; font-weight: 700; color: #000000; padding: 10px 25px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-section-component-v2 .faq-title::-webkit-details-marker { display: none; }
.faq-section-component-v2 .faq-title::after { content: '+'; font-size: 24px; font-weight: 300; color: #091b8b; transition: transform 0.2s ease, color 0.2s ease; }
.faq-section-component-v2 .faq-item[open]>.faq-title::after { content: '−'; color: var(--primary-color); transform: rotate(180deg); }
.faq-section-component-v2 .faq-panel { padding: 0 25px 20px 25px; font-size: 15px; color: #000; line-height: 1.8; }
.faq-section-component-v2 .faq-info-block { flex: 1; text-align: right; padding-top: 10px; }
.faq-section-component-v2 .faq-info-block h2 { font-size: 30px; font-weight: 800; color: var(--primary-color); margin: 0 0 15px 0; }
.faq-section-component-v2 .faq-contact-btn {
    display: inline-block; text-decoration: none; color: var(--primary-color); border: 2px solid #c3c4cd; padding: 12px 30px; border-radius: 50px; font-weight: 700; transition: all 0.3s ease;
}
.faq-section-component-v2 .faq-contact-btn:hover { background-color: var(--secondary-color); border-color: var(--secondary-color); }
@media (max-width: 992px) { .faq-section-component-v2 .faq-grid { flex-direction: column; } .faq-section-component-v2 .faq-info-block { text-align: center; margin-bottom: 40px; } }

/* =========================================
   8. CTA Section
   ========================================= */
.salla-pro-cta-container {
    font-family: 'Tajawal', sans-serif; background-color: #f9f9f9; padding: 40px 60px; border-radius: 18px; direction: rtl; max-width: 1320px; margin: 40px auto;
}
.salla-pro-cta-container .cta-content-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.salla-pro-cta-container .cta-text { flex: 1; text-align: right; }
.salla-pro-cta-container .cta-text h2 { font-size: 28px; font-weight: 700; color: var(--primary-color); margin: 0 0 10px 0; }
.salla-pro-cta-container .cta-text p { font-size: 16px; color: #000; margin: 0; line-height: 1.7; max-width: 450px; }
.salla-pro-cta-container .cta-button {
    display: inline-block; background-color: var(--primary-color); color: white; padding: 14px 35px; border-radius: 25px; text-decoration: none; font-weight: 700; font-size: 16px; white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 4px 15px rgba(2, 89, 89, 0.2);
}
.salla-pro-cta-container .cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(2, 89, 89, 0.3); }
@media (max-width: 768px) { .salla-pro-cta-container .cta-content-wrapper { flex-direction: column; text-align: center; gap: 25px; } .salla-pro-cta-container .cta-text { text-align: center; } }

/* =========================================
   9. Footer Section
   ========================================= */
.new-footer-area { background-color: #ffffff; color: #333; font-size: 16px; }
.footer-contact-bar { background-color: #f9f9f9; padding: 20px 0; border-bottom: 1px solid #e9e9e9; }
.footer-contact-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.support-title-right { font-size: 18px; font-weight: 700; color: #091b8b; }
.contact-items-group { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.contact-item .icon { font-size: 24px; color: #3e3e3e; }
.contact-item .details { text-align: right; }
.contact-item .details .title { font-size: 14px; color: #091b8b; margin-bottom: 2px; text-transform: uppercase; font-weight: 600; }
.contact-item .details .info { font-size: 16px; font-weight: 500; color: #333; }
.contact-item .details .info a { color: #333; text-decoration: none; }

.footer-main-links { padding: 60px 0; background-color: #F9F9F9; }
.footer-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.footer-widget .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #091b8b; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget ul li a { color: #000000; text-decoration: none; transition: color 0.3s; }
.footer-widget ul li a:hover { color: #091b8b; }

.footer-social-area { padding: 30px 0; border-top: 1px solid #e9e9e9; background-color: #F9F9F9; }
.footer-social-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.connect-us { text-align: center; }
.connect-us .connect-title { font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 15px; }
.social-icons { display: flex; gap: 10px; justify-content: flex-start; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: #091b8b; color: #ffffff; font-size: 18px; text-decoration: none; transition: transform 0.3s; }
.social-icons a:hover { transform: translateY(-3px); }
.footer-logo .logo-wrapper .logo img { max-height: 25px; width: auto; }

.footer-copyright-area { padding: 20px 0; background-color: #ffffff; }
.copyright-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 14px; color: #666; }
.copyright-text, .footer-location { flex-grow: 1; }
.footer-location { text-align: left; }

/* Footer Mobile */
@media (max-width: 767px) {
    .footer-contact-container, .footer-social-container { flex-direction: column; justify-content: center; gap: 25px; }
    .contact-items-group, .social-icons { justify-content: center; }
    .footer-main-links { padding: 40px 0 20px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 0px; }
    .footer-widget { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }
    .footer-widget:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .footer-widget .widget-title { margin-bottom: 0; cursor: pointer; position: relative; display: flex; justify-content: space-between; align-items: center; }
    .footer-widget .widget-title::after { content: '\2b'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 16px; transition: transform 0.3s ease; }
    .footer-widget .widget-title.active::after { content: '\f068'; transform: rotate(180deg); }
    .footer-widget ul { display: none; padding-top: 15px; }
    .copyright-container { flex-direction: column; text-align: center; }
    .footer-location { text-align: center; }
}

/* =========================================
   10. Floating Buttons (WhatsApp + Back to top)
   ========================================= */
.whatsapp-float {
    position: fixed; width: 50px; height: 50px; bottom: 90px; left: 29px; background-color: #25d366; border-radius: 50%; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; animation: pulse 2s infinite;
}
.whatsapp-float img { width: 32px; height: 32px; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.whatsapp-badge {
    position: absolute; top: -5px; right: -5px; background: red; color: white; font-size: 13px; font-weight: bold; padding: 0px 7px; border-radius: 50%; box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); width: 20px; height: 20px;
}
@media (max-width: 768px) {
    .whatsapp-float { width: 45px; height: 45px; bottom: 90px; left: 32px; }
    .whatsapp-float img { width: 26px; height: 26px; }
    .whatsapp-badge { font-size: 8px; padding: 2px 6px; top: -4px; right: -4px; width: 15px; height: 15px; }
}

.back-to-top-home {
    position: fixed; bottom: 30px; left: 30px; z-index: 9999; display: none; cursor: pointer; transition: all 0.3s ease;
}
.back-to-top-home .back-top {
    display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background-color: #091b8b; color: #ffffff; border-radius: 50%; font-size: 20px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); transition: all 0.3s ease;
}
.back-to-top-home:hover .back-top { background-color: #061470; transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }