/* متغيرات الألوان والتأثيرات */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --green-primary: #0A5C36;
    --green-light: #147A4F;
    --green-dark: #064023;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 8px 10px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 15px 25px -5px rgb(0 0 0 / 0.1);
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

/* قسم الهيرو */
.about-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    overflow: hidden;
    padding: 80px 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.education-symbols, .quran-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    font-size: 2rem;
}

.education-symbols span, .quran-symbols i {
    margin: 20px;
    opacity: 0.5;
    animation: float 6s infinite ease-in-out;
}

.education-symbols span:nth-child(odd), .quran-symbols i:nth-child(odd) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-title .highlight {
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-200);
}

.about-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary-about, .btn-secondary-about {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-about {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--gray-900);
}

.btn-secondary-about {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary-about:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-secondary-about:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

/* قسم المحتوى الرئيسي */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 3rem;
}

.vision-section, .mission-section {
    background: var(--gray-100);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 40px;
}

.vision-section h3, .mission-section h3 {
    color: var(--green-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-list, .mission-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vision-list li, .mission-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.vision-list li::before, .mission-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.values-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.values-list i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.values-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--green-primary);
    margin-bottom: 10px;
}

.values-list span {
    color: var(--gray-600);
    line-height: 1.6;
}

/* قسم الإحصائيات */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.stat-desc {
    color: var(--gray-500);
    font-size: 1rem;
}

/* قسم فريق العمل */
.team-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
    background: white;
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: 3px solid white;
}

.team-image i {
    font-size: 3rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--green-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.team-role {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-desc {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-expertise span {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(10, 92, 54, 0.2);
    transition: all 0.3s ease;
}

.team-expertise span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 92, 54, 0.3);
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-buttons {
        flex-direction: column;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .team-card {
        padding: 25px;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .team-image i {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
} 