/* ============================================
   جمعية تمكين الأسرة بالقصيم
   التصميم المحسّن - لمسة فنية احترافية
   ============================================ */

/* ============ Variables ============ */
:root {
    --gold: #C9A961;
    --gold-light: #E0C384;
    --gold-dark: #A88842;
    --gold-glow: rgba(201, 169, 97, 0.35);
    --teal: #1B7B8C;
    --teal-light: #2A9DB5;
    --teal-dark: #135A68;
    --teal-deep: #0E4450;
    --teal-glow: rgba(27, 123, 140, 0.3);
    --primary: #134850;
    --primary-dark: #0E4450;
    --dark: #1A1F25;
    --dark-2: #2A323D;
    --gray-900: #1F2937;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --bg-light: #F4F7F9;
    --font-main: 'Cairo', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.09);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 28px rgba(201,169,97,0.35);
    --shadow-teal: 0 8px 28px rgba(27,123,140,0.28);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

/* ============ Reset & Base ============ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
    -webkit-user-select: text !important;
    user-select: text !important;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar-brand img,
.footer-logo,
.heroSwiper img {
    pointer-events: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    font-family: inherit;
}

::selection {
    background: var(--teal);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--teal));
    border-radius: 10px;
}


/* ============ Header / Navigation ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--gold);
}

    .site-header.scrolled {
        background: var(--primary-dark);
        box-shadow: 0 6px 30px rgba(0,0,0,0.28);
        border-bottom-color: var(--gold);
    }

    /* Top accent line */
    .site-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to left, var(--gold), var(--teal-light), var(--gold));
        background-size: 200% 100%;
        animation: shimmer-line 4s linear infinite;
    }

@keyframes shimmer-line {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.navbar {
    padding: 6px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 5px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: var(--transition-slow);
}

    .navbar-brand img {
        height: 68px;
        display: block;
        transition: var(--transition-slow);
        filter: none;
    }

.site-header.scrolled .navbar-brand {
    padding: 4px 14px;
}

    .site-header.scrolled .navbar-brand img {
        height: 56px;
    }

/* Nav Links */
.navbar-nav .nav-link {
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.93rem;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 2px;
        background: linear-gradient(to left, var(--gold-light), var(--gold));
        border-radius: 2px;
        transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #fff;
    }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 28px;
        }

/* Dropdown */
.navbar-nav .dropdown-toggle::after {
    margin-right: 6px;
    margin-left: 0;
    vertical-align: middle;
    font-size: 0.7rem;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 8px !important;
    border-top: 3px solid var(--gold);
    min-width: 230px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
}

    .dropdown-item:hover, .dropdown-item:focus {
        background: rgba(27,123,140,0.08);
        color: var(--teal);
        transform: translateX(-4px);
    }

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown > .dropdown-menu {
        display: block;
        margin-top: 0 !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(14px) scale(0.97);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        pointer-events: none;
    }

    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .navbar-nav .nav-item.dropdown > .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -14px;
        left: 0;
        right: 0;
        height: 14px;
    }
}

.navbar-nav .nav-link i {
    margin-left: 7px;
    font-size: 0.82em;
    color: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    color: var(--gold-light);
}

.dropdown-item i {
    width: 20px;
    margin-left: 10px;
    text-align: center;
    font-size: 0.9em;
    color: var(--gold);
    transition: var(--transition);
}

.dropdown-item:hover i, .dropdown-item:focus i {
    color: var(--gold-dark);
}

/* Donate Button */
.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .btn-donate::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-donate:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 38px rgba(201,169,97,0.45);
        color: var(--white);
        background-position: right center;
    }

        .btn-donate:hover::after {
            opacity: 1;
        }


/* Donate Button */
.btn-mostfeed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient( 135deg, #5b95a8 0%, #44798b 50%, #2f5f6d 100% );
    background-size: 200% 100%;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(68, 121, 139, 0.35);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .btn-mostfeed::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,255,255,.25), transparent 65% );
        opacity: 0;
        transition: opacity .3s ease;
    }

.btn-donate:hover {
    transform: translateY(-3px);
    background-position: right center;
    box-shadow: 0 14px 35px rgba(68, 121, 139, 0.5);
    color: #fff;
}

.btn-mostfeed:hover::after {
    opacity: 1;
}

.btn-mostfeed:active {
    transform: translateY(-1px);
}

/* Mobile Toggler */
.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.55);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ Hero Section (Redesigned) ============ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 50%, var(--teal) 100%);
    padding: 54px 0 90px;
    overflow: hidden;
    margin-top: 90px;
    isolation: isolate;
}

/* نسيج نقطي متحرك */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1.4px, transparent 1.4px);
    background-size: 30px 30px;
    animation: drift 26s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 12% 20%, rgba(201,169,97,0.20) 0%, transparent 55%), radial-gradient(ellipse at 88% 80%, rgba(255,255,255,0.06) 0%, transparent 52%);
    pointer-events: none;
    z-index: -1;
}

/* هالة ذهبية */
.hero-section::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.14) 0%, transparent 70%);
    top: -140px;
    right: -120px;
    pointer-events: none;
    z-index: -1;
    animation: orb-float 9s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

.min-vh-hero {
    min-height: 440px;
}

/* ----- النص ----- */
.hero-content {
    color: var(--white);
    position: relative;
    z-index: 2;
    text-align: right;
    animation: hero-slide-in 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes hero-slide-in {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(201,169,97,0.16);
    border: 1px solid rgba(201,169,97,0.45);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(201,169,97,0.15);
    animation: badge-float 4s ease-in-out infinite;
}

    .hero-badge i {
        color: var(--gold);
    }

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

    .hero-title .highlight {
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-description {
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    color: rgba(255,255,255,0.86);
    line-height: 1.95;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

/* أزرار Hero */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn-primary-custom:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(201,169,97,0.45);
        color: var(--white);
    }

        .btn-primary-custom:hover::before {
            left: 100%;
        }

    .btn-primary-custom i {
        transition: transform 0.3s;
        font-size: 0.85rem;
    }

    .btn-primary-custom:hover i {
        transform: translateX(-6px);
    }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

    .btn-outline-custom:hover {
        background: var(--white);
        color: var(--teal-dark);
        border-color: var(--white);
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(255,255,255,0.15);
    }

/* شريط الأرقام الموثوقة */
.hero-highlights {
    display: flex;
    align-items: stretch;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-highlight {
    position: relative;
    padding-left: 20px;
    text-align: right;
}

    .hero-highlight:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 34px;
        background: linear-gradient(to bottom, transparent, rgba(201,169,97,0.5), transparent);
    }

    .hero-highlight strong {
        display: block;
        font-size: 1.7rem;
        font-weight: 800;
        line-height: 1;
        color: var(--gold-light);
        margin-bottom: 5px;
    }

    .hero-highlight span {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.72);
        font-weight: 600;
    }

/* ----- السلايدر ----- */
.hero-slider-wrap {
    position: relative;
    padding: 16px;
    z-index: 1;
}

.hero-slider-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,97,0.28) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 32px;
    transform: rotate(-2.2deg);
    z-index: 0;
    border: 2px dashed rgba(201,169,97,0.4);
    animation: frame-breathe 5s ease-in-out infinite;
}

@keyframes frame-breathe {
    0%, 100% {
        transform: rotate(-2.2deg) scale(1);
    }

    50% {
        transform: rotate(-2.2deg) scale(1.015);
    }
}

.heroSwiper {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    z-index: 1;
}

.hero-slide-item {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 26px;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

    .hero-slide-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s ease;
    }

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1.09);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,68,80,0.55) 0%, transparent 45%);
    pointer-events: none;
}

/* أزرار التنقل */
.hero-swiper-nav {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-swiper-prev, .hero-swiper-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--teal-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(6px);
}

    .hero-swiper-prev:hover, .hero-swiper-next:hover {
        background: var(--gold);
        color: var(--white);
        transform: scale(1.12);
        box-shadow: var(--shadow-gold);
    }

/* المؤشرات */
.hero-swiper-pagination {
    position: absolute;
    bottom: 22px;
    left: 30px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

    .hero-swiper-pagination .swiper-pagination-bullet {
        width: 26px;
        height: 4px;
        background: rgba(255,255,255,0.5);
        border-radius: 2px;
        opacity: 1;
        transition: var(--transition);
        margin: 0 !important;
    }

    .hero-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--gold);
        width: 44px;
    }

/* البطاقة العائمة (العنصر المميّز) */
.hero-float-badge {
    position: absolute;
    bottom: 34px;
    right: -8px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    animation: badge-float 4.5s ease-in-out infinite;
}

.hfb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    font-size: 1.15rem;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.hfb-text strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hfb-text span {
    font-size: 0.76rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* الموجة السفلية */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}

    .hero-wave svg {
        width: 100%;
        height: 80px;
    }



/* ============ Section Common ============ */
section {
    padding: 64px 0;
    position: relative;
}

.section-head {
    margin-bottom: 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: linear-gradient(135deg, rgba(27,123,140,0.1), rgba(201,169,97,0.08));
    color: var(--teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.83rem;
    margin-bottom: 16px;
    border: 1px solid rgba(27,123,140,0.15);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

    .section-label::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        display: inline-block;
    }

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-head.text-center .section-title::after {
    content: '';
    display: block;
    margin: 18px auto 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(to left, var(--gold), var(--teal));
    border-radius: 4px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto;
}

/* ============ Services Section ============ */
.services-section {
    background: var(--white);
    padding: 64px 0;
}

.service-card {
    display: block;
    padding: 38px 30px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    /* Decorative corner */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
        border-radius: 0 var(--radius-lg) 0 120px;
        opacity: 0;
        transition: var(--transition);
    }

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(27,123,140,0.08) 0%, transparent 70%);
        border-radius: 80px 0 var(--radius-lg) 0;
        opacity: 0;
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(201,169,97,0.5);
        box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,169,97,0.1);
    }

        .service-card:hover::before,
        .service-card:hover::after {
            opacity: 1;
        }

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 22px;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-teal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    transform: rotate(-8deg) scale(1.08);
    box-shadow: var(--shadow-gold);
}

.service-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-arrow {
    margin-top: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-arrow {
    background: var(--gold);
    color: var(--white);
    transform: translateX(-6px);
    box-shadow: var(--shadow-gold);
}

/* ============ Stats Section ============ */
.stats-section {
    background: linear-gradient(160deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(201,169,97,0.07) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .stats-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(27,123,140,0.07) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.stat-box {
    background: var(--white);
    padding: 38px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    /* Top gradient bar */
    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Bottom glow */
    .stat-box::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 60px;
        background: radial-gradient(ellipse, rgba(201,169,97,0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .stat-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.3);
    }

        .stat-box:hover::before {
            transform: scaleX(1);
        }

        .stat-box:hover::after {
            opacity: 1;
        }

.stat-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 22px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-teal);
}

.stat-box:hover .stat-icon {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    transform: rotateY(180deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.stat-number-big {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* ============ About Section ============ */
.about-section {
    padding: 64px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

    /* Subtle background shape */
    .about-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -200px;
        transform: translateY(-50%);
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(27,123,140,0.04) 0%, transparent 70%);
        pointer-events: none;
    }

.about-image-wrap {
    position: relative;
    padding: 40px;
}

.about-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 32px;
    transform: rotate(-3.5deg);
    z-index: 0;
}

    .about-pattern::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(201,169,97,0.22) 1.5px, transparent 1.5px);
        background-size: 20px 20px;
        border-radius: 32px;
    }

.about-image {
    position: relative;
    background: var(--white);
    padding: 12px;
    border-radius: 26px;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    overflow: hidden;
}

    .about-image img {
        border-radius: 18px;
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .about-image:hover img {
        transform: scale(1.03);
    }

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--white);
    padding: 18px 26px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

    .about-badge strong {
        display: block;
        font-size: 2.1rem;
        font-weight: 800;
        line-height: 1;
    }

    .about-badge span {
        font-size: 0.85rem;
        font-weight: 600;
        opacity: 0.95;
    }

.about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.95;
    margin-bottom: 32px;
}

.about-features {
    margin-bottom: 22px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

    .about-feature-item:last-child {
        border-bottom: none;
    }

    .about-feature-item:hover {
        transform: translateX(-4px);
    }

.afi-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,169,97,0.12);
    color: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.about-feature-item:hover .afi-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.afi-content h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.afi-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.75;
}

/* ============ News Section ============ */
.news-section {
    background: var(--bg-light);
    padding: 64px 0;
}

.news-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 52px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--white);
    color: var(--teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--teal);
    transition: var(--transition);
}

    .btn-view-all:hover {
        background: var(--teal);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-teal);
    }

    .btn-view-all i {
        transition: transform 0.3s;
        font-size: 0.8rem;
    }

    .btn-view-all:hover i {
        transform: translateX(-5px);
    }

/* News Card Featured */
.news-card-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

    .news-card-featured:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.2);
    }

.news-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 5rem;
    transition: transform 0.7s ease;
}

.news-bg-1 {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.news-bg-2 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.news-bg-3 {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
}

.news-bg-4 {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.news-card-featured:hover .news-img-placeholder {
    transform: scale(1.08);
}

.news-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.news-date-tag {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 12px 18px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.95;
}

.news-content {
    padding: 30px 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.45;
    transition: var(--transition);
    font-weight: 700;
}

.news-card-featured:hover .news-title {
    color: var(--teal);
}

.news-excerpt {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 20px;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: var(--transition);
}

    .news-link:hover {
        color: var(--gold);
        gap: 14px;
    }

/* News List Small */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.news-card-small {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    gap: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1;
    border: 2px solid transparent;
}

    .news-card-small:hover {
        transform: translateX(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201,169,97,0.2);
    }

.ncs-image {
    width: 130px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

    .ncs-image .news-img-placeholder {
        aspect-ratio: 1;
        font-size: 2.5rem;
    }

.ncs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category-sm {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ncs-title {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.45;
    font-weight: 700;
}

.ncs-meta {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

    .ncs-meta i {
        color: var(--teal);
        margin-left: 4px;
    }

.news-link-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

    .news-link-sm:hover {
        color: var(--gold);
        gap: 10px;
    }

/* ============ Partners Section ============ */
.partners-section {
    background: var(--white);
    padding: 64px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .partner-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,169,97,0.05), rgba(27,123,140,0.05));
        opacity: 0;
        transition: opacity 0.4s;
    }

    .partner-item:hover {
        background: var(--white);
        border-color: rgba(201,169,97,0.4);
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

        .partner-item:hover::before {
            opacity: 1;
        }

.partner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

    .partner-inner i {
        font-size: 3rem;
        color: var(--teal);
        transition: var(--transition-bounce);
    }

.partner-item:hover .partner-inner i {
    color: var(--gold);
    transform: scale(1.12) rotate(-5deg);
}

.partner-inner span {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.5;
}

/* ============ Donate Section ============ */
.donate-section {
    padding: 40px 0 64px;
    background: var(--white);
}

.donate-card {
    background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-dark) 50%, var(--teal) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 52px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.donate-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 85% 25%, rgba(201,169,97,0.22) 0%, transparent 50%), radial-gradient(circle at 15% 75%, rgba(255,255,255,0.07) 0%, transparent 50%), radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    pointer-events: none;
    animation: drift 30s linear infinite;
}

/* Decorative arc */
.donate-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.04);
    pointer-events: none;
}

.donate-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(201,169,97,0.08);
    pointer-events: none;
}

.donate-content {
    position: relative;
    z-index: 1;
}

.donate-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 22px;
    box-shadow: var(--shadow-gold);
    animation: heart-beat 1.8s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(0.97);
    }
}

.donate-title {
    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.donate-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.95;
    margin: 0;
    max-width: 600px;
}

.donate-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.btn-donate-big,
.btn-volunteer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-bounce);
    width: 100%;
}

.btn-donate-big {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

    .btn-donate-big:hover {
        background: var(--white);
        color: var(--teal-dark);
        border-color: var(--white);
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(255,255,255,0.2);
    }

.btn-volunteer {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}

    .btn-volunteer:hover {
        background: var(--white);
        color: var(--teal-dark);
        border-color: var(--white);
        transform: translateY(-4px);
    }

/* ============ Footer ============ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(201,169,97,0.07) 0%, transparent 70%);
        pointer-events: none;
    }

    .site-footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(27,123,140,0.07) 0%, transparent 70%);
        pointer-events: none;
    }

/* Footer top accent */
.footer-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, var(--gold), var(--teal), var(--gold));
    background-size: 200% 100%;
    animation: shimmer-line 5s linear infinite;
}

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 70px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

    .footer-logo:hover {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(201,169,97,0.5));
    }

.footer-about {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    line-height: 1.95;
    margin-bottom: 22px;
}

.footer-license {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(201,169,97,0.1);
    border: 1px solid rgba(201,169,97,0.28);
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.6;
}

    .footer-license i {
        color: var(--gold);
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-license strong {
        color: var(--gold);
    }

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 26px;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.68);
        font-size: 0.95rem;
        transition: var(--transition);
    }

        .footer-links a i {
            color: var(--gold);
            font-size: 0.75rem;
            transition: transform 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

            .footer-links a:hover i {
                transform: translateX(-5px);
            }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
    }

.fc-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,97,0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.footer-contact li:hover .fc-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: rotate(-8deg) scale(1.08);
}

.fc-text small {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin-bottom: 3px;
}

.fc-text a, .fc-text span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

    .fc-text a:hover {
        color: var(--gold);
    }

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-bounce);
        font-size: 1rem;
    }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-5px) rotate(-8deg);
            box-shadow: var(--shadow-gold);
        }

.footer-bottom {
    margin-top: 52px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.45);
    }

/* ============ Back to Top ============ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 99;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-6px) scale(1.08);
        box-shadow: 0 18px 40px rgba(201,169,97,0.45);
    }

/* ============ Floating WhatsApp ============ */
.float-whatsapp {
    position: fixed;
    bottom: 100px;
    left: 32px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    z-index: 99;
    transition: var(--transition-bounce);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37,211,102,0.65);
    }
}

.float-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--white);
}

/* ============ Responsive ============ */
@media (max-width: 1199px) {
    .hero-image-wrap {
        width: 300px;
        height: 300px;
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        border-radius: 18px;
        padding: 20px;
        box-shadow: var(--shadow-xl);
        border: 1px solid rgba(0,0,0,0.06);
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        color: var(--gray-900);
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--teal);
        }

    .dropdown-menu {
        margin: 0 !important;
        box-shadow: none;
        background: var(--gray-50);
        border: none;
        padding: 4px;
    }

    .btn-donate {
        margin-top: 16px;
        justify-content: center;
    }

    .hero-section {
        padding: 80px 0 96px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-card {
        padding: 52px 32px;
        text-align: center;
    }

    .donate-buttons {
        margin-top: 32px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .donate-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .donate-text {
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 72px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom, .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .news-card-small {
        flex-direction: column;
    }

    .ncs-image {
        width: 100%;
    }

        .ncs-image .news-img-placeholder {
            aspect-ratio: 16/9;
        }

    .news-head {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-view-all {
        align-self: flex-start;
    }

    .footer-bottom {
        text-align: center;
    }

    .about-image-wrap {
        padding: 25px;
    }

    .about-image {
        padding: 8px;
    }

    .section-head {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .stat-number-big {
        font-size: 2.6rem;
    }

    .donate-card {
        padding: 42px 24px;
    }

    .float-whatsapp, .back-to-top {
        left: 18px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ Extra Artistic Enhancements ============ */

/* ---- Particle dots on hero ---- */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,169,97,0.55);
    pointer-events: none;
    animation: particle-rise linear infinite;
}

@keyframes particle-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-120px) scale(0.3);
        opacity: 0;
    }
}

/* ---- Gradient text utility ---- */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section divider wave (between sections) ---- */
.wave-divider {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

    .wave-divider svg {
        display: block;
        width: 100%;
    }

/* ---- Glassmorphism card variant ---- */
.glass-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ---- Animated underline for section titles ---- */
.section-title-animated {
    display: inline-block;
    position: relative;
}

    .section-title-animated::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        border-radius: 3px;
        transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .section-title-animated.aos-animate::after {
        width: 100%;
    }

/* ---- Enhanced stat box with shimmer ---- */
.stat-box .shimmer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 105deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60% );
    background-size: 200% 100%;
    background-position: -200% 0;
    border-radius: inherit;
    pointer-events: none;
    transition: background-position 0s;
}

.stat-box:hover .shimmer-overlay {
    background-position: 200% 0;
    transition: background-position 0.8s ease;
}

/* ---- Service card number badge ---- */
.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(27,123,140,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
    font-family: var(--font-main);
}

.service-card:hover .service-number {
    color: rgba(201,169,97,0.1);
}

/* ---- News card image overlay on hover ---- */
.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,123,140,0.35), rgba(201,169,97,0.25));
    opacity: 0;
    transition: opacity 0.4s;
}

.news-card-featured:hover .news-image::after {
    opacity: 1;
}

/* ---- Partner item animated border ---- */
.partner-item {
    background-clip: padding-box;
}

    .partner-item::after {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: calc(var(--radius-lg) + 2px);
        background: linear-gradient(135deg, var(--gold), var(--teal), var(--gold));
        background-size: 200% 200%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s;
        animation: border-spin 4s linear infinite;
    }

@keyframes border-spin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.partner-item:hover::after {
    opacity: 1;
}

/* ---- Floating label on hero badge ---- */
.hero-badge {
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ---- Donate section glow pulse ---- */
.donate-card {
    animation: donate-glow 6s ease-in-out infinite;
}

@keyframes donate-glow {
    0%, 100% {
        box-shadow: var(--shadow-xl);
    }

    50% {
        box-shadow: 0 40px 100px rgba(27,123,140,0.35), 0 0 60px rgba(201,169,97,0.12);
    }
}

/* ---- Footer social hover ring ---- */
.footer-social a::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition-bounce);
}

.footer-social a {
    position: relative;
}

    .footer-social a:hover::before {
        opacity: 1;
        transform: scale(1);
    }

/* ---- Scroll progress bar ---- */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--teal));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ---- Custom cursor dot (desktop) ---- */


/* ---- Hero content entrance animation ---- */
@keyframes hero-slide-in {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: hero-slide-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---- Pulse ring on stat circle ---- */
.hero-stat-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(201,169,97,0.4);
    animation: ring-pulse 2.5s ease-out infinite;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ---- Improved focus styles ---- */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- AOS custom animations ---- */
[data-aos="flip-card"] {
    transform: rotateY(-30deg);
    opacity: 0;
    transition-property: transform, opacity;
}

    [data-aos="flip-card"].aos-animate {
        transform: rotateY(0);
        opacity: 1;
    }

/* ============================================
   صفحات داخلية + أدلة الحوكمة (Governance Guides)
   ============================================ */

/* ترويسة الصفحات الداخلية */
.page-hero {
    position: relative;
    background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--teal-dark) 100%);
    margin-top: 90px;
    padding: 70px 0 60px;
    overflow: hidden;
    text-align: center;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 18% 20%, rgba(201,169,97,0.13), transparent 42%), radial-gradient(circle at 85% 82%, rgba(42,157,181,0.16), transparent 46%);
        pointer-events: none;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 18px;
}

    .page-breadcrumb a {
        color: rgba(255,255,255,0.72);
        text-decoration: none;
        transition: var(--transition);
    }

        .page-breadcrumb a:hover {
            color: var(--gold-light);
        }

    .page-breadcrumb .sep {
        color: var(--gold);
        font-size: 0.55rem;
    }

    .page-breadcrumb .current {
        color: #fff;
        font-weight: 600;
    }

.page-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

    .page-hero-title::after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        margin: 16px auto 0;
        border-radius: 4px;
        background: linear-gradient(to left, var(--gold-light), var(--gold));
    }

.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.9;
}

/* قسم الأدلة */
.guides-section {
    padding: 64px 0;
    background: var(--bg-light);
}

.guides-year-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

    .guides-year-head .year-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary);
        color: #fff;
        padding: 10px 22px;
        border-radius: var(--radius-sm);
        font-weight: 700;
        font-size: 1.15rem;
        box-shadow: var(--shadow-teal);
    }

        .guides-year-head .year-badge i {
            color: var(--gold-light);
        }

    .guides-year-head .year-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(to left, var(--gold), transparent);
    }

.guides-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 40px 0 22px;
    padding-right: 14px;
    border-right: 4px solid var(--gold);
}

    .guides-subtitle i {
        color: var(--gold-dark);
    }

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.guide-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .guide-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(var(--gold), var(--gold-dark));
        transform: scaleY(0);
        transform-origin: top;
        transition: var(--transition);
    }

    .guide-card:hover {
        border-color: transparent;
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

        .guide-card:hover::before {
            transform: scaleY(1);
        }

.guide-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 1.4rem;
    transition: var(--transition);
}

.guide-card:hover .guide-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.guide-info {
    flex: 1;
    min-width: 0;
}

.guide-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 2px;
}

.guide-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.6;
}

.guide-action {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gray-100);
    color: var(--primary);
    transition: var(--transition);
}

.guide-card:hover .guide-action {
    background: var(--primary);
    color: #fff;
}

/* عنصر القائمة النشط */
.dropdown-item.active, .dropdown-item:active {
    background: rgba(19,72,80,0.08);
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 767px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 50px 0 44px;
    }

    .guides-section {
        padding: 44px 0;
    }
}


/* ============================================
   الجمعية العمومية - عرض السنوات والسداد
   ============================================ */
.assembly-section.ga-years-section {
    background: linear-gradient(160deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 64px 0;
    overflow: hidden;
}

.ga-intro-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border: 1px solid rgba(19,72,80,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 26px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

    .ga-intro-card::before {
        content: '';
        position: absolute;
        inset-inline-start: -70px;
        top: -90px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,169,97,0.16), transparent 68%);
    }

.ga-intro-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: var(--shadow-teal);
    position: relative;
    z-index: 1;
}

.ga-intro-text {
    position: relative;
    z-index: 1;
}

    .ga-intro-text h2 {
        font-size: clamp(1.45rem, 3vw, 2.15rem);
        font-weight: 800;
        color: var(--primary);
        margin: 0 0 8px;
    }

    .ga-intro-text p {
        color: var(--gray-500);
        margin: 0;
        line-height: 1.9;
        max-width: 820px;
    }

.ga-years-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

    .ga-years-tabs a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        padding: 10px 18px;
        border-radius: 999px;
        background: #fff;
        color: var(--primary);
        border: 1px solid rgba(19,72,80,0.12);
        font-weight: 800;
        box-shadow: var(--shadow-sm);
    }

        .ga-years-tabs a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-teal);
        }

.ga-years-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ga-year-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(19,72,80,0.08);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    scroll-margin-top: 115px;
}

    .ga-year-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.ga-year-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    background: linear-gradient(135deg, var(--primary-dark), var(--teal));
    position: relative;
    overflow: hidden;
}

    .ga-year-cover::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
        background-size: 26px 26px;
        opacity: 0.75;
    }

    .ga-year-cover > * {
        position: relative;
        z-index: 1;
    }

.ga-year-label {
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
}

.ga-year-cover h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
    margin: 2px 0 0;
    line-height: 1;
}

.ga-progress-ring {
    --size: 86px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--gold) calc(var(--value) * 1%), rgba(255,255,255,0.18) 0);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

    .ga-progress-ring::before {
        content: '';
        position: absolute;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: var(--primary-dark);
    }

    .ga-progress-ring span {
        position: relative;
        color: #fff;
        font-weight: 900;
        font-size: 1.05rem;
    }

.ga-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
    background: #fff;
}

.ga-stat-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 16px 10px;
    text-align: center;
    transition: var(--transition);
}

    .ga-stat-item:hover {
        background: rgba(201,169,97,0.08);
        border-color: rgba(201,169,97,0.35);
    }

    .ga-stat-item i {
        color: var(--gold-dark);
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .ga-stat-item strong {
        display: block;
        color: var(--primary);
        font-size: 1.65rem;
        font-weight: 900;
        line-height: 1.1;
    }

    .ga-stat-item small {
        color: var(--gray-500);
        font-weight: 700;
        font-size: 0.78rem;
    }

.ga-members-panel {
    padding: 0 18px 20px;
}

.ga-members-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 2px;
}

    .ga-members-head h3 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        margin: 0;
        color: var(--primary);
        font-weight: 800;
    }

        .ga-members-head h3 i {
            color: var(--gold-dark);
        }

    .ga-members-head span {
        background: rgba(27,123,140,0.09);
        color: var(--primary);
        padding: 5px 12px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 800;
    }

.ga-table-wrap {
    max-height: 390px;
    overflow: auto;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
}

.ga-members-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}

    .ga-members-table thead th {
        position: sticky;
        top: 0;
        background: var(--gray-50);
        color: var(--primary);
        font-weight: 800;
        padding: 12px 14px;
        border-bottom: 1px solid var(--gray-200);
        z-index: 2;
    }

    .ga-members-table tbody td {
        padding: 11px 14px;
        border-bottom: 1px solid var(--gray-100);
        vertical-align: middle;
    }

    .ga-members-table tbody tr:last-child td {
        border-bottom: none;
    }

    .ga-members-table tbody tr:hover {
        background: rgba(27,123,140,0.04);
    }

.ga-row-num {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(19,72,80,0.08);
    color: var(--primary);
    font-weight: 900;
    font-size: 0.75rem;
}

.ga-member-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    font-weight: 700;
    color: var(--gray-900);
}

.ga-mini-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.ga-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

    .ga-status.paid {
        color: #0f7a45;
        background: rgba(16,185,129,0.11);
    }

    .ga-status.unpaid {
        color: #a15c00;
        background: rgba(245,158,11,0.13);
    }

@media (max-width: 991px) {
    .ga-years-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ga-intro-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .ga-year-cover {
        padding: 22px;
    }

    .ga-stats-row {
        grid-template-columns: 1fr;
    }

    .ga-table-wrap {
        max-height: 430px;
    }

    .ga-members-table {
        min-width: 560px;
    }
}

/* ============================================
   الجمعية العمومية - عرض سنتين فقط
   ============================================ */
.ga-two-years-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    padding: 64px 0;
}

.ga-compact-intro {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border: 1px solid rgba(19,72,80,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

    .ga-compact-intro::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 20%, rgba(201,169,97,0.10), transparent 38%), radial-gradient(circle at 90% 80%, rgba(27,123,140,0.08), transparent 42%);
        pointer-events: none;
    }

    .ga-compact-intro > * {
        position: relative;
        z-index: 1;
    }

.ga-intro-side {
    margin-right: auto;
    min-width: 150px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: var(--shadow-teal);
}

    .ga-intro-side strong {
        display: block;
        font-size: 1.65rem;
        font-weight: 900;
        line-height: 1;
        color: var(--gold-light);
    }

    .ga-intro-side span {
        display: block;
        margin-top: 8px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.86);
    }

.ga-summary-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 26px 0 18px;
}

.ga-summary-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

    .ga-summary-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201,169,97,0.35);
    }

    .ga-summary-item i {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(19,72,80,0.08);
        color: var(--primary);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .ga-summary-item span {
        display: block;
        color: var(--gray-500);
        font-size: 0.8rem;
        font-weight: 700;
    }

    .ga-summary-item strong {
        display: block;
        color: var(--primary);
        font-size: 1.4rem;
        font-weight: 900;
        line-height: 1.2;
    }

.ga-two-tabs {
    justify-content: center;
    margin: 18px 0 28px;
}

.ga-two-years-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.ga-modern-year-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(19,72,80,0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
}

    .ga-modern-year-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 5px;
        background: linear-gradient(to left, var(--gold), var(--teal));
    }

    .ga-modern-year-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
    }

.ga-year-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 28px 18px;
    background: linear-gradient(135deg, rgba(19,72,80,0.05), rgba(201,169,97,0.06));
}

    .ga-year-top h3 {
        margin: 6px 0 0;
        font-size: 2.4rem;
        font-weight: 900;
        color: var(--primary);
    }

.ga-year-percent {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

    .ga-year-percent strong {
        color: #fff;
        font-size: 1.7rem;
        font-weight: 900;
        line-height: 1;
    }

    .ga-year-percent span {
        font-size: 0.7rem;
        font-weight: 700;
        margin-top: 6px;
        color: rgba(255,255,255,0.9);
    }

.ga-year-stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 24px 12px;
}

    .ga-year-stats-box div {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        padding: 15px 10px;
        text-align: center;
    }

    .ga-year-stats-box span {
        display: block;
        font-size: 0.76rem;
        color: var(--gray-500);
        font-weight: 700;
        margin-bottom: 6px;
    }

    .ga-year-stats-box strong {
        display: block;
        font-size: 1.45rem;
        color: var(--primary);
        font-weight: 900;
        line-height: 1;
    }

.ga-payment-bar {
    height: 10px;
    margin: 6px 28px 22px;
    background: var(--gray-100);
    border-radius: 30px;
    overflow: hidden;
}

    .ga-payment-bar span {
        display: block;
        height: 100%;
        background: linear-gradient(to left, var(--teal), var(--gold));
        border-radius: inherit;
    }

.ga-members-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 28px 16px;
}

    .ga-members-headline h4 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--primary);
    }

        .ga-members-headline h4 i {
            color: var(--gold-dark);
            margin-left: 7px;
        }

.ga-paid-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(34,197,94,0.10);
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.ga-member-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 28px 28px;
}

.ga-member-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 10px 12px;
    transition: var(--transition);
    position: relative;
}

    .ga-member-chip:hover {
        transform: translateX(-4px);
        box-shadow: var(--shadow-sm);
        border-color: rgba(201,169,97,0.45);
    }

    .ga-member-chip::after {
        content: '';
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #22c55e;
        margin-right: auto;
        box-shadow: 0 0 0 5px rgba(34,197,94,0.12);
    }

    .ga-member-chip.unpaid::after {
        background: #ef4444;
        box-shadow: 0 0 0 5px rgba(239,68,68,0.12);
    }

.ga-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.ga-member-chip span:last-child {
    color: var(--gray-900);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .ga-summary-strip,
    .ga-two-years-grid {
        grid-template-columns: 1fr;
    }

    .ga-compact-intro {
        align-items: flex-start;
    }

    .ga-intro-side {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .ga-compact-intro {
        flex-direction: column;
        padding: 22px;
    }

    .ga-intro-side {
        width: 100%;
    }

    .ga-year-top {
        padding: 24px 20px 16px;
    }

    .ga-year-stats-box {
        grid-template-columns: 1fr;
        padding: 18px 20px 10px;
    }

    .ga-payment-bar {
        margin: 6px 20px 20px;
    }

    .ga-members-headline {
        padding: 0 20px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ga-member-chips {
        padding: 0 20px 24px;
    }
}


/* ============================================
   صفحة اللجان - Committees Page
   ============================================ */
.committees-section {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

    .committees-section::before {
        content: '';
        position: absolute;
        top: -160px;
        right: -160px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,169,97,0.10), transparent 70%);
        pointer-events: none;
    }

.committees-intro-card {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 22px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(201,169,97,0.28);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

    .committees-intro-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(27,123,140,0.045) 1.5px, transparent 1.5px);
        background-size: 24px 24px;
        opacity: 0.7;
        pointer-events: none;
    }

.committees-intro-icon,
.committees-intro-content,
.committees-intro-stats {
    position: relative;
    z-index: 1;
}

.committees-intro-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 2rem;
    box-shadow: var(--shadow-teal);
}

.committees-intro-content h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: var(--primary);
}

.committees-intro-content p {
    margin: 0;
    color: var(--gray-500);
    line-height: 1.9;
    max-width: 720px;
}

.committees-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-width: 310px;
}

    .committees-intro-stats div {
        background: linear-gradient(135deg, rgba(19,72,80,0.06), rgba(201,169,97,0.08));
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        padding: 16px 12px;
        text-align: center;
    }

    .committees-intro-stats strong {
        display: block;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
    }

    .committees-intro-stats span {
        display: block;
        margin-top: 7px;
        font-size: 0.78rem;
        color: var(--gray-500);
        font-weight: 800;
    }

.committees-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.committee-side-card {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary) 55%, var(--teal));
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: #fff;
    box-shadow: var(--shadow-teal);
    position: relative;
    overflow: hidden;
}

    .committee-side-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 20%, rgba(201,169,97,0.25), transparent 38%), radial-gradient(circle at 90% 90%, rgba(255,255,255,0.08), transparent 45%);
        pointer-events: none;
    }

    .committee-side-card > * {
        position: relative;
        z-index: 1;
    }

.side-card-label {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(201,169,97,0.18);
    border: 1px solid rgba(201,169,97,0.35);
    color: var(--gold-light);
    font-weight: 800;
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.committee-side-card h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.committee-side-card p {
    margin: 0 0 26px;
    color: rgba(255,255,255,0.82);
    line-height: 1.95;
}

.progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
}

    .progress-info strong {
        color: var(--gold-light);
    }

.progress-line {
    height: 10px;
    border-radius: 30px;
    background: rgba(255,255,255,0.14);
    overflow: hidden;
}

    .progress-line span {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(to left, var(--gold-light), var(--gold));
    }

.committee-main-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

    .committee-main-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 5px;
        background: linear-gradient(to left, var(--gold), var(--teal));
    }

.committee-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.committee-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 900;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.committee-main-head h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 900;
}

.committee-count {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

    .committee-count strong {
        color: #fff;
        font-size: 1.85rem;
        line-height: 1;
        font-weight: 900;
    }

    .committee-count span {
        color: rgba(255,255,255,0.92);
        font-size: 0.75rem;
        font-weight: 800;
        margin-top: 5px;
    }

.committee-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.committee-member-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-slow);
}

    .committee-member-card:hover {
        background: #fff;
        border-color: rgba(201,169,97,0.45);
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.committee-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: var(--shadow-teal);
}

.committee-member-card span {
    display: block;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.committee-member-card h4 {
    margin: 0;
    color: var(--gray-900);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.65;
}

.committee-tasks-block {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
}

.tasks-block-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 28px;
}

    .tasks-block-head h2 {
        color: var(--primary);
        font-weight: 900;
        margin: 0 0 10px;
    }

    .tasks-block-head p {
        color: var(--gray-500);
        margin: 0;
        line-height: 1.85;
    }

.committee-tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.committee-task-card {
    position: relative;
    background: linear-gradient(180deg, var(--gray-50), #fff);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    padding: 30px 20px 24px;
    text-align: center;
    transition: var(--transition-slow);
    overflow: hidden;
}

    .committee-task-card:hover {
        transform: translateY(-8px);
        border-color: rgba(201,169,97,0.45);
        box-shadow: var(--shadow-lg);
    }

.task-number {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(19,72,80,0.07);
    line-height: 1;
}

.task-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 1.45rem;
    box-shadow: var(--shadow-teal);
    transition: var(--transition-bounce);
}

.committee-task-card:hover .task-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    transform: rotate(-8deg) scale(1.08);
    box-shadow: var(--shadow-gold);
}

.committee-task-card h3 {
    margin: 0;
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .committees-intro-card {
        grid-template-columns: 80px 1fr;
    }

    .committees-intro-stats {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .committee-members-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .committees-layout {
        grid-template-columns: 1fr;
    }

    .committee-tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .committees-intro-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .committees-intro-icon {
        margin: 0 auto;
    }

    .committees-intro-stats {
        grid-template-columns: 1fr;
    }

    .committee-main-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .committee-tasks-grid {
        grid-template-columns: 1fr;
    }

    .committee-tasks-block, .committee-main-card, .committee-side-card {
        padding: 24px 20px;
    }
}


/* ============================================
   صفحة المدير التنفيذي
   ============================================ */
.ceo-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    padding: 64px 0;
    overflow: hidden;
}

.ceo-profile-card {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 34px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

    .ceo-profile-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 18%, rgba(201,169,97,0.13), transparent 34%), radial-gradient(circle at 88% 78%, rgba(27,123,140,0.10), transparent 38%);
        pointer-events: none;
    }

.ceo-photo-panel,
.ceo-info-panel {
    position: relative;
    z-index: 1;
}

.ceo-photo-panel {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    border-radius: 30px;
    padding: 28px;
    color: #fff;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .ceo-photo-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
        background-size: 24px 24px;
        opacity: 0.8;
    }

.ceo-photo-frame {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 190px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}

.ceo-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    font-size: 4.5rem;
}

.ceo-photo-caption {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .ceo-photo-caption h3 {
        color: #fff;
        font-size: 1.35rem;
        font-weight: 900;
        margin: 0 0 8px;
    }

    .ceo-photo-caption span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--gold-light);
        font-weight: 800;
        font-size: 0.9rem;
    }

.ceo-contact-strip {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

    .ceo-contact-strip a,
    .ceo-contact-strip div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 15px;
        background: rgba(255,255,255,0.09);
        border: 1px solid rgba(255,255,255,0.13);
        color: rgba(255,255,255,0.9);
        font-size: 0.86rem;
        font-weight: 700;
    }

    .ceo-contact-strip i {
        color: var(--gold-light);
    }

.ceo-info-panel {
    padding: 10px 0;
}

.ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(201,169,97,0.12);
    color: var(--gold-dark);
    font-weight: 900;
    font-size: 0.84rem;
    margin-bottom: 16px;
}

.ceo-info-panel h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 900;
    margin: 0 0 16px;
}

.ceo-lead {
    color: var(--gray-500);
    line-height: 2;
    font-size: 1.02rem;
    margin: 0 0 26px;
    max-width: 760px;
}

.ceo-signature-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

    .ceo-signature-box .sig-item {
        background: linear-gradient(180deg, var(--gray-50), #fff);
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        padding: 18px 16px;
        text-align: center;
    }

.sig-item i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    box-shadow: var(--shadow-teal);
}

.sig-item strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 900;
}

.sig-item span {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 2px;
}

.ceo-message-card {
    background: linear-gradient(140deg, var(--primary-dark), var(--primary));
    border-radius: 24px;
    padding: 28px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 28px;
}

    .ceo-message-card::before {
        content: '\f10d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 24px;
        top: 16px;
        font-size: 4rem;
        color: rgba(201,169,97,0.17);
    }

    .ceo-message-card h3 {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 900;
        margin: 0 0 12px;
    }

    .ceo-message-card p {
        color: rgba(255,255,255,0.85);
        line-height: 2;
        margin: 0;
    }

.ceo-grid-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}

.ceo-block-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .ceo-block-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.35);
    }

.ceo-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.ceo-block-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}

.ceo-block-head h3 {
    margin: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.ceo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

    .ceo-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--gray-700);
        font-weight: 600;
        line-height: 1.8;
    }

        .ceo-list li i {
            color: var(--gold-dark);
            margin-top: 6px;
            flex-shrink: 0;
        }

.ceo-values-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.ceo-value-item {
    background: linear-gradient(180deg, #fff, var(--gray-50));
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition-slow);
}

    .ceo-value-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(27,123,140,0.22);
    }

    .ceo-value-item i {
        font-size: 1.55rem;
        color: var(--teal);
        margin-bottom: 12px;
    }

    .ceo-value-item h4 {
        margin: 0;
        color: var(--gray-900);
        font-size: 1rem;
        font-weight: 900;
    }

@media (max-width: 1199px) {
    .ceo-profile-card {
        grid-template-columns: 290px 1fr;
    }

    .ceo-signature-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .ceo-profile-card {
        grid-template-columns: 1fr;
    }

    .ceo-photo-panel {
        min-height: auto;
    }

    .ceo-grid-blocks {
        grid-template-columns: 1fr;
    }

    .ceo-values-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ceo-section {
        padding: 44px 0;
    }

    .ceo-profile-card {
        padding: 20px;
        border-radius: 28px;
    }

    .ceo-photo-panel, .ceo-block-card, .ceo-message-card {
        padding: 24px 20px;
    }

    .ceo-values-strip {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   صفحة الأخبار / المركز الإعلامي
   ============================================ */
.news-page-hero::after {
    content: '';
    position: absolute;
    inset: auto 8% -60px auto;
    width: 190px;
    height: 190px;
    border: 34px solid rgba(201,169,97,0.08);
    border-radius: 50%;
}

.media-news-section {
    background: linear-gradient(180deg, var(--bg-light), #fff 45%, var(--bg-light));
    padding: 64px 0;
    overflow: hidden;
}

.featured-news-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 0;
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,169,97,0.2);
    margin-bottom: 34px;
}

.featured-news-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

    .featured-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,68,80,.62), transparent 58%);
}

.featured-news-label {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.92);
    color: var(--primary);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .85rem;
    font-weight: 800;
}

    .featured-news-label i {
        color: var(--gold-dark);
    }

.featured-news-content {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .featured-news-content::before {
        content: '';
        position: absolute;
        inset: 28px auto auto 28px;
        width: 90px;
        height: 90px;
        background: radial-gradient(circle, rgba(201,169,97,.14), transparent 70%);
        border-radius: 50%;
    }

.news-pill {
    width: fit-content;
    background: rgba(27,123,140,.09);
    color: var(--teal);
    border: 1px solid rgba(27,123,140,.14);
    border-radius: 50px;
    padding: 7px 18px;
    font-weight: 800;
    font-size: .82rem;
    margin-bottom: 18px;
}

.featured-news-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.featured-news-content p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.95;
    margin-bottom: 18px;
}

.featured-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--gray-500);
    font-size: .9rem;
    font-weight: 700;
}

    .featured-news-meta i {
        color: var(--gold-dark);
        margin-left: 6px;
    }

.media-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 36px;
}

.media-stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 25px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .media-stat-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201,169,97,.45);
    }

    .media-stat-card i {
        width: 54px;
        height: 54px;
        display: grid;
        place-items: center;
        margin: 0 auto 12px;
        border-radius: 16px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--teal));
        font-size: 1.25rem;
    }

    .media-stat-card strong {
        display: block;
        font-size: 2rem;
        font-weight: 900;
        color: var(--gold-dark);
        line-height: 1;
        margin-bottom: 7px;
    }

    .media-stat-card span {
        color: var(--gray-600);
        font-weight: 700;
    }

.news-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

    .news-filter-bar a {
        padding: 10px 22px;
        border-radius: 50px;
        background: #fff;
        color: var(--gray-700);
        border: 1px solid var(--gray-200);
        font-weight: 800;
        box-shadow: var(--shadow-sm);
    }

        .news-filter-bar a.active,
        .news-filter-bar a:hover {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
        }

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-news-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .media-news-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,.32);
    }

.media-news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .media-news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
    }

.media-news-card:hover .media-news-img img {
    transform: scale(1.07);
}

.media-news-img span {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.94);
    color: var(--teal);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 900;
}

.media-news-body {
    padding: 24px 22px 22px;
}

    .media-news-body small {
        color: var(--gray-500);
        font-weight: 700;
    }

        .media-news-body small i {
            color: var(--gold-dark);
            margin-left: 5px;
        }

    .media-news-body h3 {
        font-size: 1.15rem;
        font-weight: 900;
        line-height: 1.55;
        margin: 10px 0 9px;
        color: var(--dark);
    }

    .media-news-body p {
        color: var(--gray-500);
        font-size: .9rem;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .media-news-body a {
        color: var(--teal);
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

        .media-news-body a:hover {
            color: var(--gold-dark);
            gap: 12px;
        }

.media-gallery-block,
.news-archive-block {
    margin-top: 52px;
    background: #fff;
    border-radius: 30px;
    padding: 34px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 16px;
}

    .media-gallery-grid div {
        height: 250px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

        .media-gallery-grid div:first-child {
            height: 330px;
            grid-row: span 2;
        }

    .media-gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s ease;
    }

    .media-gallery-grid div:hover img {
        transform: scale(1.06);
    }

.archive-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .archive-title i {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #fff;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    }

    .archive-title h3 {
        margin: 0;
        font-weight: 900;
        color: var(--primary);
    }

.archive-years {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

    .archive-years a {
        background: linear-gradient(180deg, var(--gray-50), #fff);
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        padding: 18px;
        text-align: center;
    }

        .archive-years a:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(27,123,140,.25);
        }

    .archive-years strong {
        display: block;
        color: var(--primary);
        font-size: 1.45rem;
        font-weight: 900;
    }

    .archive-years span {
        color: var(--gray-500);
        font-weight: 700;
    }

@media (max-width: 991px) {
    .featured-news-card {
        grid-template-columns: 1fr;
    }

    .featured-news-image {
        min-height: 320px;
    }

    .media-stats-grid, .archive-years {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-gallery-grid {
        grid-template-columns: 1fr;
    }

        .media-gallery-grid div, .media-gallery-grid div:first-child {
            height: 260px;
            grid-row: auto;
        }
}

@media (max-width: 575px) {
    .media-news-section {
        padding: 44px 0;
    }

    .featured-news-content {
        padding: 34px 24px;
    }

    .media-stats-grid, .news-grid-modern, .archive-years {
        grid-template-columns: 1fr;
    }

    .media-gallery-block, .news-archive-block {
        padding: 24px 18px;
    }

    .gallery-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   تعديل تمركز صورة المدير التنفيذي
   ============================================ */
.ceo-photo-holder {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ceo-photo-frame.ceo-photo-real {
    width: 210px;
    height: 210px;
    margin: 0 auto 22px;
    border-radius: 50%;
    padding: 7px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .ceo-photo-frame.ceo-photo-real img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

.ceo-photo-panel .ceo-photo-caption {
    width: 100%;
    margin: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .ceo-photo-frame.ceo-photo-real {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 575px) {
    .ceo-photo-frame.ceo-photo-real {
        width: 170px;
        height: 170px;
    }
}

/* ============================================
   التنسيقات المسترجعة للصفحات السابقة
   policies / annual-reports / financial-reports / about / board
   ============================================ */

/* ============================================
   صفحة لوائح وسياسات الجمعية (Policies Page)
   ============================================ */
.policies-section {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

    .policies-section::before {
        content: '';
        position: absolute;
        top: -160px;
        right: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,169,97,0.10) 0%, transparent 70%);
        pointer-events: none;
    }

    .policies-section::after {
        content: '';
        position: absolute;
        bottom: -180px;
        left: -120px;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(27,123,140,0.09) 0%, transparent 70%);
        pointer-events: none;
    }

    .policies-section .container {
        position: relative;
        z-index: 1;
    }

.policies-intro {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.policies-intro-icon {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 2rem;
    box-shadow: var(--shadow-teal);
    position: relative;
}

    .policies-intro-icon::after {
        content: '';
        position: absolute;
        inset: -8px;
        border: 2px solid rgba(201,169,97,0.25);
        border-radius: 30px;
    }

.policies-intro .section-title {
    margin-bottom: 10px;
}

.policies-intro p {
    color: var(--gray-500);
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
}

.policies-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.policies-count,
.policies-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

    .policies-count i,
    .policies-note i {
        color: var(--gold-dark);
    }

    .policies-count strong {
        color: var(--gold-dark);
    }

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.policy-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .policy-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,169,97,0.09), rgba(27,123,140,0.06));
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .policy-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .policy-card:hover {
        transform: translateY(-8px);
        border-color: rgba(201,169,97,0.35);
        box-shadow: var(--shadow-lg);
    }

        .policy-card:hover::before {
            opacity: 1;
        }

        .policy-card:hover::after {
            transform: scaleX(1);
        }

.policy-card-top,
.policy-title,
.policy-desc,
.policy-actions {
    position: relative;
    z-index: 1;
}

.policy-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.policy-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-teal);
    transition: var(--transition-bounce);
}

.policy-card:hover .policy-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    transform: rotate(-7deg) scale(1.06);
    box-shadow: var(--shadow-gold);
}

.policy-num {
    background: rgba(201,169,97,0.12);
    color: var(--gold-dark);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.policy-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.65;
    margin-bottom: 10px;
}

.policy-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 22px;
    flex: 1;
}

.policy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.policy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    transition: var(--transition-bounce);
}

    .policy-btn.view {
        background: rgba(27,123,140,0.09);
        color: var(--primary);
        border: 1px solid rgba(27,123,140,0.18);
    }

    .policy-btn.download {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: #fff;
        border: 1px solid var(--gold);
        box-shadow: 0 8px 18px rgba(201,169,97,0.22);
    }

    .policy-btn:hover {
        transform: translateY(-3px);
    }

    .policy-btn.view:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    .policy-btn.download:hover {
        color: #fff;
        box-shadow: var(--shadow-gold);
    }

@media (max-width: 1199px) {
    .policies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policies-intro {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .policies-section {
        padding: 44px 0;
    }

    .policies-intro {
        flex-direction: column;
        padding: 24px;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policies-toolbar {
        align-items: stretch;
    }

    .policies-count, .policies-note {
        width: 100%;
        justify-content: center;
    }
}



/* ============================================
   صفحة التقارير السنوية للبرامج والأنشطة - تصميم مختصر ومنظم
   ============================================ */
.annual-page-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.13), transparent 68%);
    top: -140px;
    left: -120px;
    pointer-events: none;
}

.annual-reports-section {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.annual-compact-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

    .annual-compact-head .section-title {
        margin-bottom: 8px;
    }

        .annual-compact-head .section-title::after {
            content: '';
            display: block;
            width: 58px;
            height: 4px;
            margin: 16px auto 0;
            border-radius: 5px;
            background: linear-gradient(to left, var(--gold), var(--teal));
        }

    .annual-compact-head p {
        margin: 0;
        color: var(--gray-500);
        font-size: 1rem;
    }

.annual-years-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.annual-year-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229,231,235,0.95);
    border-radius: 26px;
    padding: 26px 22px 22px;
    min-height: 260px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .annual-year-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 18%, rgba(201,169,97,0.14), transparent 34%), radial-gradient(circle at 90% 95%, rgba(27,123,140,0.12), transparent 42%);
        opacity: 0.85;
        pointer-events: none;
    }

    .annual-year-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }

    .annual-year-card:hover {
        transform: translateY(-9px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.42);
    }

        .annual-year-card:hover::after {
            transform: scaleX(1);
        }

    .annual-year-card > * {
        position: relative;
        z-index: 1;
    }

.annual-year-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.annual-year {
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.annual-year-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}

.annual-year-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 22px;
    color: #fff;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: var(--shadow-teal);
    transition: var(--transition-bounce);
}

.annual-year-card:hover .annual-year-icon {
    transform: rotate(-7deg) scale(1.07);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}

.annual-year-card h3 {
    margin: 0 0 20px;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--dark);
}

.annual-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.annual-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--gold-dark);
    background: rgba(201,169,97,0.12);
    border: 1px solid rgba(201,169,97,0.24);
    transition: var(--transition-bounce);
}

    .annual-mini-btn.primary {
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--teal));
        border-color: transparent;
        box-shadow: var(--shadow-teal);
    }

    .annual-mini-btn:hover {
        transform: translateY(-3px);
        color: #fff;
        background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
        box-shadow: var(--shadow-gold);
    }

    .annual-mini-btn.primary:hover {
        background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    }

@media (max-width: 1199px) {
    .annual-years-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .annual-reports-section {
        padding: 44px 0;
    }

    .annual-years-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .annual-year-card {
        min-height: auto;
        padding: 24px 20px 20px;
    }

    .annual-year {
        font-size: 2.35rem;
    }
}



/* ============================================
   صفحة التقارير المالية - نفس نمط التقارير السنوية
   ============================================ */
.financial-page-hero::after {
    background: radial-gradient(circle, rgba(201,169,97,0.16), transparent 68%);
}

.financial-reports-section .annual-year-icon {
    background: linear-gradient(135deg, var(--primary), var(--teal-dark));
}

.financial-year-card .annual-year {
    color: var(--primary-dark);
}

.financial-year-card:hover .annual-year-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

/* ============================================
   صفحة عن الجمعية
   ============================================ */
.about-page-hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: -90px;
    top: -90px;
    background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 70%);
    pointer-events: none;
}

.about-inner-section {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, #fff 62%, var(--bg-light) 100%);
    overflow: hidden;
}

.about-intro-card {
    background: #fff;
    border: 1px solid rgba(201,169,97,0.22);
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .about-intro-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 8% 12%, rgba(201,169,97,0.08), transparent 36%), radial-gradient(circle at 92% 85%, rgba(27,123,140,0.08), transparent 34%);
        pointer-events: none;
    }

    .about-intro-card > * {
        position: relative;
        z-index: 1;
    }

.about-inner-text {
    color: var(--gray-500);
    font-size: 1.03rem;
    line-height: 1.95;
    max-width: 620px;
    margin-bottom: 26px;
}

.about-short-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(27,123,140,0.08);
    border: 2px solid rgba(27,123,140,0.22);
    transition: var(--transition-bounce);
}

    .btn-outline-teal:hover {
        transform: translateY(-4px);
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--teal));
        box-shadow: var(--shadow-teal);
    }

.about-inner-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-xl);
}

    .about-inner-image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .about-inner-image:hover img {
        transform: scale(1.05);
    }

    .about-inner-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(14,68,80,0.72), transparent 58%);
    }

.about-license-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.26);
    backdrop-filter: blur(14px);
}

    .about-license-badge i {
        color: var(--gold-light);
        font-size: 1.25rem;
    }

    .about-license-badge span {
        font-weight: 700;
        opacity: 0.9;
    }

    .about-license-badge strong {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 58px;
        height: 36px;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
        box-shadow: var(--shadow-gold);
    }

.about-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 26px 0;
}

.about-quick-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .about-quick-item i {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--teal));
    }

    .about-quick-item:hover {
        transform: translateY(-5px);
        border-color: rgba(201,169,97,0.38);
        box-shadow: var(--shadow-md);
    }

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}

.vmv-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    min-height: 235px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

    .vmv-card::before {
        content: '';
        position: absolute;
        inset-inline: 0;
        top: 0;
        height: 4px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }

    .vmv-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.35);
    }

        .vmv-card:hover::before {
            transform: scaleX(1);
        }

.vmv-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: var(--shadow-teal);
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.vmv-card:hover .vmv-icon {
    transform: rotate(-7deg) scale(1.07);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}

.vmv-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.vmv-card p {
    color: var(--gray-500);
    line-height: 1.9;
    margin: 0;
}

.goals-block {
    margin-top: 52px;
}

.goals-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

    .goals-head .section-title {
        margin: 0;
    }

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.goal-card {
    position: relative;
    background: linear-gradient(145deg, #fff, var(--gray-50));
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 20px 24px;
    text-align: center;
    min-height: 185px;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

    .goal-card span {
        position: absolute;
        top: 16px;
        left: 18px;
        font-size: 2.6rem;
        line-height: 1;
        font-weight: 900;
        color: rgba(27,123,140,0.07);
    }

    .goal-card i {
        width: 62px;
        height: 62px;
        display: grid;
        place-items: center;
        margin: 0 auto 18px;
        border-radius: 50%;
        color: #fff;
        font-size: 1.45rem;
        background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
        box-shadow: var(--shadow-gold);
        transition: var(--transition-bounce);
    }

    .goal-card h4 {
        font-size: 1.05rem;
        font-weight: 900;
        margin: 0;
        color: var(--primary);
    }

    .goal-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.35);
    }

        .goal-card:hover i {
            transform: scale(1.08) rotate(-6deg);
            background: linear-gradient(135deg, var(--primary), var(--teal));
            box-shadow: var(--shadow-teal);
        }

@media (max-width: 991px) {
    .about-quick-grid, .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .about-inner-section {
        padding: 44px 0;
    }

    .about-quick-grid, .goals-grid {
        grid-template-columns: 1fr;
    }

    .about-short-actions {
        flex-direction: column;
    }

    .btn-outline-teal {
        width: 100%;
    }

    .about-inner-image, .about-inner-image img {
        min-height: 280px;
        height: 280px;
    }

    .goals-head {
        display: block;
    }
}

/* ============================================
   صفحة أعضاء مجلس الإدارة + الصور الشخصية
   ============================================ */
.board-section {
    padding: 64px 0;
    background: linear-gradient(160deg, var(--bg-light) 0%, #fff 100%);
}

.board-summary-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border: 1px solid rgba(19,72,80,0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

    .board-summary-card::before {
        content: '';
        position: absolute;
        inset-inline-start: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--gold), var(--teal));
    }

.board-summary-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    box-shadow: var(--shadow-teal);
}

.board-summary-text {
    flex: 1;
}

    .board-summary-text span {
        color: var(--gold-dark);
        font-weight: 800;
        font-size: .85rem;
    }

    .board-summary-text h2 {
        margin: 3px 0 0;
        color: var(--primary);
        font-weight: 900;
    }

.board-summary-meta {
    display: flex;
    gap: 14px;
}

    .board-summary-meta div {
        min-width: 88px;
        padding: 12px 14px;
        border-radius: 16px;
        background: var(--gray-50);
        text-align: center;
    }

    .board-summary-meta strong {
        display: block;
        color: var(--primary);
        font-size: 1.35rem;
        line-height: 1;
    }

    .board-summary-meta small {
        color: var(--gray-500);
        font-weight: 700;
    }

.chairman-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    margin-bottom: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--teal));
    color: #fff;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

    .chairman-card::after {
        content: '';
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        left: -70px;
        bottom: -100px;
        background: rgba(201,169,97,0.16);
    }

.chairman-info {
    position: relative;
    z-index: 1;
    flex: 1;
}

    .chairman-info h3 {
        color: #fff;
        margin: 8px 0 0;
        font-size: 1.65rem;
    }

.chairman-seal {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.board-member-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

    .board-member-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 5px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }

    .board-member-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.35);
    }

        .board-member-card:hover::before {
            transform: scaleX(1);
        }

.member-photo {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--gold-light), var(--teal));
    box-shadow: 0 12px 30px rgba(19,72,80,0.18);
    position: relative;
    display: grid;
    place-items: center;
}

    .member-photo::after {
        content: '';
        position: absolute;
        inset: 10px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.45);
        pointer-events: none;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        background: #fff;
        position: relative;
        z-index: 2;
    }

.photo-fallback {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff, var(--gray-100));
    color: var(--primary);
    font-size: 1.55rem;
    font-weight: 900;
    z-index: 1;
}

.chairman-photo {
    width: 142px;
    height: 142px;
    margin: 0;
    flex: 0 0 auto;
    box-shadow: 0 18px 42px rgba(0,0,0,0.25);
}

.member-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(201,169,97,0.12);
    color: var(--gold-dark);
    font-size: .82rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.main-role {
    background: rgba(255,255,255,0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201,169,97,0.35);
}

.board-member-card h3 {
    font-size: 1.08rem;
    margin: 0;
    color: var(--primary);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chairman-card {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .board-summary-card, .chairman-card {
        flex-direction: column;
        text-align: center;
    }

    .board-summary-meta {
        width: 100%;
        justify-content: center;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .chairman-photo {
        margin: 0 auto;
    }
}



.project-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229,231,235,0.95);
    border-radius: 26px;
    padding: 26px 22px 22px;
    min-height: 160px;
    max-height: 200px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

    .project-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 18%, rgba(201,169,97,0.14), transparent 34%), radial-gradient(circle at 90% 95%, rgba(27,123,140,0.12), transparent 42%);
        opacity: 0.85;
        pointer-events: none;
    }

    .project-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to left, var(--gold), var(--teal));
        transform: scaleX(0);
        transform-origin: right;
        transition: var(--transition);
    }

    .project-card:hover {
        transform: translateY(-9px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(201,169,97,0.42);
    }


.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
}

    .card-header i {
        font-size: 3em;
        color: var(--gold-dark);
    }



.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain; /* يحافظ على نسب الصورة بدون تشويه */
    margin-bottom: 15px; /* عدّل حسب المسافة الموجودة عندك */
    display: block;
    border-radius: 20px;
}
