/* ===============================================
   MODERN MINIMALIST STYLE - PURPLE & YELLOW
   SINGLE CSS FILE
   Company: التواصل المتميز الجديد
=============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Cairo', sans-serif;
    background-color: #FFFFFF;
    color: #1A1A2E;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== MODERN HEADER ========== */
.modern-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(123, 44, 191, 0.12);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.brand-tag {
    font-size: 0.75rem;
    color: #6C6C7A;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #2D2D3A;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #7B2CBF;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #7B2CBF;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero-modern {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #FBF7FF 0%, #FFF9EF 100%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.badge-accent {
    display: inline-block;
    background: #FFD16620;
    color: #7B2CBF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
    border: 1px solid #FFD16660;
    backdrop-filter: blur(2px);
}

.hero-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1A1A2E;
}

.highlight {
    color: #7B2CBF;
    border-bottom: 3px solid #FFD166;
    display: inline-block;
}

.hero-text p {
    font-size: 1.1rem;
    color: #4A4A5A;
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7B2CBF;
    color: white;
    padding: 12px 28px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #5A189A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.25);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-placeholder {
    max-width: 100%;
    border-radius: 32px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
}

.abstract-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #FFD166;
    filter: blur(70px);
    opacity: 0.4;
    z-index: 0;
    border-radius: 50%;
}

/* ========== SECTION HEADINGS ========== */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.overline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #7B2CBF;
    background: #F3E9FF;
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
}

.section-head h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 16px;
    color: #0F0F1A;
}

.dot-accent {
    color: #FFD166;
    font-size: 2.5rem;
}

.section-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #7B2CBF, #FFD166);
    margin: 20px auto 0;
    border-radius: 4px;
}

/* ========== ACTIVITIES GRID (PURPLE & YELLOW CARDS) ========== */
.activities-modern {
    padding: 80px 0;
    background: #FFFFFF;
}

.activities-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.act-card {
    background: #FEFBF5;
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s;
    border: 1px solid #F0E6FF;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.act-card i {
    font-size: 2rem;
    color: #7B2CBF;
    width: 48px;
    text-align: center;
}

.act-text {
    font-weight: 500;
    color: #2D2D3A;
    line-height: 1.4;
    font-size: 0.95rem;
}

.act-card:hover {
    border-color: #FFD166;
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(123, 44, 191, 0.08);
    background: #FFFFFF;
}

.extra-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #6C6C7A;
    border-top: 1px dashed #E9DCF5;
    padding-top: 24px;
}

/* ========== GALLERY MODERN ========== */
.gallery-modern {
    padding: 60px 0 80px;
    background: #FCFAFE;
}

.gallery-grid-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.gallery-item {
    width: 260px;
    text-align: center;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.img-modern-placeholder {
    border-radius: 24px;
    overflow: hidden;
    background: #F3E9FF;
    margin-bottom: 16px;
    aspect-ratio: 4 / 3;
}

.img-modern-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item p {
    font-weight: 500;
    color: #2D2D3A;
    font-size: 0.9rem;
}

/* ========== CONTACT SECTION (MODERN FORM) ========== */
.contact-modern {
    padding: 80px 0;
    background: linear-gradient(120deg, #FFFFFF 0%, #FEF9F0 100%);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: start;
}

.contact-info-modern {
    flex: 1;
    min-width: 240px;
}

.contact-info-modern h2 {
    font-size: 2rem;
    margin: 16px 0 16px;
}

.contact-info-modern p {
    color: #4A4A5A;
    margin-bottom: 28px;
}

.contact-details-list {
    list-style: none;
    margin-top: 20px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #2D2D3A;
    font-size: 0.95rem;
}

.contact-details-list i {
    width: 32px;
    color: #7B2CBF;
    font-size: 1.3rem;
}

.form-wrapper-modern {
    flex: 1.4;
    background: white;
    padding: 32px 32px;
    border-radius: 32px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.03);
    border: 1px solid #F0E0FF;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E2D4F0;
    border-radius: 48px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #FFFFFF;
    transition: 0.2s;
    outline: none;
}

.input-group textarea {
    border-radius: 28px;
    resize: vertical;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #7B2CBF;
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

/* ========== FOOTER ========== */
.modern-footer {
    background: #0B0914;
    color: #B9B9D0;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2C2542;
}

.footer-inner p {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.small-email {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ========== SCROLL REVEAL ANIMATION (showing text when scrolling) ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.75s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
    .hero-text h2 { font-size: 2.4rem; }
    .main-nav { display: none; }
    .main-nav.nav-open {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        border-radius: 0 0 28px 28px;
    }
    .main-nav.nav-open ul {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .contact-grid { flex-direction: column; }
    .container { padding: 0 24px; }
    .activities-grid-modern { grid-template-columns: 1fr; }
}