:root {
    /* الألوان الأساسية */
    --primary: #4a7c59;
    --primary-dark: #3d6b4a;
    --primary-light: #e8f0ea;
    --primary-rgb: 74, 124, 89;

    /* الألوان الثانوية - الذهبي */
    --secondary: #c9a227;
    --secondary-dark: #a8871f;
    --secondary-light: #f9f3e0;

    /* ألوان الحالات */
    --success: #4a7c59;
    --warning: #c9a227;
    --danger: #c45c5c;
    --info: #1e3a5f;

    /* ألوان الخلفيات */
    --light: #faf6eb;
    --dark: #1e3a5f;
    --body-bg: #f5f0e1;

    /* ألوان النصوص */
    --text: #2d3748;
    --text-muted: #8b7355;
    --text-light: #a0937d;

    /* ألوان الحدود */
    --border: #e2d9c8;
    --border-light: #f0ebe0;

    /* التدرجات */
    --gradient-primary: linear-gradient(135deg, #4a7c59 0%, #3d6b4a 100%);
    --gradient-secondary: linear-gradient(135deg, #c9a227 0%, #a8871f 100%);
    --gradient-header: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    --gradient-hero: linear-gradient(135deg, #4a7c59 0%, #1e3a5f 100%);

    /* الظلال */
    --shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
    --shadow-lg: 0 10px 40px rgba(74, 124, 89, 0.15);
}
/* Hero Section */
.hero-section {
    background: var(--primary);
    padding: 3rem 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto 1.25rem;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto 1.25rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.hero-stat h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.8rem;
}

.btn-hero {
    background: white;
    color: var(--primary);
    padding: 0.6rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem;
}

.btn-hero:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Section */
.section {
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.section-title .title-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

/* Target Groups */
/* Target Groups - تعديل للـ 8 كروت */
.target-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.2s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.target-card .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    font-size: 1.4rem;
    color: white;
}

.target-card h4 {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.target-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Centers Section */
.centers-section {
    background: var(--light);
}

.center-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.2s ease;
}

.center-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.center-card .governorate {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.center-card h5 {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.center-card .info {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.center-card .info i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 1px;
}

.center-card .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    direction: ltr;
}

.center-card .phone-link:hover {
    background: var(--primary);
    color: white;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 2rem 0;
    text-align: center;
}

.cta-section h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.25rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }
}
