/* تطبيق خط Cairo على الموقع بالكامل */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    /* هذا هو التغيير */
}

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    background-color: #f9f9f9;
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* الترويسة */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.6s;
    padding: 20px 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}

.logo-container h1 span {
    color: var(--secondary);
}

/* القائمة (للكمبيوتر) */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--secondary);
    color: white !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* قسم الهيرو */
.hero {
    background: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax */
    color: white;
    padding: 150px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 52, 52, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* العناوين والشبكات */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 3px;
    background-color: var(--secondary);
}

.features-grid,
.products-grid,
.services-grid,
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.features,
.products,
.services,
.about,
.contact {
    padding: 80px 0;
}

.features,
.services,
.contact {
    background-color: var(--light);
}

/* البطاقات */
.feature-card,
.service-card,
.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card,
.service-card {
    padding: 30px;
    text-align: center;
}

.feature-card:hover,
.product-card:hover {
    transform: translateY(-10px);
}

.feature-icon,
.service-card h3 i {
    color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 i {
    margin-left: 10px;
}

.product-img {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-price {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px 0;
}

/* من نحن */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
}

/* قسم آراء الزبناء (Parallax) */
.reviews {
    background-image: url('images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 52, 52, 0.6);
    z-index: -1;
}

.reviews .section-title h2 {
    color: white !important;
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-icon {
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.client-name {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.client-role {
    color: #888;
    font-size: 0.9rem;
}

/* الفوتر */
.footer-area {
    background-color: #1a252f;
    color: #ecf0f1;
    padding-top: 70px;
    position: relative;
    border-top: 5px solid #e74c3c;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    margin-left: 10px;
}

.footer-logo h2 {
    font-size: 24px;
    color: #fff;
}

.footer-logo span {
    color: #e74c3c;
}

.footer-desc {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background: #e74c3c;
}

.footer-links,
.contact-info {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #e74c3c;
    transform: translateX(-5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 15px;
}

.contact-info i {
    color: #e74c3c;
    font-size: 18px;
    margin-left: 15px;
}

.newsletter-form {
    position: relative;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #e74c3c;
    border: none;
    color: white;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #c0392b;
}

.footer-bottom {
    background: #131b22;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-content p {
    color: #7f8c8d;
    font-size: 14px;
}

/* نموذج الاتصال */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}

/* معرض الصور (Gallery) */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.product-gallery-grid img:hover {
    transform: scale(1.05);
}

/* الصفحات */
.page {
    display: none;
    padding-top: 100px;
    min-height: 80vh;
}

.page.active {
    display: block;
}

/* ========================
   تنسيق الموبايل (التجاوب)
   ======================== */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        color: #333;
    }

    /* لون أيقونة افتراضي */

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95) !important;
        /* خلفية بيضاء شفافة */
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid #eee;
    }

    nav ul.show {
        display: flex !important;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    /* روابط الموبايل (داكنة) */
    nav ul li a,
    header .nav-link,
    header.sticky .nav-link {
        color: #333333 !important;
        /* لون داكن */
        display: block;
        padding: 15px;
        font-weight: bold;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #e74c3c !important;
        background-color: #f9f9f9;
    }

    .logo-container img {
        width: 35px !important;
        margin-right: 8px !important;
    }

    .logo-container h1 {
        font-size: 1.3rem !important;
    }

    /* الهيرو في الموبايل */
    .hero {
        padding: 50px 0 !important;
        min-height: 500px !important;
        /* استخدام الصورة العمودية المخصصة للموبايل */
        background-image: url('images/hero-mobile.jpg') !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: 100% 100% !important;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* ==========================================
   (هام) تعديلات Sticky Header (توضع في النهاية)
   ========================================== */

/* خلفية زرقاء عند النزول */
header.sticky {
    background-color: #2c3e50 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* إجبار الأيقونة واللوجو والروابط (في الكمبيوتر فقط) أن تكون بيضاء */
header.sticky .logo-container h1,
header.sticky .nav-link {
    color: #ffffff !important;
}

/* هذه هي القاعدة التي كانت تسبب المشكلة، الآن وضعناها في الأخير لتفوز */
/* تغيير لون أيقونة القائمة للأبيض عند النزول */
header.sticky .mobile-menu i {
    color: #000000 !important;
}

/* --- كود أمان نهائي للموبايل --- */
@media (max-width: 768px) {

    /* إجبار الروابط أن تكون داكنة في القائمة المنسدلة مهما حدث */
    nav ul li a {
        color: #333333 !important;
    }

    /* إبقاء الرابط النشط (البرتقالي) بنص أبيض */
    nav ul li a.active {
        color: #ffffff !important;
    }
}

/* ==================================================
   إصلاح نهائي لمشاكل الموبايل (الألوان والاختفاء)
   ================================================== */

@media (max-width: 768px) {

    /* 1. إجبار روابط القائمة في الموبايل أن تكون داكنة دائماً */
    /* هذا يحل مشكلة "الاختفاء" داخل القائمة البيضاء */
    header nav ul li a,
    header.sticky nav ul li a,
    header .nav-link,
    header.sticky .nav-link {
        color: #333333 !important;
        /* لون رمادي غامق */
        text-align: center;
        display: block;
        padding: 15px;
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }

    /* 2. الرابط النشط (البرتقالي) يبقى نصه أبيض */
    header nav ul li a.active,
    header.sticky nav ul li a.active {
        color: #ffffff !important;
        background-color: #e74c3c !important;
    }

    /* 3. التأكد من أن أيقونة القائمة (الهمبرغر) تظهر دائماً */

    /* الحالة العادية (في أعلى الصفحة): أيقونة داكنة لتظهر على الخلفية الفاتحة أو الصورة */
    /* ملاحظة: إذا كانت خلفية الهيدر في المنتجات زرقاء، اجعل هذا white بدلاً من 333 */
    .mobile-menu i {
        color: #af2626 !important;
        /* جعلتها بيضاء لتناسب الهيدر الأزرق في صفحات المنتجات */
    }

    /* الحالة عند الهبوط (Sticky): أيقونة بيضاء لتظهر على الهيدر الأزرق الغامق */
    header.sticky .mobile-menu i {
        color: #7c3030 !important;
    }
}

/* --- تنسيق قسم الأسئلة الشائعة --- */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    /* توسيط القائمة */
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    /* مهم لإخفاء الجواب */
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* السؤال (الرأس) */
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

/* الجواب (مخفي افتراضياً) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 20px;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- الكلاس الذي يضيفه الجافاسكريبت عند الفتح --- */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* ارتفاع يكفي للنص */
    border-top-color: #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* تدوير علامة الزائد لتصبح ضرب */
    color: #e74c3c;
}

.faq-item.active {
    border-color: var(--secondary);
    /* تلوين الإطار */
}

/* --- تنسيق قسم الفيديو --- */
.video-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    /* عرض مناسب للفيديو */
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* لقص الحواف الزائدة */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* ظل قوي ليعطي عمقاً */
    border: 5px solid #fff;
    /* إطار أبيض جميل */
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* تحسين للموبايل */
@media (max-width: 768px) {
    .video-wrapper {
        width: 100%;
        border-radius: 10px;
    }
}

/* =========================================
   تنسيق زر واتساب العائم (النسخة النهائية)
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    /* دائرة مثالية */
    text-align: center;
    font-size: 32px;
    z-index: 10000;
    text-decoration: none;



    /* --- 2. كود الحركة الناعمة (مهم جداً) --- */
    /* هذا السطر يجعل التكبير يحدث بنعومة وليس فجأة */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* حركة ناعمة تشبه النابض */

    /* ظل خفيف في الحالة العادية */
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}




/* --- 3. كود التكبير عند المرور (Hover) --- */
.whatsapp-float:hover {
    background-color: #128C7E;
    /* تغيير اللون للأغمق */

    /* 👇👇👇 هذا هو السطر المسؤول عن التكبير 👇👇👇 */
    transform: scale(1.15);
    /* تكبير بنسبة 15% */

    /* جعل الظل أكبر لتبدو وكأنها تقفز */
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}


/* --- تنسيق الموبايل --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        /* حجم مناسب للموبايل */
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }
}

/* --- تنسيق قسم كيف تطلب --- */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    padding: 20px;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 40px;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    /* لون برتقالي */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #fff;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

.step-card:hover .step-icon {
    background: var(--secondary);
    transform: translateY(-10px);
}

.step-card:hover .step-icon i {
    color: white;
}

/* تعديل لتقريب العناصر من بعضها */
.design-container {
    display: flex;
    flex-wrap: wrap;

    /* هذا الأمر يجمعهم في الوسط بدلاً من تفريقهم */
    justify-content: center;

    /* مسافة ثابتة ومعقولة بين الأزرار والتيشرت */
    gap: 10px;

    align-items: center;

    /* تحديد عرض أقصى للقسم حتى لا يتوسع كثيراً في الشاشات الكبيرة */
    max-width: 900px;
    margin: 0 auto;
    /* توسيط القسم كله */
}

/* منطقة المعاينة */
.preview-area {
    position: relative;
    /* ضروري جداً */
    width: 300px;
    height: 300px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* لإظهار التيشرت كاملاً */
}

/* صورة الزبون (الطبقة العلوية) */
.design-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* توسيط الصورة بدقة */
    max-width: 120px;
    /* حجم منطقة الطباعة التقريبي */
    max-height: 150px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    /* حدود وهمية ليرى الزبون حدود صورته */
}

/* منطقة الأزرار */
.controls-area {
    text-align: center;
    max-width: 3000px;
}

.upload-btn {
    display: inline-block;
    cursor: pointer;
    background-color: #3498db;
    margin-bottom: 20px;
}

.upload-btn:hover {
    background-color: #2980b9;
}

/* تعديل هام لظهور الصورة فوق التيشرت */
.preview-area {
    position: relative;
    /* ضروري جداً */
    width: 300px;
    height: 300px;
    background-color: #f0f0f0;
    overflow: hidden;
    margin: 0 auto;
    /* توسيط */
}

.product-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    /* الطبقة السفلى */
}

.design-overlay {
    position: absolute;
    /* لتكون عائمة */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* توسيط دقيق */
    width: 120px;
    /* حجم مبدئي للصورة */
    height: auto;
    z-index: 10;
    /* الطبقة العليا (فوق التيشرت) */
    display: none;
    /* مخفية في البداية */
}

/* 4. ضبط خط الشريط العلوي ليكون صغيراً ومقروءاً */
/* =========================================
   شريط التنقل السفلي (App Style)
   ========================================= */
.bottom-nav {
    display: none;
    /* مخفي في الكمبيوتر */
}

@media (max-width: 768px) {

    /* إخفاء زر الواتساب العائم القديم لتجنب التكرار */
    .whatsapp-float {
        display: none !important;
    }

    /* إضافة مساحة في أسفل الصفحة لكي لا يغطي الشريط على المحتوى */
    body {
        padding-bottom: 60px;
    }

    .bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 9999;
        border-top: 2px solid #eee;
    }

    .nav-item {
        text-decoration: none;
        color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 11px;
        gap: 5px;
        transition: 0.3s;
    }

    .nav-item i {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .nav-item:hover,
    .nav-item:active {
        color: #2c3e50;
    }

    /* الزر المميز في الوسط (واتساب) */
    .nav-item.special {
        background-color: #25d366;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        margin-top: -15px;
        /* يخرج للأعلى قليلاً */
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        border: 5px solid #f9f9f9;
        /* حدود بيضاء لدمجه مع الخلفية */
        animation: pulse-green 2s infinite;
    }

    .nav-item.special i {
        font-size: 20px;
        margin: 0;
    }
}

/* حركة النبض للزر */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- تنسيق أزرار المشاركة --- */
.share-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.share-container p {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.copy {
    background-color: #333;
}

/* حركة النبض للوجو */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* زر المستشار العائم */
.gift-btn {
    position: fixed;
    bottom: 110px;
    left: 20px;
    /* في اليسار */
    background: #9b59b6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9998;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* النافذة المنبثقة */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 4px solid #9b59b6;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.quiz-options button {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #f1f2f6;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.quiz-options button:hover {
    background: #9b59b6;
    color: white;
}