/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Navy, Gold, White Theme */
    --primary: #B99253;
    --primary-light: #7B3900;
    --accent: #7B3900;
    --accent-dark: #263b66;
    --background: hsl(0, 0%, 100%);
    --secondary: hsl(220, 30%, 98%);
    --text: hsl(220, 20%, 20%);
    --text-muted: hsl(220, 10%, 50%);
    --border: hsl(220, 15%, 90%);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px -10px rgba(185, 146, 83, 0.4);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
   Hero Section
=========================== */
.hero-about {
    position: relative;
    height: 20vh;
    min-height: 300px;
    margin-top: 10px;

    background-image: url("../assets/download\ \(1\).jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}


.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-family: var(--font-arabic);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    opacity: 0.7;
}

/* ===========================
   Our Story Section
=========================== */
.our-story {
    padding: 6rem 0;
    background: var(--background);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: var(--font-arabic);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: justify;
}
.story-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

/* wrapper للفيديو */
.story-image .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

/* iframe نفسه */
.story-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    transition: transform 0.7s ease;
}

/* نفس تأثير الزووم */
.story-image:hover iframe {
    transform: scale(1.05);
}

.story-badge {
    background: var(--primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 1rem;
    font-family: var(--font-arabic);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.mv-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.mv-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.mv-card h3 {
    font-family: var(--font-arabic);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-light) 100%);
    overflow: hidden;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.stat-icon svg {
    color: var(--primary);
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    margin-bottom: 0.5rem;
    color: white;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.125rem;
    font-family: var(--font-arabic);
    color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-arabic);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 146, 83, 0.1), rgba(123, 57, 0, 0.1));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--secondary), var(--background));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--accent-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: white;
}

.team-social svg {
    width: 18px;
    height: 18px;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}


.cta-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-arabic);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185, 146, 83, 0.5);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--accent-dark);
    transform: translateY(-3px);
}



/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 968px) {
    .story-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .btn-sign-in {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}


        /* ================= WhatsApp Floating Button ================= */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.35);
            z-index: 9999;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 25px rgba(0,0,0,0.45);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #ffffff;
        }