/* ============================================ */
/* style.css - ملف الأنماط الرئيسي لمنصة Menuza */
/* ============================================ */

/* ===== RESET & BASE ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Tajawal', system-ui, sans-serif; 
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #0f172a; 
    line-height: 1.6; 
    min-height: 100vh;
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* ===== TYPOGRAPHY ===== */
h1 { 
    font-size: 54px; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: 36px; 
    font-weight: 700; 
    line-height: 1.3; 
    margin-bottom: 16px; 
}

h3 { 
    font-size: 22px; 
    font-weight: 600; 
    line-height: 1.4; 
    margin-bottom: 12px; 
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.logo { 
    font-size: 28px; 
    font-weight: 800; 
    color: #2563eb; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: transform 0.3s;
}

.logo:hover { transform: scale(1.02); }
.logo i { color: #f59e0b; font-size: 32px; }

.nav-links { 
    display: flex; 
    gap: 28px; 
    flex-wrap: wrap; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: #475569; 
    font-weight: 500; 
    transition: 0.3s; 
    position: relative;
}

.nav-links a:hover { color: #2563eb; }

.nav-links a.active { 
    color: #2563eb; 
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 2px;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    margin-right: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 300px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #2563eb;
    padding-right: 28px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn-outline { 
    border: 1.5px solid #2563eb; 
    padding: 8px 24px; 
    border-radius: 40px; 
    background: transparent; 
    font-weight: 600; 
    color: #2563eb; 
    text-decoration: none; 
    transition: all 0.3s;
}

.btn-outline:hover { 
    background: #2563eb; 
    color: white; 
    transform: translateY(-2px);
}

.btn-white { 
    background: white; 
    color: #1e293b; 
    padding: 14px 40px; 
    border-radius: 40px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block; 
    margin-top: 24px; 
    transition: all 0.3s;
}

.btn-white:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px -8px rgba(255,255,255,0.2);
    background: #f8fafc;
}

.btn-submit { 
    background: white; 
    color: #2563eb; 
    padding: 12px 32px; 
    border: none; 
    border-radius: 40px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s;
}

.btn-submit:hover { 
    transform: scale(1.02); 
    box-shadow: 0 10px 20px -8px rgba(0,0,0,0.2);
}

/* ===== HERO SECTION ===== */
.hero { 
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%); 
    border-radius: 32px; 
    margin: 40px 0; 
    padding: 56px 48px; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hero-text { flex: 1; }
.hero-text p { font-size: 1.1rem; color: #475569; margin-bottom: 28px; }

/* Phone Mockup أنيق */
.phone-mockup {
    flex: 1;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 48px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
}
.phone-mockup:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #334155;
    border-radius: 10px;
}
.phone-screen {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 32px;
    padding: 40px 20px;
    color: white;
}
.phone-screen i { font-size: 3rem; margin: 0 8px; }

.stats { 
    display: flex; 
    gap: 32px; 
    flex-wrap: wrap; 
    margin-top: 24px; 
}

.stat { text-align: center; }
.stat-number { 
    font-weight: 800; 
    font-size: 2rem; 
    color: #2563eb; 
    display: block; 
}

.stat-label { font-size: 0.85rem; color: #64748b; }

.hero-image { 
    flex: 1; 
    background: linear-gradient(135deg, #dbeafe, #ffffff); 
    border-radius: 24px; 
    padding: 48px 32px; 
    text-align: center; 
    font-size: 4rem;
    transition: transform 0.3s;
}

.hero-image:hover { transform: scale(1.02); }

.badge { 
    background: #dbeafe; 
    color: #2563eb; 
    padding: 6px 14px; 
    border-radius: 40px; 
    font-size: 0.75rem; 
    font-weight: 600; 
    display: inline-block; 
    margin-bottom: 20px;
}

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin: 60px 0 32px; }
.section-title h2 { 
    display: inline-block; 
    position: relative; 
}

.section-title h2:after { 
    content: ''; 
    position: absolute; 
    bottom: -10px; 
    right: 25%; 
    width: 50%; 
    height: 3px; 
    background: linear-gradient(90deg, #2563eb, #f59e0b); 
    border-radius: 3px; 
}

/* ===== DOWNLOAD BUTTONS ===== */
.download-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 48px;
    margin: 40px 0;
    text-align: center;
    color: white;
}
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.store-btn {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}
.store-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.store-btn i { font-size: 1.8rem; }

/* ===== CARDS ===== */
.cards { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
    margin-bottom: 48px; 
}

.card { 
    background: white; 
    border-radius: 24px; 
    padding: 32px 24px; 
    text-align: center; 
    transition: all 0.3s; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1); 
    border-color: #dbeafe; 
}

.card-icon { 
    font-size: 2.8rem; 
    color: #2563eb; 
    margin-bottom: 20px; 
    transition: transform 0.3s;
}

.card:hover .card-icon { transform: scale(1.1); }

/* ===== RESTAURANT TYPES ===== */
.restaurant-types { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 16px; 
    margin: 40px 0; 
}

.type-card { 
    background: white; 
    border-radius: 20px; 
    padding: 20px; 
    text-align: center; 
    border: 1px solid #e2e8f0; 
    transition: all 0.3s; 
}

.type-card:hover { 
    transform: translateY(-4px); 
    border-color: #2563eb; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.type-card i { 
    font-size: 2rem; 
    color: #2563eb; 
    margin-bottom: 12px; 
    display: block; 
}

/* ===== GALLERY (المستخدم في HTML) ===== */
.gallery { 
    background: white; 
    border-radius: 32px; 
    padding: 48px; 
    margin: 40px 0; 
    border: 1px solid #e2e8f0; 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 24px; 
    margin-top: 32px; 
}

.gallery-item { 
    border-radius: 20px; 
    overflow: hidden; 
    aspect-ratio: 4/3; 
    background: linear-gradient(135deg, #dbeafe, #ffffff); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 3rem; 
    color: #2563eb; 
    transition: all 0.3s; 
    border: 1px solid #e2e8f0; 
    cursor: pointer;
}

.gallery-item:hover { 
    transform: scale(1.03); 
    box-shadow: 0 10px 25px -5px rgba(37,99,235,0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials { 
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border-radius: 32px; 
    padding: 48px; 
    margin: 40px 0; 
}

.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; 
    margin-top: 32px; 
}

.testimonial-card { 
    background: white; 
    border-radius: 24px; 
    padding: 28px; 
    transition: all 0.3s; 
    border: 1px solid #e2e8f0; 
}

.testimonial-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
}

.testimonial-card i.quote { 
    font-size: 1.5rem; 
    color: #f59e0b; 
    opacity: 0.6; 
    margin-bottom: 16px; 
    display: inline-block; 
}

.author { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    margin-top: 20px; 
}

.author-avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: #dbeafe; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #2563eb; 
}

.rating { 
    color: #fbbf24; 
    margin-top: 8px; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
}

/* ===== STEPS ===== */
.steps-section { 
    background: white; 
    border-radius: 32px; 
    padding: 48px; 
    margin: 40px 0; 
    border: 1px solid #e2e8f0; 
}

.steps { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 24px; 
    margin-top: 32px; 
}

.step { 
    flex: 1; 
    min-width: 180px; 
    text-align: center; 
    padding: 24px; 
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border-radius: 20px; 
    transition: all 0.3s;
}

.step:hover { transform: translateY(-4px); }

.step-number { 
    width: 44px; 
    height: 44px; 
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 16px; 
    font-weight: bold; 
    font-size: 1.2rem;
}

/* ===== FAQ ===== */
.faq-section { 
    background: white; 
    border-radius: 32px; 
    padding: 48px; 
    margin: 40px 0; 
    border: 1px solid #e2e8f0; 
}

.faq-item { 
    padding: 20px 24px; 
    background: #f8fafc; 
    border-radius: 20px; 
    margin-bottom: 16px; 
    border-right: 4px solid #2563eb; 
    transition: all 0.3s;
}

.faq-item:hover { 
    background: #f1f5f9; 
    transform: translateX(-4px); 
}

.faq-question { 
    font-weight: 800; 
    margin-bottom: 8px; 
    color: #1e293b; 
    font-size: 1.05rem; 
}

/* ===== QUICK LINKS ===== */
.quick-links { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
    justify-content: center; 
    margin: 40px 0; 
}

.quick-link { 
    background: white; 
    padding: 8px 20px; 
    border-radius: 40px; 
    text-decoration: none; 
    color: #475569; 
    font-weight: 500; 
    border: 1px solid #e2e8f0; 
    transition: all 0.3s; 
}

.quick-link:hover { 
    background: #2563eb; 
    color: white; 
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact-section { 
    background: linear-gradient(135deg, #2563eb, #1d4ed8); 
    border-radius: 32px; 
    padding: 48px; 
    margin: 40px 0; 
    color: white; 
    text-align: center; 
}

.contact-form { max-width: 500px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }

.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 14px 18px; 
    border: none; 
    border-radius: 16px; 
    font-family: inherit; 
    background: white; 
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-group textarea { min-height: 100px; resize: vertical; }

/* ===== CTA ===== */
.cta { 
    background: linear-gradient(135deg, #0f172a, #1e293b); 
    color: white; 
    border-radius: 32px; 
    padding: 56px 40px; 
    text-align: center; 
    margin: 40px 0; 
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.phone-mockup { animation: float 4s ease-in-out infinite; }

/* ===== FOOTER ===== */
footer { 
    background: #0f172a; 
    color: #94a3b8; 
    border-radius: 32px 32px 0 0; 
    padding: 48px 0 24px; 
    margin-top: 60px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 40px; 
    margin-bottom: 32px; 
}

.footer-col h4 { 
    color: white; 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
}

.footer-col a { 
    display: block; 
    color: #94a3b8; 
    text-decoration: none; 
    margin-bottom: 10px; 
    transition: all 0.3s; 
}

.footer-col a:hover { 
    color: white; 
    transform: translateX(5px); 
}

.copyright { 
    text-align: center; 
    padding-top: 24px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    font-size: 0.8rem; 
}
/* ===== APP STEPS (لصفحة التطبيق) ===== */
/* ===== APP STEPS (لصفحة التطبيق) ===== */
/* ===== APP STEPS (لصفحة التطبيق) ===== */
/* تنسيق قسم خطوات العمل */
.app-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-step-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.app-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.app-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 12px; /* شكل مربع منحني عصري */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.app-step-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

.app-step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.app-step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* تحسين العرض على الموبايل */
@media (max-width: 768px) {
    .app-steps {
        grid-template-columns: 1fr; /* كارت واحد في الصف */
        padding: 0 10px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .navbar { flex-direction: column; text-align: center; }
    .nav-links { justify-content: center; gap: 16px; }
    .hero { 
        padding: 32px 24px; 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-text { text-align: center; }
    .stats { justify-content: center; }
    .phone-mockup { margin-top: 24px; }
    .gallery, 
    .testimonials, 
    .steps-section, 
    .faq-section, 
    .contact-section { 
        padding: 28px 20px; 
    }
    .store-btn { 
        padding: 10px 20px; 
        font-size: 0.9rem; 
    }
    .store-btn i { font-size: 1.3rem; }
    .section-title h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .footer-col a:hover { 
        transform: translateY(-2px); 
    }
}
/* ===== HOW IT WORKS FIX - FOR APP PAGE ===== */
.how-it-works-fix {
    background: #f1f5f9;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 32px;
    text-align: center;
}

.how-it-works-fix h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
}

.how-it-works-fix h2 i {
    color: #2563eb;
    margin-left: 8px;
}

.steps-fix {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.step-fix {
    background: white;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-fix:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.step-number-fix {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.3rem;
}

.step-fix i {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 15px;
    display: block;
}

.step-fix h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
    color: #0f172a;
}

.step-fix p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-fix {
        flex-direction: column;
        align-items: center;
    }
    .step-fix {
        max-width: 100%;
        width: 100%;
    }
}
/* ===== SCREENS SECTION FIX ===== */
.screens-section {
    background: white;
    border-radius: 32px;
    padding: 48px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.screen-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.screen-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.screen-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 16px;
    display: inline-block;
}

.screen-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 12px 0 8px;
    color: #0f172a;
}

.screen-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* للجوال */
@media (max-width: 768px) {
    .screens-section {
        padding: 28px 20px;
    }
    .screens-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== TIPS SECTION ===== */
.tips-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 32px;
    padding: 48px 32px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid #fde68a;
    transition: all 0.3s ease;
}

.tips-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.tips-section i {
    font-size: 2.8rem;
    color: #f59e0b;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.tips-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.tips-section p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.tips-section strong {
    color: #2563eb;
    font-weight: 700;
}

/* تنسيق للجوال */
@media (max-width: 768px) {
    .tips-section {
        padding: 32px 20px;
        margin: 30px 0;
    }
    
    .tips-section h2 {
        font-size: 24px;
    }
    
    .tips-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .tips-section i {
        font-size: 2.2rem;
    }
}
/* ===== COMPARISON SECTION ===== */
.comparison-section {
    margin: 60px 0;
    padding: 20px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.comparison-card {
    background: white;
    border-radius: 28px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card.digital {
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
}

.comparison-card.digital:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
}

.comparison-card.print {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.comparison-card.print:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.comparison-card i:first-child {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-card.digital h3 {
    color: #1e40af;
}

.comparison-card.print h3 {
    color: #475569;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card li i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comparison-card.digital li i:first-child {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* شارة مميزة للقسم الرقمي */
.comparison-card.digital::before {
    content: "✓ مُوصى بِه";
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 30px;
    transform: rotate(-45deg);
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* تنسيق الجوال */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-card {
        padding: 28px 24px;
    }
    
    .comparison-card h3 {
        font-size: 1.3rem;
    }
    
    .comparison-card li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .comparison-card.digital::before {
        top: 15px;
        font-size: 0.6rem;
        padding: 3px 25px;
        width: 100px;
    }
}

/* تنسيق للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .comparison-card {
        padding: 20px 16px;
    }
    
    .comparison-card li {
        gap: 8px;
    }
}
/* ===== STEPS CONTAINER (خطوات العمل) ===== */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.step-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: white;
    border-radius: 32px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

/* الخطوات المتناوبة - فردية وزوجية */
.step-card:nth-child(even) {
    flex-direction: row-reverse;
}

.step-card:nth-child(even):hover {
    transform: translateX(8px);
}

/* رقم الخطوة الكبير */
.step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number-large {
    transform: scale(1.05);
    border-radius: 30px;
}

/* أيقونة الخطوة */
.step-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-image i {
    font-size: 2.5rem;
    color: #2563eb;
}

.step-card:hover .step-image {
    transform: scale(1.05);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.step-card:hover .step-image i {
    color: white;
}

/* محتوى الخطوة */
.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.step-content ul li {
    font-size: 0.85rem;
    color: #2563eb;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== VIDEO PLACEHOLDER ===== */
.video-placeholder {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 60px 40px;
    margin: 50px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.4);
}

.video-placeholder i.bi-play-circle {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 20px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i.bi-play-circle:hover {
    transform: scale(1.1);
    color: #f59e0b;
}

.video-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.video-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

.video-placeholder .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder .play-button:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.video-placeholder .play-button i {
    font-size: 2rem;
    color: white;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .steps-container {
        gap: 24px;
    }
    
    .step-card {
        padding: 20px;
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-card:nth-child(even):hover {
        transform: translateX(0);
    }
    
    .step-card:hover {
        transform: translateY(-5px);
    }
    
    .step-number-large {
        margin: 0 auto;
    }
    
    .step-image {
        margin: 0 auto;
    }
    
    .step-content ul {
        justify-content: center;
    }
    
    .video-placeholder {
        padding: 40px 24px;
    }
    
    .video-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .video-placeholder i.bi-play-circle {
        font-size: 3rem;
    }
}
/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: #dbeafe;
}

/* البطاقة الأكثر طلباً */
.pricing-card.popular {
    border: 2px solid #f59e0b;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -12px rgba(245, 158, 11, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.popular-badge i {
    font-size: 0.7rem;
    color: white;
}

/* السعر */
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 20px 0 8px;
}

.pricing-card .price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.pricing-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 24px;
}

/* قائمة المميزات */
.features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    text-align: right;
}

.features-list li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.features-list li i.bi-check-lg {
    color: #10b981;
}

.features-list li i.bi-x-lg {
    color: #ef4444;
}

/* زر التسعير */
.btn-pricing {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

/* زر في البطاقة المميزة */
.pricing-card.popular .btn-pricing {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-card.popular .btn-pricing:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
    }
    
    .features-list li {
        padding: 10px 0;
        font-size: 0.85rem;
    }
    
    .popular-badge {
        top: -10px;
        right: 15px;
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 24px 16px;
    }
    
    .btn-pricing {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* ===== FEATURES LIST SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 22px 28px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateX(-5px);
    border-color: #2563eb;
    box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.12);
}

.feature-item i {
    font-size: 2.2rem;
    color: #2563eb;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.05);
    color: #1d4ed8;
}

.feature-item div {
    flex: 1;
}

.feature-item strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
}

.feature-item div br {
    display: none;
}

.feature-item div strong + br {
    display: none;
}

.feature-item div br:first-of-type {
    display: inline;
}

.feature-item div {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 50px 40px;
    margin: 50px 0;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.platform-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.3);
}

.platform-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-section h2 i {
    font-size: 2rem;
    color: #2563eb;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.platform-icons i {
    font-size: 3rem;
    color: #94a3b8;
    transition: all 0.3s ease;
    cursor: default;
}

.platform-icons i:hover {
    color: #2563eb;
    transform: translateY(-5px);
}

.platform-section p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

.platform-section p strong {
    color: #f59e0b;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        padding: 18px 20px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item strong {
        font-size: 1rem;
    }
    
    .feature-item div {
        font-size: 0.85rem;
    }
    
    .platform-section {
        padding: 35px 24px;
    }
    
    .platform-section h2 {
        font-size: 1.4rem;
    }
    
    .platform-section h2 i {
        font-size: 1.6rem;
    }
    
    .platform-icons {
        gap: 25px;
    }
    
    .platform-icons i {
        font-size: 2.3rem;
    }
    
    .platform-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    
    .feature-item i {
        margin-bottom: 8px;
    }
    
    .platform-icons {
        gap: 20px;
    }
    
    .platform-icons i {
        font-size: 1.8rem;
    }
}
/* ===== BLOG PAGE STYLES ===== */

/* Blog Header */
.blog-header {
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 48px;
    padding: 60px 40px;
    margin: 40px 0;
    color: white;
}

.blog-header i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.blog-header p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Search Bar */
.search-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.search-bar input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: white;
    color: #0f172a;
}

.search-bar input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.search-bar button {
    background: #f59e0b;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.search-bar button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 40px;
}

.category {
    background: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.category:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.category.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: #dbeafe;
}

.blog-image {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.blog-image i {
    font-size: 3rem;
    color: white;
}

.blog-content {
    padding: 28px;
}

.blog-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 16px;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: #64748b;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    font-size: 0.7rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.blog-card:hover .read-more {
    gap: 12px;
    color: #1d4ed8;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border-radius: 32px;
    padding: 50px 40px;
    margin: 50px 0;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.newsletter h2 {
    font-size: 1.8rem;
    margin: 16px 0 12px;
}

.newsletter p {
    color: #475569;
    max-width: 500px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: white;
}

.newsletter-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button {
    background: #2563eb;
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .blog-header {
        padding: 40px 24px;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar button {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .categories {
        gap: 8px;
    }
    
    .category {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .newsletter {
        padding: 35px 24px;
    }
    
    .newsletter h2 {
        font-size: 1.4rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        gap: 12px;
    }
}