/**
 * Arabic Homepage Design - Optimized Layout
 * 
 * Color Scheme: Gold (#D4AF37) + Deep Blue (#003366) + White (#FFFFFF)
 * Design Philosophy: Luxury, elegance, geometric patterns, generous spacing
 * 
 * RTL (Right-to-Left) layout for Arabic language
 */

/* ============================================================================
   RTL Layout and Arabic Typography
   ========================================================================== */

.arabic-home {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Arial', sans-serif;
    line-height: 1.8;
}

.arabic-home * {
    direction: rtl;
}

/* ============================================================================
   Hero Banner - Gold and Deep Blue Theme with Background Image Support
   ========================================================================== */

.arabic-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    /* 默认渐变背景，如果有图片会被覆盖 */
    background-color: #003366;
    background-image: linear-gradient(135deg, #003366 0%, #004080 50%, #003366 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    padding: 100px 0;
}

/* 当有内联样式设置背景图片时，确保图片显示 */
.arabic-hero[style*="background-image"] {
    background-blend-mode: normal;
}

/* 深蓝色半透明遮罩层 - 让背景图片可见但不影响文字可读性 */
.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.60) 0%, rgba(0, 64, 128, 0.60) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 菱形蓝色网格图案 - 保留原有的装饰效果 */
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 175, 55, 0.06) 40px, rgba(212, 175, 55, 0.06) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212, 175, 55, 0.06) 40px, rgba(212, 175, 55, 0.06) 80px);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.3;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-title .title-line {
    display: block;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 2;
    font-weight: 400;
}

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

.btn-hero {
    padding: 18px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary.btn-hero:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline.btn-hero {
    background: transparent;
    color: #FFFFFF;
    border: 3px solid #D4AF37;
}

.btn-outline.btn-hero:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.btn-icon {
    margin-left: 8px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: rotate(180deg) translateX(-4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 600;
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* ============================================================================
   Section Styling - Arabic Design Elements
   ========================================================================== */

.arabic-section {
    padding: 60px 0;
    position: relative;
}

.arabic-section.bg-light {
    background: #FAFBFC;
}

.arabic-section.bg-gradient {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #FFFFFF;
}

/* Hide empty sections to avoid white space */
.arabic-section:empty,
.arabic-section .arabic-grid:empty {
    display: none;
}

/* Reduce padding for sections with no content messages */
.arabic-section:has(.no-products),
.arabic-section:has(.no-solutions) {
    padding: 30px 0 !important;
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.bg-gradient .section-title {
    color: #FFFFFF;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.decoration-diamond {
    width: 16px;
    height: 16px;
    background: #D4AF37;
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.section-description {
    font-size: 1.375rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 400;
}

.bg-gradient .section-description {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================================================
   Company Introduction - Two Column Layout
   ========================================================================== */

.company-intro {
    padding: 60px 0 !important;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text-column {
    text-align: right;
}

.intro-features-column {
    position: relative;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 24px;
    line-height: 1.9;
}

.intro-text-column p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 3px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
    transform: translateX(-8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.feature-text {
    flex: 1;
    text-align: right;
}

.feature-text h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 1.125rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   Product and Solution Cards - Arabic Grid
   ========================================================================== */

.arabic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
}

/* Hide sections with no content */
.core-products:has(.no-products),
.business-solutions:has(.no-solutions) {
    padding: 30px 0 !important;
}

.no-products,
.no-solutions {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    border: 2px dashed #D4AF37;
}

.no-products p,
.no-solutions p {
    font-size: 1.25rem;
    color: #666;
    margin: 0;
}

.arabic-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #F0F0F0;
}

.arabic-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-10px);
}

/* Product Cards */
.product-card .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #F8F9FA;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.15);
}

.product-card .card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(212, 175, 55, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.btn-card {
    padding: 14px 32px;
    background: #FFFFFF;
    color: #003366;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-card:hover {
    background: #D4AF37;
    color: #FFFFFF;
    transform: scale(1.05);
}

.product-card .card-content {
    padding: 32px;
}

.product-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .card-title a:hover {
    color: #D4AF37;
}

.product-card .card-excerpt {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
}

/* Solution Cards */
.solution-card {
    padding: 40px;
    text-align: center;
}

.solution-card .card-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.solution-card:hover .card-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.solution-card .card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 16px;
    line-height: 1.5;
}

.solution-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-card .card-title a:hover {
    color: #D4AF37;
}

.solution-card .card-excerpt {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-card .card-link:hover {
    color: #003366;
    gap: 16px;
}

.solution-card .card-link svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ============================================================================
   Company Statistics
   ========================================================================== */

.company-stats {
    position: relative;
    overflow: hidden;
}

.stats-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212, 175, 55, 0.06) 60px, rgba(212, 175, 55, 0.06) 120px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(212, 175, 55, 0.06) 60px, rgba(212, 175, 55, 0.06) 120px);
    z-index: 0;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border-radius: 50%;
    border: 4px solid #D4AF37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
}

/* ============================================================================
   Call to Action
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #FFFFFF;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.375rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Section Footer */
.section-footer {
    margin-top: 48px;
}

/* Section Footer Buttons - Gold Theme */
.section-footer .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.section-footer .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ============================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .intro-content-wrapper {
        gap: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .arabic-section {
        padding: 40px 0;
    }
    
    .company-intro {
        padding: 40px 0 !important;
    }
    
    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .intro-text-column {
        text-align: center;
    }
    
    .feature-text {
        text-align: right;
    }
    
    .core-products:has(.no-products),
    .business-solutions:has(.no-solutions) {
        padding: 20px 0 !important;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .arabic-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .no-products,
    .no-solutions {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn-hero {
        padding: 16px 32px;
        font-size: 1.125rem;
    }
    
    .btn-large {
        padding: 18px 36px;
        font-size: 1.25rem;
    }
}


/* ============================================================================
   Hero Banner - Gold and Deep Blue Theme
   ========================================================================== */

.arabic-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #003366 0%, #004080 50%, #003366 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .title-line {
    display: block;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.btn-hero {
    padding: 14px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary.btn-hero:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline.btn-hero {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #D4AF37;
}

.btn-outline.btn-hero:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #FFD700;
}

.btn-icon {
    margin-left: 8px;
    transform: rotate(180deg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 0.875rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================================
   Section Styling - Arabic Design Elements
   ========================================================================== */

.arabic-section {
    padding: 80px 0;
    position: relative;
}

.arabic-section.bg-light {
    background: #F8F9FA;
}

.arabic-section.bg-gradient {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #FFFFFF;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bg-gradient .section-title {
    color: #FFFFFF;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.decoration-diamond {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    transform: rotate(45deg);
}

.section-description {
    font-size: 1.125rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bg-gradient .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   Company Introduction
   ========================================================================== */

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
}

.lead-text {
    font-size: 1.375rem;
    font-weight: 500;
    color: #003366;
    margin-bottom: 24px;
    line-height: 1.8;
}

.intro-text p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9375rem;
    color: #666666;
    margin: 0;
}

/* ============================================================================
   Product and Solution Cards - Arabic Grid
   ========================================================================== */

.arabic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.arabic-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #F0F0F0;
}

.arabic-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
    transform: translateY(-8px);
}

/* Product Cards */
.product-card .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #F8F9FA;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.product-card .card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(212, 175, 55, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.btn-card {
    padding: 10px 24px;
    background: #FFFFFF;
    color: #003366;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: #D4AF37;
    color: #FFFFFF;
}

.product-card .card-content {
    padding: 24px;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 12px;
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card .card-title a:hover {
    color: #D4AF37;
}

.product-card .card-excerpt {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
}

/* Solution Cards */
.solution-card {
    padding: 32px;
    text-align: center;
}

.solution-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.solution-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.solution-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 12px;
}

.solution-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-card .card-title a:hover {
    color: #D4AF37;
}

.solution-card .card-excerpt {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.solution-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-card .card-link:hover {
    color: #003366;
    gap: 12px;
}

.solution-card .card-link svg {
    transform: rotate(180deg);
}

/* ============================================================================
   Company Statistics
   ========================================================================== */

.company-stats {
    position: relative;
    overflow: hidden;
}

.stats-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(212, 175, 55, 0.05) 50px, rgba(212, 175, 55, 0.05) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(212, 175, 55, 0.05) 50px, rgba(212, 175, 55, 0.05) 100px);
    z-index: 0;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border-radius: 50%;
    border: 3px solid #D4AF37;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================================================
   Call to Action
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #FFFFFF;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #003366;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .arabic-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
