/* ===== جميع الأنماط ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    color: #1e2a3a;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --primary-blue: #0a2b4e;
    --primary-gold: #c9a84c;
    --light-gold: #f3e9ce;
    --dark-blue: #061e33;
    --accent-blue: #1a4b7a;
    --text-light: #f0f4f8;
}

/* ===== شاشة التحميل (Loading Screen) ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .loader-wrapper.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-content {
    text-align: center;
    padding: 30px;
    animation: pulseLoader 2s infinite ease-in-out;
}

@keyframes pulseLoader {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    animation: floatLogo 3s infinite ease-in-out;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.loader-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

    .loader-title span {
        color: var(--primary-gold);
    }

.loader-bar-container {
    width: 300px;
    max-width: 80vw;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), #e8c84a);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.loader-percentage {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ===== القائمة الجانبية (Sidebar) ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    overflow-y: auto;
}

    .sidebar.open {
        right: 0;
    }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.logo-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

    .logo-sidebar img {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .logo-sidebar span {
        color: var(--primary-gold);
    }

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
}

    .sidebar-close:hover {
        transform: rotate(90deg);
    }

.sidebar-links {
    list-style: none;
    flex: 1;
    padding: 0;
}

    .sidebar-links li {
        margin-bottom: 5px;
    }

    .sidebar-links a {
        display: flex;
        align-items: center;
        gap: 15px;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        padding: 14px 18px;
        border-radius: 12px;
        transition: all 0.3s;
        font-size: 1.1rem;
    }

        .sidebar-links a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--primary-gold);
            transform: translateX(-5px);
        }

        .sidebar-links a i {
            width: 24px;
            color: var(--primary-gold);
        }

.sidebar-footer {
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.sidebar-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .sidebar-social a {
        color: rgba(255,255,255,0.7);
        font-size: 1.3rem;
        transition: all 0.3s;
    }

        .sidebar-social a:hover {
            color: var(--primary-gold);
            transform: translateY(-3px);
        }

/* ===== شريط التنقل العلوي ===== */
.navbar {
    background-color: var(--primary-blue);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-bottom: 3px solid var(--primary-gold);
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
}

    .logo img {
        height: 55px;
        width: auto;
        transition: transform 0.4s;
    }

    .logo:hover img {
        transform: scale(1.08) rotate(-3deg);
    }

    .logo span {
        color: var(--primary-gold);
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    border-radius: 8px;
}

    .menu-toggle:hover {
        background: rgba(255,255,255,0.1);
        color: var(--primary-gold);
    }

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    font-weight: 500;
}

    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1.1rem;
        position: relative;
        padding: 5px 0;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 3px;
            background: var(--primary-gold);
            transition: width 0.4s;
            border-radius: 10px;
        }

        .nav-links a:hover {
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

/* ===== القسم الرئيسي ===== */
.hero {
    background: linear-gradient(135deg, rgba(10, 43, 78, 0.92) 0%, rgba(26, 75, 122, 0.88) 100%), url('https://nouredu.org/Opt/getImage.ashx?cf311644-6814-4d9d-b02c-dd13aabeea57.800.600..white.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
        transform: rotate(10deg);
        pointer-events: none;
        animation: pulseGlow 6s infinite alternate;
    }

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: rotate(10deg) scale(1);
    }

    100% {
        opacity: 1;
        transform: rotate(10deg) scale(1.2);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

    .hero-content h1 span {
        color: var(--primary-gold);
        border-bottom: 4px solid var(--primary-gold);
        display: inline-block;
        padding-bottom: 5px;
    }

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 90%;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-gold {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-blue);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-family: 'Tajawal', sans-serif;
}

    .btn-gold:hover {
        background: transparent;
        color: var(--primary-gold);
        border-color: var(--primary-gold);
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    }

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        max-height: 300px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        transition: transform 0.6s;
    }

    .hero-image:hover img {
        transform: scale(1.04);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== الأقسام العامة ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-gold);
        margin: 12px auto 0;
        border-radius: 10px;
        transition: width 0.5s;
    }

    .section-title:hover::after {
        width: 140px;
    }

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== بطاقات لماذا النور ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(10, 43, 78, 0.18);
    }

    .feature-card i {
        font-size: 3.2rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
        background: var(--light-gold);
        padding: 18px;
        border-radius: 50%;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: inline-block;
    }

    .feature-card:hover i {
        background: var(--primary-gold);
        color: white;
        transform: rotateY(360deg) scale(1.15);
        box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: var(--primary-blue);
        transition: transform 0.3s;
    }

    .feature-card:hover h3 {
        transform: scale(1.03);
    }

    .feature-card p {
        color: #444;
        font-size: 0.95rem;
        margin-bottom: 10px;
        transition: color 0.3s;
    }

    .feature-card:hover p {
        color: var(--primary-blue);
    }

    .feature-card .detail-list {
        list-style: none;
        text-align: right;
        margin-top: 10px;
        padding: 0;
    }

        .feature-card .detail-list li {
            padding: 6px 0;
            border-bottom: 1px dashed #eee;
            font-size: 0.9rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-origin: right;
        }

            .feature-card .detail-list li:hover {
                padding-right: 12px;
                color: var(--primary-blue);
                transform: scale(1.02);
            }

            .feature-card .detail-list li:last-child {
                border-bottom: none;
            }

            .feature-card .detail-list li i {
                font-size: 0.8rem;
                background: none;
                color: var(--primary-gold);
                padding: 0;
                margin: 0;
                width: 18px;
                transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            }

            .feature-card .detail-list li:hover i {
                transform: scale(1.3) rotate(-10deg);
            }

/* ===== الرؤية والرسالة ===== */
.vision-mission {
    background-color: var(--light-gold);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="%23c9a84c" d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 75 L25 90 L35 60 L10 40 L40 40 Z"/></svg>');
    background-size: 120px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.vm-card {
    background: white;
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border-right: 8px solid var(--primary-gold);
    transition: all 0.5s;
}

    .vm-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .vm-card h3 {
        font-size: 2rem;
        color: var(--primary-blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .vm-card h3 i {
            color: var(--primary-gold);
            font-size: 2.2rem;
            transition: transform 0.4s;
        }

    .vm-card:hover h3 i {
        transform: rotate(-10deg) scale(1.1);
    }

    .vm-card p {
        color: #1e2a3a;
        font-size: 1.05rem;
        line-height: 1.9;
    }

/* ===== بطاقات المراحل ===== */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.stage-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.5s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

    .stage-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(10, 43, 78, 0.15);
    }

.stage-header {
    background: var(--primary-blue);
    padding: 20px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 4px solid var(--primary-gold);
    transition: background 0.4s;
}

.stage-card:hover .stage-header {
    background: var(--accent-blue);
}

.stage-header i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    transition: transform 0.5s;
}

.stage-card:hover .stage-header i {
    transform: rotate(-10deg) scale(1.1);
}

.stage-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stage-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .stage-body ul {
        list-style: none;
        flex: 1;
    }

        .stage-body ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #e9ecef;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
        }

            .stage-body ul li:hover {
                padding-right: 8px;
            }

            .stage-body ul li:last-child {
                border-bottom: none;
            }

            .stage-body ul li i {
                color: var(--primary-gold);
                width: 20px;
                font-size: 0.9rem;
                transition: transform 0.3s;
            }

            .stage-body ul li:hover i {
                transform: scale(1.2);
            }

.stage-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--light-gold);
    color: var(--primary-blue);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
    border: 2px solid transparent;
    text-align: center;
    align-self: flex-start;
}

    .stage-btn:hover {
        background: var(--primary-gold);
        color: white;
        border-color: var(--primary-gold);
        transform: translateX(-5px) scale(1.05);
        box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
    }

/* ===== مميزات النور ===== */
.features-highlights {
    background: var(--primary-blue);
    color: white;
}

    .features-highlights .section-title {
        color: white;
    }

        .features-highlights .section-title::after {
            background: var(--primary-gold);
        }

    .features-highlights .section-subtitle {
        color: rgba(255,255,255,0.8);
    }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
    background: rgba(255,255,255,0.06);
    padding: 35px 25px;
    border-radius: 25px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

    .highlight-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gold);
        transform: scaleX(0);
        transition: transform 0.5s;
    }

    .highlight-item:hover::after {
        transform: scaleX(1);
    }

    .highlight-item:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(255,255,255,0.12);
        border-color: var(--primary-gold);
    }

    .highlight-item i {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 15px;
        transition: all 0.6s;
        display: inline-block;
    }

    .highlight-item:hover i {
        transform: rotateY(360deg) scale(1.1);
    }

    .highlight-item h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .highlight-item p {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .highlight-item .detail-list {
        list-style: none;
        text-align: right;
        padding: 0;
        margin-top: 10px;
    }

        .highlight-item .detail-list li {
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            font-size: 0.9rem;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .highlight-item .detail-list li:last-child {
                border-bottom: none;
            }

            .highlight-item .detail-list li i {
                font-size: 0.8rem;
                color: var(--primary-gold);
                margin: 0;
                padding: 0;
                background: none;
                transform: none;
            }

            .highlight-item .detail-list li:hover {
                padding-right: 8px;
                opacity: 1;
            }

/* ===== معرض الصور (Swiper 3D Carousel) ===== */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallerySwiper {
    width: 100%;
    padding: 40px 0 60px;
    overflow: hidden;
}

    .gallerySwiper .swiper-slide {
        background: #1a1a2e;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        aspect-ratio: 16 / 9;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .gallerySwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gallerySwiper .swiper-slide:hover img {
            transform: scale(1.05);
        }

        .gallerySwiper .swiper-slide .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 43, 78, 0.85));
            padding: 40px 25px 25px;
            color: white;
            transform: translateY(100%);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-align: center;
        }

        .gallerySwiper .swiper-slide:hover .slide-overlay {
            transform: translateY(0);
        }

        .gallerySwiper .swiper-slide .slide-overlay h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .gallerySwiper .swiper-slide .slide-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
        }

    /* تخصيص أزرار Swiper */
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        color: var(--primary-gold);
        background: rgba(10, 43, 78, 0.7);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(4px);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .gallerySwiper .swiper-button-next::after,
        .gallerySwiper .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .gallerySwiper .swiper-button-next:hover,
        .gallerySwiper .swiper-button-prev:hover {
            background: var(--primary-gold);
            color: var(--primary-blue);
            border-color: var(--primary-gold);
            transform: scale(1.1);
        }

    .gallerySwiper .swiper-pagination-bullet {
        background: rgba(10, 43, 78, 0.3);
        width: 12px;
        height: 12px;
        transition: all 0.4s;
    }

    .gallerySwiper .swiper-pagination-bullet-active {
        background: var(--primary-gold);
        transform: scale(1.2);
        box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
    }

/* ===== نافذة العرض الموسع (Lightbox) ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .lightbox.active {
        display: flex;
        opacity: 1;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    animation: zoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,0.7);
        border: 3px solid var(--primary-gold);
        display: block;
        object-fit: contain;
    }

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox .close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(0,0,0,0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 10;
}

    .lightbox .close-btn:hover {
        background: var(--primary-gold);
        color: var(--primary-blue);
        transform: rotate(90deg) scale(1.1);
        border-color: var(--primary-gold);
    }

@keyframes zoomIn {
    from {
        transform: scale(0.5) rotate(-5deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ===== فروع المدارس ===== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.branch-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.5s;
    border-bottom: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

    .branch-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .branch-card:hover::before {
        opacity: 1;
    }

    .branch-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(10, 43, 78, 0.12);
    }

    .branch-card .branch-icon {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 15px;
        display: block;
        background: var(--light-gold);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.6s;
    }

    .branch-card:hover .branch-icon {
        background: var(--primary-gold);
        color: white;
        transform: rotateY(360deg) scale(1.1);
    }

    .branch-card h4 {
        color: var(--primary-blue);
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .branch-card .branch-location {
        color: #666;
        font-size: 1rem;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 2px dashed #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .branch-card .branch-location i {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }

    .branch-card .branch-phone {
        color: #888;
        font-size: 0.95rem;
        margin-top: 8px;
    }

        .branch-card .branch-phone i {
            color: var(--primary-gold);
            margin-left: 8px;
        }

/* ===== سياسة مؤسسة النور (Accordion) ===== */
.policy-section {
    background: var(--light-gold);
}

.policy-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.policy-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-right: 4px solid transparent;
}

    .policy-item:hover {
        border-right-color: var(--primary-gold);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .policy-item.active {
        border-right-color: var(--primary-gold);
        box-shadow: 0 8px 35px rgba(10, 43, 78, 0.12);
    }

.policy-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

    .policy-header:hover {
        background: rgba(10, 43, 78, 0.03);
    }

    .policy-header .policy-icon {
        font-size: 1.6rem;
        color: var(--primary-gold);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-gold);
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        flex-shrink: 0;
    }

.policy-item.active .policy-header .policy-icon {
    background: var(--primary-gold);
    color: white;
    transform: rotateY(180deg);
}

.policy-header h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0;
    flex: 1;
    font-weight: 700;
}

.policy-arrow {
    font-size: 1rem;
    color: var(--primary-gold);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.policy-item.active .policy-arrow {
    transform: rotate(180deg);
}

.policy-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.4s ease;
    padding: 0 25px;
}

.policy-item.active .policy-body {
    max-height: 500px;
    padding: 0 25px 25px;
}

.policy-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .policy-body ul li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.98rem;
        color: #444;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s;
    }

        .policy-body ul li:last-child {
            border-bottom: none;
        }

        .policy-body ul li i {
            color: var(--primary-gold);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .policy-body ul li:hover {
            padding-right: 8px;
            color: var(--primary-blue);
        }

/* ===== قسم اتصل بنا ===== */
.contact-section {
    background: var(--primary-blue);
    color: white;
}

    .contact-section .section-title {
        color: white;
    }

        .contact-section .section-title::after {
            background: var(--primary-gold);
        }

    .contact-section .section-subtitle {
        color: rgba(255,255,255,0.8);
    }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .contact-info p:hover {
        transform: translateX(-5px);
    }

.contact-info i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 30px;
    transition: transform 0.3s;
}

.contact-info p:hover i {
    transform: scale(1.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary-gold);
        background: rgba(255,255,255,0.15);
        box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.15);
        transform: scale(1.01);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255,255,255,0.6);
    }

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form .btn-submit {
    background: var(--primary-gold);
    color: var(--primary-blue);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    border: 2px solid transparent;
    font-family: 'Tajawal', sans-serif;
}

    .contact-form .btn-submit:hover {
        background: transparent;
        color: var(--primary-gold);
        border-color: var(--primary-gold);
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
    }

/* ===== تذييل الصفحة ===== */
.footer {
    background: var(--dark-blue);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 20px;
    border-top: 4px solid var(--primary-gold);
}

    .footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

    .footer-logo img {
        height: 45px;
        width: auto;
        transition: transform 0.4s;
    }

    .footer-logo:hover img {
        transform: rotate(-5deg) scale(1.05);
    }

    .footer-logo span {
        color: var(--primary-gold);
    }

.footer-social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: all 0.4s;
    display: inline-block;
}

    .footer-social a:hover {
        color: var(--primary-gold);
        transform: translateY(-5px) scale(1.1);
    }

.footer-copy {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    width: 100%;
}

/* ===================================================== */
/* ===== استجابة للشاشات المختلفة ===== */
/* ===================================================== */

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-image img {
        max-height: 200px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .loader-logo {
        width: 80px;
    }

    .loader-title {
        font-size: 1.5rem;
    }

    .loader-bar-container {
        width: 250px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.4rem;
    }

        .logo img {
            height: 40px;
        }

    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-gold {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-image img {
        max-height: 180px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .stages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .branches-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stage-header h3 {
        font-size: 1.4rem;
    }

    .stage-header i {
        font-size: 1.8rem;
    }

    .stage-body {
        padding: 18px;
    }

        .stage-body ul li {
            font-size: 0.95rem;
            padding: 6px 0;
        }

    .highlight-item {
        padding: 25px 18px;
    }

        .highlight-item h4 {
            font-size: 1.2rem;
        }

    .gallery-section {
        padding: 50px 0;
    }

    .gallerySwiper {
        padding: 20px 0 40px;
    }

        .gallerySwiper .swiper-slide {
            aspect-ratio: 4 / 3;
        }

        .gallerySwiper .swiper-button-next,
        .gallerySwiper .swiper-button-prev {
            width: 35px;
            height: 35px;
        }

            .gallerySwiper .swiper-button-next::after,
            .gallerySwiper .swiper-button-prev::after {
                font-size: 0.8rem;
            }

    .lightbox .close-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        top: 15px;
        left: 15px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 80%;
    }

    .branch-card {
        padding: 20px 15px;
    }

        .branch-card .branch-icon {
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 2.2rem;
        }

        .branch-card h4 {
            font-size: 1.2rem;
        }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form input, .contact-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .contact-form .btn-submit {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

        .footer-logo img {
            height: 35px;
        }

    .policy-header {
        padding: 15px 18px;
    }

        .policy-header .policy-icon {
            width: 35px;
            height: 35px;
            font-size: 1.2rem;
        }

        .policy-header h3 {
            font-size: 1rem;
        }

    .policy-body {
        padding: 0 18px;
    }

    .policy-item.active .policy-body {
        padding: 0 18px 18px;
    }

    .policy-body ul li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 60px;
    }

    .loader-title {
        font-size: 1.2rem;
    }

    .loader-bar-container {
        width: 200px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        max-height: 150px;
    }

    .sidebar {
        width: 280px;
        padding: 15px 18px;
    }

    .logo-sidebar {
        font-size: 1.2rem;
    }

        .logo-sidebar img {
            height: 32px;
        }

    .sidebar-links a {
        font-size: 1rem;
        padding: 12px 14px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .feature-card {
        padding: 25px 18px;
    }

        .feature-card i {
            font-size: 2.5rem;
            padding: 14px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
        }

    .gallerySwiper .swiper-slide {
        aspect-ratio: 3 / 4;
    }
}

/* ===== سياسة مؤسسة النور (بطاقات مختصرة مع روابط PDF) ===== */
.policy-section {
    background: var(--light-gold);
    position: relative;
    z-index: 1;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1150px;
    margin: 0 auto;
}

.policy-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

    .policy-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), #ffd700, transparent);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .policy-card:hover::before {
        opacity: 1;
    }

    .policy-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 60px rgba(10, 43, 78, 0.15), 0 0 40px rgba(201, 168, 76, 0.05);
    }

.policy-card-icon {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    background: var(--light-gold);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-card:hover .policy-card-icon {
    background: linear-gradient(135deg, var(--primary-gold), #ffd700);
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
}

.policy-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.policy-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.policy-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gold);
    color: var(--primary-blue);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

    .policy-card-btn i {
        font-size: 1rem;
        color: var(--primary-gold);
        transition: transform 0.3s;
    }

    .policy-card-btn:hover {
        background: linear-gradient(135deg, var(--primary-gold), #ffd700);
        color: white;
        border-color: var(--primary-gold);
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
    }

        .policy-card-btn:hover i {
            transform: scale(1.2);
            color: white;
        }

    .policy-card-btn.disabled {
        background: #e9ecef;
        color: #999;
        cursor: not-allowed;
        border-color: #e9ecef;
    }

        .policy-card-btn.disabled:hover {
            transform: none;
            box-shadow: none;
            background: #e9ecef;
            color: #999;
        }

        .policy-card-btn.disabled i {
            color: #999;
        }

.policy-card-placeholder {
    border-bottom-color: #ccc;
    opacity: 0.7;
}

    .policy-card-placeholder:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    }

/* ===== استجابة لشاشات الموبايل ===== */
@media (max-width: 992px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .policy-card {
        padding: 25px 20px;
    }

    .policy-card-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
    }

    .policy-card h3 {
        font-size: 1.1rem;
    }

    .policy-card-btn {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 20px 15px;
    }

    .policy-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* ===== الكادر الإداري (الهيكل الشجري) ===== */
.admin-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
}

.admin-tree {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.admin-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    padding: 15px 0;
}

    .admin-level.level-1 {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .admin-level.level-2 {
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .admin-level.level-3 {
        padding-top: 10px;
    }

/* خطوط التوصيل العمودية */
.vertical-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-gold), rgba(201, 168, 76, 0.3));
    margin: 0 auto;
    position: relative;
}

    .vertical-line::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: var(--primary-gold);
        border-radius: 50%;
    }

.horizontal-line {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), rgba(201, 168, 76, 0.3), transparent);
    margin: 0 auto;
    position: relative;
}

    .horizontal-line::before,
    .horizontal-line::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--primary-gold);
        border-radius: 50%;
    }

    .horizontal-line::before {
        left: 5%;
    }

    .horizontal-line::after {
        right: 5%;
    }

/* بطاقات الكادر */
.admin-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 4px solid var(--primary-gold);
    position: relative;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
}

    .admin-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(10, 43, 78, 0.12), 0 0 40px rgba(201, 168, 76, 0.05);
    }

    .admin-card.ceo {
        max-width: 550px;
        border-bottom-color: #ffd700;
        box-shadow: 0 8px 40px rgba(201, 168, 76, 0.15);
    }

        .admin-card.ceo:hover {
            box-shadow: 0 25px 60px rgba(201, 168, 76, 0.25);
        }

.admin-image {
    position: relative;
    flex-shrink: 0;
}

    .admin-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--light-gold);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

.admin-card.ceo .admin-image img {
    width: 120px;
    height: 120px;
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.admin-card:hover .admin-image img {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.admin-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-gold), #ffd700);
    color: var(--primary-blue);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    border: 2px solid white;
}

    .admin-badge.small {
        font-size: 0.55rem;
        padding: 3px 10px;
    }

.admin-info {
    flex: 1;
}

    .admin-info h3 {
        font-size: 1.3rem;
        color: var(--primary-blue);
        margin-bottom: 2px;
    }

    .admin-info h4 {
        font-size: 1.1rem;
        color: var(--primary-blue);
        margin-bottom: 2px;
    }

.admin-title {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.admin-social {
    display: flex;
    gap: 12px;
}

    .admin-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--light-gold);
        color: var(--primary-blue);
        font-size: 0.85rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-decoration: none;
    }

        .admin-social a:hover {
            background: linear-gradient(135deg, var(--primary-gold), #ffd700);
            color: white;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
        }

/* ===== استجابة شاشات الموبايل ===== */
@media (max-width: 992px) {
    .admin-level {
        gap: 20px;
    }

    .admin-card {
        max-width: 100%;
        padding: 20px;
    }

        .admin-card.ceo {
            max-width: 100%;
        }

    .horizontal-line {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .admin-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

        .admin-card.ceo .admin-image img {
            width: 100px;
            height: 100px;
        }

    .admin-image img {
        width: 80px;
        height: 80px;
    }

    .admin-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -5px;
    }

    .admin-social {
        justify-content: center;
    }

    .horizontal-line {
        width: 60%;
    }

    .admin-level {
        gap: 15px;
    }

    .vertical-line {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .admin-card {
        padding: 15px 12px;
    }

        .admin-card.ceo .admin-image img {
            width: 80px;
            height: 80px;
        }

    .admin-image img {
        width: 65px;
        height: 65px;
    }

    .admin-info h3 {
        font-size: 1.1rem;
    }

    .admin-info h4 {
        font-size: 0.95rem;
    }

    .admin-title {
        font-size: 0.75rem;
    }

    .admin-desc {
        font-size: 0.8rem;
    }

    .horizontal-line {
        width: 40%;
    }
}