/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
}

/* تنسيقات خاصة باللغة الإنجليزية */
[dir="ltr"] {
    direction: ltr !important;
    text-align: left !important;
    font-family: 'Inter', sans-serif !important;
}

[dir="ltr"] .section-header h2,
[dir="ltr"] .section-header p,
[dir="ltr"] .service-card h3,
[dir="ltr"] .service-card p,
[dir="ltr"] .pricing-card h3,
[dir="ltr"] .about-text h2,
[dir="ltr"] .about-text p,
[dir="ltr"] .store-info h3,
[dir="ltr"] .store-info p,
[dir="ltr"] .contact-item h3,
[dir="ltr"] .contact-item p,
[dir="ltr"] .footer-section h3,
[dir="ltr"] .footer-section p {
    text-align: left !important;
}

[dir="ltr"] .service-features,
[dir="ltr"] .pricing-features,
[dir="ltr"] .vision-list,
[dir="ltr"] .footer-section ul {
    text-align: left !important;
}

[dir="ltr"] .service-card,
[dir="ltr"] .pricing-card {
    text-align: center !important;
}

[dir="ltr"] .about-stats {
    text-align: center !important;
}

[dir="ltr"] .value-proposition {
    text-align: left !important;
}

/* إصلاح اتجاه النصوص في النسخة الإنجليزية - إضافي */
[dir="ltr"] .hero-title,
[dir="ltr"] .hero-subtitle {
    text-align: left !important;
}

[dir="ltr"] .hero-buttons {
    justify-content: flex-start !important;
}

[dir="ltr"] .nav-link::after {
    right: unset !important;
    left: 0 !important;
}

[dir="ltr"] .cart-count {
    right: -8px !important;
    left: unset !important;
}

[dir="ltr"] .popular-badge {
    right: unset !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* إصلاح إضافي لجميع النصوص في النسخة الإنجليزية */
[dir="ltr"] body,
[dir="ltr"] .hero,
[dir="ltr"] .services,
[dir="ltr"] .pricing,
[dir="ltr"] .about,
[dir="ltr"] .vision,
[dir="ltr"] .market,
[dir="ltr"] .contact,
[dir="ltr"] .store,
[dir="ltr"] .footer {
    direction: ltr !important;
    text-align: left !important;
}

[dir="ltr"] .section-header,
[dir="ltr"] .service-card,
[dir="ltr"] .pricing-card,
[dir="ltr"] .about-text,
[dir="ltr"] .store-info,
[dir="ltr"] .contact-item,
[dir="ltr"] .footer-section {
    text-align: left !important;
}

[dir="ltr"] .service-card,
[dir="ltr"] .pricing-card {
    text-align: center !important;
}

[dir="ltr"] .about-stats {
    text-align: center !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* أزرار */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* شريط التنقل */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand .logo {
    height: 100px;
    width: auto;
    max-width: none;
    min-height: 100px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn {
    background: none;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #6366f1;
    color: white;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: #6366f1;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* قسم البطل */
.hero {
    background: linear-gradient(rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9)), 
                url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=1200&h=600&fit=crop&crop=center') center/cover;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-image {
    display: none; /* إخفاء الصورة */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* الأقسام العامة */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* قسم الخدمات */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1200&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: right;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

/* قسم الأسعار */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1200&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #6366f1;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fas {
    color: #10b981;
    font-size: 14px;
}

/* قسم حولنا */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.value-proposition {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-proposition h3 {
    color: #6366f1;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.about-image {
    position: relative;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    z-index: -1;
}

/* قسم الاتصال */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1200&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6366f1;
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* التذييل */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #6366f1;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: none;
    min-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-form {
        padding: 30px 20px;
    }
} 

/* --------- تصميم الشرائح الجديدة --------- */
.slide {
    padding: 100px 0;
}

/* قائمة الرؤية */
.vision-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.vision-list li {
    background: rgba(99, 102, 241, 0.05);
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #333;
    position: relative;
}

.vision-list li::before {
    content: "\f054"; /* FontAwesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
}

[dir="rtl"] .vision-list li {
    padding: 15px 50px 15px 20px;
}

[dir="rtl"] .vision-list li::before {
    left: unset;
    right: 20px;
}

/* جدول السوق */
.market-table-wrapper {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.market-table th,
.market-table td {
    padding: 15px 10px;
    border: 1px solid #e5e7eb;
}

.market-table th {
    background: #6366f1;
    color: white;
    font-weight: 600;
}

.market-table td {
    background: #ffffff;
}

.market-source {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.plus-eight {
    background: #8b5cf6;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
} 

/* قسم الرؤية 2030 */
.vision {
    background: linear-gradient(rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9)), 
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1200&h=600&fit=crop&crop=center') center/cover;
    color: white;
}

.vision .section-header h2,
.vision .section-header p {
    color: white;
}

.vision-list li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.vision-list li::before {
    color: #fbbf24;
}

/* قسم السوق */
.market {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), 
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&h=600&fit=crop&crop=center') center/cover;
    color: white;
}

.market .section-header h2,
.market .section-header p {
    color: white;
}

.market-table th {
    background: rgba(99, 102, 241, 0.8);
    backdrop-filter: blur(10px);
}

.market-table td {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.market-source {
    color: rgba(255, 255, 255, 0.8);
} 

/* تحسينات الصور */
.hero-image img,
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* تحسين التحميل للصور */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
} 

/* تحسينات إضافية للتصميم المتجاوب */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .lang-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* تحسينات للجدول */
    .market-table-wrapper {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .market-table {
        min-width: 600px;
    }
    
    /* تحسينات للقائمة */
    .vision-list li {
        padding: 15px 15px 15px 40px;
        font-size: 1rem;
    }
    
    [dir="rtl"] .vision-list li {
        padding: 15px 40px 15px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-form {
        padding: 25px 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-brand .logo {
        height: 60px;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    /* تحسينات للجدول على الشاشات الصغيرة */
    .market-table {
        min-width: 400px;
        font-size: 0.9rem;
    }
    
    .market-table th,
    .market-table td {
        padding: 10px 5px;
    }
    
    /* تحسينات لقسم المتجر على الشاشات الصغيرة */
    .store-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .store-info h3 {
        font-size: 2rem;
    }
    
    .store-feature {
        padding: 12px;
    }
    
    .store-feature i {
        font-size: 1.2rem;
    }
}

/* قسم المتجر */
.store {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.store-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.store-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.store-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.store-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.store-feature:hover {
    transform: translateY(-2px);
}

.store-feature i {
    font-size: 1.5rem;
    color: #6366f1;
    width: 30px;
    text-align: center;
}

.store-feature span {
    font-weight: 600;
    color: #334155;
}

.store-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* تنسيقات خاصة باللغة الإنجليزية لقسم المتجر */
[dir="ltr"] .store-info h3,
[dir="ltr"] .store-info p {
    text-align: left !important;
}

[dir="ltr"] .store-feature {
    text-align: left !important;
}

/* تحسينات للتابلت */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .store-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
} 