/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #1a472a 0%, #0e2a1a 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f9d423, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #f9d423;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #f9d423;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== HERO SECTION (No images) ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a472a 0%, #0e2a1a 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(249,212,35,0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 40px;
    color: rgba(249,212,35,0.2);
    pointer-events: none;
}

.hero-decoration i {
    animation: float 3s ease-in-out infinite;
}

.hero-decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-decoration i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.glow-text {
    animation: fadeInUp 1s ease;
}

.hero-sub {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #f9d423;
    color: #1a472a;
    border: 2px solid #f9d423;
}

.btn-primary:hover {
    background: transparent;
    color: #f9d423;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1a472a;
    transform: translateY(-3px);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f9d423, #e67e22);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-icon-box {
    background: linear-gradient(135deg, #f9f9f9, #fff);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.icon-grid i {
    font-size: 60px;
    color: #e67e22;
    transition: all 0.3s;
}

.icon-grid i:hover {
    transform: scale(1.1);
    color: #f9d423;
}

.about-icon-box p {
    font-size: 18px;
    font-weight: bold;
    color: #1a472a;
    margin-top: 20px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #e67e22;
}

/* ===== ACTIVITIES SECTION ===== */
.activities {
    background: #f9f9f9;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: #e67e22;
}

.activity-card i {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a472a;
}

.activity-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== GALLERY SECTION (Icon cards) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.icon-card {
    background: linear-gradient(135deg, #fff, #fafafa);
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #e67e22;
}

.icon-card i {
    font-size: 55px;
    color: #e67e22;
    margin-bottom: 20px;
}

.icon-card h4 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 10px;
}

.icon-card p {
    color: #777;
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.contact-info h3 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.info-item:hover {
    background: #e67e22;
    color: white;
    transform: translateX(-5px);
}

.info-item i {
    font-size: 22px;
    width: 40px;
    color: #e67e22;
}

.info-item:hover i {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #1a472a;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
}

.support-text {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a472a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

/* ===== FOOTER - FIXED CENTERED ===== */
footer {
    background: #0e2a1a;
    color: #ecf0f1;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-col h3 {
    color: #f9d423;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    text-align: center;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f9d423;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a472a;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .contact-wrapper {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}