/* صفحة من نحن - تصميم بسيط ونظيف */

/* القسم الرئيسي */
.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
    margin-top: 140px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb i {
    font-size: 12px;
    color: #94a3b8;
}

.breadcrumb span {
    color: #1e293b;
    font-weight: 600;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-hero p {
    font-size: clamp(16px, 3vw, 20px);
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    line-height: 1.6;
}

/* قسم القصة */
.about-story {
    padding: 60px 0;
    background: #f8fafc;
}

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

.story-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.story-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: clamp(14px, 2.5vw, 16px);
}

.story-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.story-image {
    text-align: center;
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.story-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fafc;
    padding: 15px;
}

.image-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.image-decoration::before {
    content: '✓';
}

/* قسم القيم */
.about-values {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #64748b;
    max-width: 90%;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
    border-color: #3b82f6;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.value-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: clamp(13px, 2.2vw, 15px);
}

/* قسم الإحصائيات */
.about-stats {
    padding: 60px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(13px, 2.2vw, 15px);
    color: #64748b;
    font-weight: 600;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

/* قسم الدعوة للعمل */
.cta-section {
    background: #2563eb;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: clamp(13px, 2.2vw, 15px);
}

.cta-feature i {
    color: #10b981;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: clamp(14px, 2.2vw, 15px);
}

.cta-btn.primary {
    background: white;
    color: #2563eb;
    border: 2px solid white;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2563eb;
}

/* التصميم المتجاوب */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 30px 0;
        margin-top: 160px;
        min-height: 150px;
    }
    
    .breadcrumb {
        justify-content: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .story-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .image-container {
        padding: 15px;
    }
    
    .story-image img {
        width: 150px;
        height: 150px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 25px 0;
        margin-top: 180px;
        min-height: 120px;
    }
    
    .about-story,
    .about-values,
    .about-stats,
    .cta-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .stat-item {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .story-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 6px;
    }
    
    .hero-content h1 {
        margin-bottom: 12px;
    }
    
    .story-image img {
        width: 120px;
        height: 120px;
    }
    
    .image-container {
        padding: 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .about-hero {
        padding: 20px 0;
        margin-top: 200px;
    }
    
    .cta-btn {
        max-width: 220px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .value-card,
    .stat-item {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .story-text h2 {
        margin-bottom: 15px;
    }
    
    .story-text p {
        margin-bottom: 12px;
    }
    
    .feature-item {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .story-image img {
        width: 100px;
        height: 100px;
    }
    
    .image-decoration {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: -8px;
        right: -8px;
    }
}