:root {
    --primary-green: #2C5F2D;
    --primary-dark: #1a3a1b;
    --primary-light: #3d7a3e;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --cream: #F5F3EE;
    --cream-dark: #E8E5DC;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #707070;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Pro', serif;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Almarai', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--primary-green);
    filter: drop-shadow(0 2px 8px rgba(44, 95, 45, 0.2));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    color: var(--gold);
    transform: rotate(5deg);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Almarai', sans-serif;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EE 50%, #FFF8E7 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Islamic Pattern Overlay */
.islamic-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--primary-green) 0px, var(--primary-green) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, var(--primary-green) 0px, var(--primary-green) 1px, transparent 1px, transparent 20px);
    background-size: 40px 40px;
    animation: patternSlide 60s linear infinite;
}

@keyframes patternSlide {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.hero-particles::before {
    background: var(--gold);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-particles::after {
    background: var(--primary-green);
    bottom: 10%;
    right: -5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Hero Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bismillah-container {
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bismillah-text {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 2px 30px rgba(212, 175, 55, 0.6);
    }
}

.bismillah-translation {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

.main-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.title-word {
    display: inline-block;
    animation: slideIn 0.8s ease-out backwards;
    margin: 0 0.3rem;
}

.title-word:nth-child(1) { animation-delay: 0.2s; color: var(--text-primary); }
.title-word:nth-child(2) { animation-delay: 0.3s; color: var(--text-primary); }
.title-word:nth-child(3) { animation-delay: 0.4s; color: var(--text-primary); }
.title-word.main-word { 
    animation-delay: 0.5s; 
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.main-word::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 1s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.btn-main,
.btn-outline {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-main {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.3);
}

.btn-main::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 ease;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(44, 95, 45, 0.4);
}

.btn-main svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-main:hover svg {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeIn 2s ease-out 2s backwards;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   PRAYER TIMES SECTION
   =========================== */
.quick-prayer-times {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
}

.prayer-times-ornament {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.prayer-times-ornament.top-ornament {
    top: 0;
}

.prayer-times-ornament.bottom-ornament {
    bottom: 0;
    transform: scaleY(-1);
}

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

.islamic-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hijri-date {
    color: var(--gold);
    font-family: 'Amiri', serif;
    font-weight: 700;
}

.separator {
    color: var(--gold);
}

.gregorian-date {
    color: var(--text-secondary);
    font-weight: 600;
}

.prayer-title {
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.prayer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.prayer-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.prayer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--primary-green));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.prayer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #fefdfb);
}

.prayer-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.prayer-card:hover .prayer-icon {
    color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.prayer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.prayer-time-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0.5rem;
}

.prayer-desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===========================
   WELCOME MESSAGE SECTION
   =========================== */
.welcome-message {
    padding: 8rem 0;
    background: var(--cream);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Decorative Corners */
.decorative-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
    opacity: 0.4;
}

.decorative-corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.decorative-corner.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.decorative-corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.decorative-corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.label-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.label-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.label-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

.welcome-title {
    font-size: 3.5rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.arabic-greeting {
    text-align: center;
    font-family: 'Amiri', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 700;
}

.welcome-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.lead-paragraph {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.welcome-text p {
    margin-bottom: 1.5rem;
}

.imam-quote {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
}

.imam-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.imam-quote cite {
    display: block;
    text-align: right;
    color: var(--gold);
    font-weight: 700;
    font-style: normal;
}

/* ===========================
   KEY FEATURES SECTION
   =========================== */
.key-features {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

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

.ornamental-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.line-decoration {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.center-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
}

.section-main-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.feature-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.1;
    font-family: 'Almarai', sans-serif;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon-large {
    color: var(--gold);
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.feature-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-light);
    position: relative;
    font-size: 1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===========================
   STATISTICS SECTION
   =========================== */
.statistics-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 30px),
        repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 30px);
}

.stats-content {
    position: relative;
    z-index: 1;
}

.stats-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.stats-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 5rem;
}

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

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    color: var(--gold);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Almarai', sans-serif;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
}

.stat-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* ===========================
   ANNOUNCEMENTS SECTION
   =========================== */
.announcements-section {
    padding: 8rem 0;
    background: var(--cream);
}

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

.announcement-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.announcement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.announcement-card.featured {
    grid-column: span 2;
}

.announcement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    background: var(--primary-green);
    color: var(--white);
    z-index: 10;
}

.announcement-badge.success {
    background: #28a745;
}

.announcement-badge.info {
    background: #17a2b8;
}

.announcement-date {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.announcement-content {
    padding: 2.5rem;
}

.announcement-title {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.announcement-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.announcement-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.announcement-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.announcement-link a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--gold) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--primary-green) 2px, transparent 2px);
    background-size: 50px 50px;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--gold);
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.cta-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
}

.btn-cta-primary svg {
    width: 18px;
    height: 18px;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-cta-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.cta-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-box svg {
    width: 50px;
    height: 50px;
    color: var(--gold);
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Almarai', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
}

.footer-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-heading {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-list.contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-list.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-bottom-links span {
    opacity: 0.5;
}

/* ===========================
   ASSOCIATION PAGE STYLES
   =========================== */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
    color: var(--white);
    overflow: hidden;
    padding-top: 100px;
}

.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 40px),
        repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 40px);
    background-size: 60px 60px;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.page-breadcrumb {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.page-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    margin: 0 1rem;
    color: var(--gold);
}

.page-hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.title-arabic {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-main {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.page-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-star {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--gold), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatStar 8s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.star-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.star-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Our Story Section */
.our-story-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--primary-green));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.marker-dot {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 5px solid var(--gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.marker-dot.active {
    background: var(--gold);
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

.marker-pulse.active {
    border-color: var(--primary-green);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeInTimeline 0.8s ease-out forwards;
}

@keyframes fadeInTimeline {
    to {
        opacity: 1;
    }
}

.timeline-item:nth-child(1) .timeline-content { animation-delay: 0.2s; }
.timeline-item:nth-child(2) .timeline-content { animation-delay: 0.4s; }
.timeline-item:nth-child(3) .timeline-content { animation-delay: 0.6s; }
.timeline-item:nth-child(4) .timeline-content { animation-delay: 0.8s; }
.timeline-item:nth-child(5) .timeline-content { animation-delay: 1s; }
.timeline-item:nth-child(6) .timeline-content { animation-delay: 1.2s; }

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Almarai', sans-serif;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.timeline-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.islamic-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23D4AF37' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    animation: geometricMove 40s linear infinite;
}

@keyframes geometricMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.light-header .line-decoration,
.light-header .center-dot {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
}

.light-title {
    color: var(--white);
}

.light-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.mission-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mission-card.full-width {
    grid-column: span 2;
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--gold);
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
}

.mission-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.arabic-text {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    opacity: 0.95;
}

.mission-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.value-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-family: 'Almarai', sans-serif;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--cream);
}

.team-category-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.team-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.team-member-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-member-card.featured {
    border: 3px solid var(--gold);
}

.member-photo {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder svg {
    width: 100%;
    height: 100%;
}

.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Almarai', sans-serif;
}

.member-info {
    padding: 2.5rem;
}

.member-name {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.member-role {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.member-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-specialties {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.specialty-tag {
    padding: 0.5rem 1.2rem;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.teacher-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.teacher-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.teacher-name {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.teacher-subject {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.teacher-experience {
    font-size: 0.95rem;
    color: var(--text-light);
}

.volunteers-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
}

.volunteers-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--gold);
}

.volunteers-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.volunteers-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.volunteers-description strong {
    color: var(--gold);
}

.volunteers-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.volunteers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Facilities Section */
.facilities-section {
    padding: 8rem 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.facility-card {
    background: var(--cream);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.facility-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.facility-info {
    padding: 2.5rem;
}

.facility-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.facility-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.facility-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-badge {
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-green);
}

.facilities-extras {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
}

.extras-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.extra-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.extra-icon {
    font-size: 2.5rem;
}

.extra-item span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
}

/* Governance Section */
.governance-section {
    padding: 8rem 0;
    background: var(--cream);
}

.governance-structure {
    max-width: 600px;
    margin: 0 auto 5rem;
}

.structure-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.structure-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.structure-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.structure-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.structure-stat {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

.structure-arrow {
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    margin: 1rem 0;
}

.transparency-info {
    background: linear-gradient(135deg, var(--white), var(--cream));
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.transparency-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 800;
    text-align: center;
}

.transparency-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.transparency-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.transparency-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.list-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.transparency-list li div {
    flex: 1;
}

.transparency-list strong {
    color: var(--primary-green);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.transparency-list p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Join CTA Section */
.join-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-green));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-islamic-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37'%3E%3Cpath d='M40 0l20 20-20 20-20-20z' opacity='1'/%3E%3Cpath d='M0 40l20 20-20 20V40z' opacity='1'/%3E%3Cpath d='M40 40l20 20-20 20-20-20z' opacity='1'/%3E%3Cpath d='M80 40v40l-20-20z' opacity='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.join-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-mosque-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--gold);
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.5));
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    opacity: 0.95;
}

.cta-buttons-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-join-primary,
.btn-join-secondary {
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-join-primary {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-join-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-join-primary svg {
    width: 18px;
    height: 18px;
}

.btn-join-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-join-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-5px);
}

.cta-note {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-note strong {
    color: var(--gold);
    font-weight: 800;
}

/* ===========================
   ACTIVITIES PAGE STYLES
   =========================== */

/* Activities Categories */
.activities-categories {
    padding: 6rem 0;
    background: var(--cream);
}

.categories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.intro-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.category-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-bottom: 5px solid var(--gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    color: var(--gold);
    transform: scale(1.1) rotate(-5deg);
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.category-description {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-arrow {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(10px);
}

/* Activity Detail Sections */
.activity-detail-section {
    padding: 8rem 0;
    position: relative;
}

.activity-detail-section:nth-child(even) {
    background: var(--cream);
}

.activity-detail-section:nth-child(odd) {
    background: var(--white);
}

.section-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.green-pattern {
    background-image: 
        repeating-linear-gradient(45deg, var(--primary-green) 0px, var(--primary-green) 2px, transparent 2px, transparent 30px),
        repeating-linear-gradient(-45deg, var(--primary-green) 0px, var(--primary-green) 2px, transparent 2px, transparent 30px);
}

.gold-pattern {
    background-image: 
        repeating-linear-gradient(60deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(-60deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 25px);
}

.youth-pattern {
    background-image: radial-gradient(circle at 25% 25%, var(--gold) 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, var(--primary-green) 2px, transparent 2px);
    background-size: 50px 50px;
}

.activity-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.activity-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: 'Almarai', sans-serif;
}

.activity-detail-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.arabic-subtitle {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.activity-detail-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.program-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.program-card.featured {
    border: 3px solid var(--gold);
    position: relative;
}

.program-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.program-header {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 2.5rem;
    text-align: center;
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.program-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.program-level {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-content {
    padding: 2.5rem;
}

.program-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--cream);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.program-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    text-align: center;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

.program-cta {
    display: block;
    text-align: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.program-cta:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.02);
}

/* Arabic Levels Showcase */
.levels-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.level-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 5px solid var(--gold);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.level-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Almarai', sans-serif;
}

.level-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.level-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.level-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.level-topics li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}

.level-topics li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.level-duration {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

/* Arabic Programs Extra */
.arabic-programs-extra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.extra-program {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.extra-program:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.extra-program h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.extra-program p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.extra-schedule {
    display: block;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 700;
}

/* Sciences Grid */
.sciences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.science-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.science-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--gold);
}

.science-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.science-icon {
    font-size: 3rem;
}

.science-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 800;
    flex: 1;
}

.science-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.science-topics {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.science-topics h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.science-topics ul {
    list-style: none;
    padding: 0;
}

.science-topics li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-secondary);
}

.science-topics li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.science-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.science-details span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Conferences Calendar */
.conferences-calendar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.conference-item {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    transition: all 0.4s ease;
}

.conference-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.conference-item.upcoming {
    border: 3px solid var(--gold);
}

.conference-date-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
}

.conference-date-badge.past {
    background: linear-gradient(135deg, #999, #666);
}

.conference-date-badge.future {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Almarai', sans-serif;
}

.date-month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.date-year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.conference-details {
    flex: 1;
}

.conference-type {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.conference-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.conference-speaker {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.conference-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.conference-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.conference-register {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: center;
    white-space: nowrap;
    font-family: 'Almarai', sans-serif;
}

.conference-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.conference-status {
    padding: 1rem 2rem;
    background: var(--cream);
    color: var(--text-secondary);
    border-radius: 25px;
    font-weight: 600;
    align-self: center;
}

/* Conference Themes */
.conference-themes {
    background: var(--cream);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.themes-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.themes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.theme-tag {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    cursor: pointer;
}

.theme-tag:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

/* Youth Programs */
.youth-category {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.youth-category-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.youth-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.youth-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.youth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--gold);
}

.youth-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.youth-card h4 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.youth-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.youth-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.youth-card li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.youth-card li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.youth-schedule {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 15px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

/* Social Programs */
.social-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.social-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.social-card.highlighted {
    border: 3px solid var(--gold);
    grid-column: span 1;
}

.social-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.social-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.social-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-impact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.impact-stat {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0.5rem;
}

.impact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.social-action {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.social-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Volunteer CTA */
.volunteer-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.volunteer-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.volunteer-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-volunteer {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--gold);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-volunteer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Registration CTA */
.registration-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.cta-content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-main-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-main-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-large {
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta-large.primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
}

.btn-cta-large.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 95, 45, 0.4);
}

.btn-cta-large.primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-large.secondary {
    background: transparent;
    border: 3px solid var(--gold);
    color: var(--gold);
}

.btn-cta-large.secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.cta-note-text {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===========================
   RELIGION PAGE STYLES
   =========================== */

/* Shahada Section */
.shahada-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.shahada-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.shahada-ornament {
    width: 150px;
    height: 30px;
    margin: 0 auto;
    background-image: url("data:image/svg+xml,%3Csvg width='150' height='30' viewBox='0 0 150 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,15 Q37.5,0 75,15 T150,15' stroke='%23D4AF37' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.shahada-ornament.top {
    margin-bottom: 3rem;
}

.shahada-ornament.bottom {
    margin-top: 3rem;
    transform: scaleY(-1);
}

.shahada-arabic {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.shahada-translation {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 600;
}

.shahada-explanation {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Five Pillars Section */
.five-pillars-section {
    padding: 8rem 0;
    background: var(--white);
}

.arabic-section-title {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.arabic-section-title.light {
    color: var(--gold);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.pillar-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-top: 5px solid var(--gold);
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pillar-number {
    position: absolute;
    top: -25px;
    left: 3.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.pillar-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.pillar-name {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.pillar-arabic {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.pillar-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.pillar-details {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
}

.pillar-details h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-details ul {
    list-style: none;
    padding: 0;
}

.pillar-details li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.pillar-details li:last-child {
    border-bottom: none;
}

.pillar-details li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Six Pillars of Faith */
.six-pillars-faith-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.faith-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--gold) 3px, transparent 3px),
        radial-gradient(circle at 80% 80%, var(--gold) 3px, transparent 3px);
    background-size: 80px 80px;
    animation: faithPatternMove 60s linear infinite;
}

@keyframes faithPatternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.faith-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.faith-pillar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.faith-pillar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.faith-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.faith-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.faith-arabic {
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.faith-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Names of Allah Section */
.names-allah-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.names-intro-box {
    max-width: 900px;
    margin: 0 auto 5rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
}

.names-intro-text {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.names-explanation {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.name-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.name-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.name-card:hover::before {
    transform: scaleX(1);
}

.name-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.name-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--cream);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

.name-arabic {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.name-transliteration {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Almarai', sans-serif;
}

.name-meaning {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.names-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-radius: 25px;
}

.names-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-names {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-names:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
}

/* Quran Section */
.quran-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.quran-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: 
        repeating-linear-gradient(45deg, var(--primary-green) 0px, var(--primary-green) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, var(--primary-green) 0px, var(--primary-green) 1px, transparent 1px, transparent 15px);
}

.quran-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.quran-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.quran-arabic-title {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.quran-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.quran-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.fact-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gold);
}

.fact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.quran-virtues h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.quran-virtues ul {
    list-style: none;
    padding: 0;
}

.quran-virtues li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--cream);
}

.quran-virtues li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

.resources-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 800;
}

.resource-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.resource-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-box h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.resource-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
    display: inline-block;
}

/* Sunnah Section */
.sunnah-section {
    padding: 8rem 0;
    background: var(--cream);
}

.sunnah-intro-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 5rem;
}

.sunnah-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.prophet-quote {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    position: relative;
}

.quote-icon-large {
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
}

.prophet-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prophet-quote cite {
    display: block;
    text-align: right;
    color: var(--gold);
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
}

.collections-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.collection-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--gold);
}

.collection-rank {
    position: absolute;
    top: -20px;
    left: 3rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.collection-name {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.collection-arabic {
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.collection-info {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.hadith-tool-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.hadith-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--gold);
}

.tool-icon {
    font-size: 2.5rem;
}

.tool-text {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* Adhkar Section */
.adhkar-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.adhkar-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(60deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 40px),
        repeating-linear-gradient(-60deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 40px);
}

.adhkar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.adhkar-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.adhkar-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.adhkar-time {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: 'Almarai', sans-serif;
}

.adhkar-arabic {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    font-weight: 700;
}

.adhkar-transliteration {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.adhkar-translation {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.adhkar-download {
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.adhkar-download p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-adhkar {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: var(--gold);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-adhkar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
}

/* Resources CTA Section */
.resources-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.resources-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.resources-cta-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 800;
}

.resources-cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.btn-resources-primary,
.btn-resources-secondary {
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s ease;
}

.btn-resources-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
}

.btn-resources-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 95, 45, 0.4);
}

.btn-resources-secondary {
    background: transparent;
    border: 3px solid var(--gold);
    color: var(--gold);
}

.btn-resources-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===========================
   NEWS/ACTUALITÉS PAGE STYLES
   =========================== */

/* News Filter */
.news-filter-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 2px solid var(--cream);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--cream);
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-color: var(--primary-green);
    color: var(--white);
}

/* Featured Event */
.featured-event-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.featured-event-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.featured-badge svg {
    width: 20px;
    height: 20px;
}

.featured-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    padding: 5rem;
}

.featured-date {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    min-width: 150px;
    height: fit-content;
}

.date-day {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Almarai', sans-serif;
}

.date-month {
    display: block;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.date-year {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.event-category {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.featured-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.detail-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    stroke-width: 2;
}

.featured-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-featured-primary,
.btn-featured-secondary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
}

.btn-featured-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-featured-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-featured-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-featured-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px);
}

/* Upcoming Events Timeline */
.upcoming-events-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-header-left {
    margin-bottom: 4rem;
}

.section-title-left {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle-left {
    font-size: 1.2rem;
    color: var(--text-light);
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-timeline-item {
    background: var(--cream);
    border-radius: 25px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.event-timeline-item:hover {
    border-left-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.event-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.event-date-box {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold);
    min-width: 100px;
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Almarai', sans-serif;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.event-time {
    padding: 0.6rem 1.2rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Almarai', sans-serif;
}

.event-type-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.event-type-badge.lectures {
    background: #E3F2FD;
    color: #1976D2;
}

.event-type-badge.youth {
    background: #F3E5F5;
    color: #7B1FA2;
}

.event-type-badge.workshops {
    background: #FFF3E0;
    color: #E65100;
}

.event-type-badge.solidarity {
    background: #E8F5E9;
    color: #2E7D32;
}

.event-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.event-excerpt {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.event-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.event-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
    display: inline-block;
}

/* Announcements Section */
.announcements-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.announcements-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 30px),
        repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 30px);
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.announcement-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.announcement-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.announcement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 25px 25px 0 0;
}

.announcement-box.important::before {
    background: #FF6B6B;
}

.announcement-box.info::before {
    background: #4ECDC4;
}

.announcement-box.success::before {
    background: #95E1D3;
}

.announcement-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.announcement-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.announcement-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.announcement-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.announcement-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.announcement-date {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    background: var(--cream);
}

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

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
}

.blog-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.6rem 1.5rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date,
.blog-reading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-green);
    transform: translateX(5px);
    display: inline-block;
}

/* Calendar Section */
.calendar-section {
    padding: 8rem 0;
    background: var(--white);
}

.calendar-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.calendar-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 800;
}

.islamic-date {
    margin-bottom: 3rem;
}

.hijri-date {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gregorian-date {
    font-size: 1.1rem;
    color: var(--text-light);
}

.islamic-months h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.months-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.month-item {
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.month-item:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(5px);
}

.month-item.current {
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
}

.prayer-times-card {
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold);
}

.prayer-times-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.today-date {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.prayer-times-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prayer-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.prayer-time-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.prayer-time-item.current-prayer {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
}

.prayer-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.prayer-icon {
    font-size: 1.5rem;
}

.prayer-time {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
}

.download-calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
}

.download-calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.download-calendar svg {
    width: 20px;
    height: 20px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--gold) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, var(--gold) 3px, transparent 3px);
    background-size: 60px 60px;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--gold);
}

.newsletter-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.newsletter-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.05rem;
    font-family: 'Crimson Pro', serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
    padding: 1.3rem 2.5rem;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Almarai', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.newsletter-submit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.newsletter-privacy {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===========================
   NEWS/ACTUALITÉS PAGE STYLES
   =========================== */

/* Quick Info Bar */
.quick-info-bar {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
}

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

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.info-icon {
    font-size: 2.5rem;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

/* Featured News Section */
.featured-news-section {
    padding: 6rem 0;
    background: var(--cream);
}

.section-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    font-family: 'Almarai', sans-serif;
}

.featured-news-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.featured-news-image {
    position: relative;
    overflow: hidden;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.news-image-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.featured-news-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-category {
    padding: 0.5rem 1.2rem;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.featured-news-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 800;
}

.featured-news-excerpt {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-badge {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Almarai', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.btn-read-more {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
    align-self: flex-start;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
}

/* Latest News Section */
.latest-news-section {
    padding: 8rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.news-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
}

.news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.6rem 1.5rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.news-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--cream);
}

.news-reading-time {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-excerpt {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.news-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
    display: inline-block;
}

.load-more-section {
    text-align: center;
}

.btn-load-more {
    padding: 1.3rem 3.5rem;
    background: var(--cream);
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-load-more:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.events-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 50px),
        repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 50px);
}

.events-timeline {
    position: relative;
    z-index: 1;
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-item.urgent {
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.event-date-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.event-day {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Almarai', sans-serif;
    color: var(--white);
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    color: var(--white);
}

.event-details {
    flex: 1;
}

.event-urgent-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Almarai', sans-serif;
}

.event-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.event-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.event-time,
.event-location,
.event-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-event-register {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-event-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

/* Prayer Times Section for News Page */
.prayer-times-section-news {
    padding: 6rem 0;
    background: var(--cream);
}

.prayer-times-card-news {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.prayer-times-header {
    text-align: center;
    margin-bottom: 3rem;
}

.prayer-times-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.prayer-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gregorian-date {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hijri-date {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Almarai', sans-serif;
}

.prayer-times-grid-news {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prayer-time-item-news {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.prayer-time-item-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.prayer-time-item-news.active {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05);
}

.prayer-icon-news {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.prayer-name-news {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Almarai', sans-serif;
}

.prayer-time-news {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Almarai', sans-serif;
}

.prayer-iqama-news {
    font-size: 0.9rem;
    opacity: 0.8;
}

.current-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
}

.prayer-times-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--cream);
}

.jummah-time {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-prayer-calendar {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-prayer-calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--primary-green);
}

.newsletter-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.newsletter-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.3rem 2rem;
    border: 2px solid var(--cream);
    border-radius: 50px;
    font-size: 1.05rem;
    font-family: 'Crimson Pro', serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.newsletter-submit {
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.newsletter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Main Section */
.contact-main-section {
    padding: 8rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Almarai', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--cream);
    border-radius: 15px;
    font-size: 1.05rem;
    font-family: 'Crimson Pro', serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232C5F2D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label {
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Almarai', sans-serif;
    box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
}

.btn-submit-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 95, 45, 0.4);
}

.btn-submit-form svg {
    width: 20px;
    height: 20px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: -1rem;
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.info-card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.info-card-title {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-card-text a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card-text a:hover {
    color: var(--gold);
}

.info-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.info-card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.info-card-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    font-size: 1rem;
}

.hours-row.highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-weight: 700;
}

/* Social Links Card */
.social-links-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
}

.social-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.social-icons-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.social-icon-large svg {
    width: 28px;
    height: 28px;
}

.social-icon-large:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon-large.facebook:hover {
    background: #1877f2;
}

.social-icon-large.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-large.youtube:hover {
    background: #ff0000;
}

.social-icon-large.whatsapp:hover {
    background: #25d366;
}

.social-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    position: relative;
    height: 500px;
    background: var(--cream);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    pointer-events: all;
}

.map-info-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-info-address {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
}

.btn-map-action {
    flex: 1;
    padding: 1rem;
    background: var(--cream);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-map-action:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-map-action svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--primary-green);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
    flex: 1;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 5rem 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--primary-green);
}

.cta-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.btn-cta-contact {
    padding: 1.3rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    font-family: 'Almarai', sans-serif;
}

.btn-cta-contact svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.btn-cta-contact.phone {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.btn-cta-contact.phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(44, 95, 45, 0.4);
}

.btn-cta-contact.email {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-contact.email:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.btn-cta-contact.whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-contact.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }
    
    .announcement-card.featured {
        grid-column: span 1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Association Page Responsive */
    .title-main {
        font-size: 3rem;
    }
    
    .mission-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card.full-width {
        grid-column: span 1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 1;
        text-align: left;
    }
    
    .timeline-marker {
        display: none;
    }
    
    .timeline-line {
        left: 0;
    }
    
    /* Activities Page Responsive */
    .programs-grid,
    .levels-showcase,
    .sciences-grid {
        grid-template-columns: 1fr;
    }
    
    .conference-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .program-info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-impact {
        grid-template-columns: 1fr;
    }
    
    /* Religion Page Responsive */
    .pillars-grid,
    .faith-pillars-grid,
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .quran-content-grid {
        grid-template-columns: 1fr;
    }
    
    .quran-facts {
        grid-template-columns: 1fr;
    }
    
    .names-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .adhkar-grid {
        grid-template-columns: 1fr;
    }
    
    /* News Page Responsive */
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .event-timeline-item {
        grid-template-columns: 1fr;
    }
    
    .calendar-content {
        grid-template-columns: 1fr;
    }
    
    .months-list {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .bismillah-text {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .section-main-title,
    .stats-title,
    .cta-title {
        font-size: 2.5rem;
    }
    
    .welcome-content {
        padding: 3rem 2rem;
    }
    
    .features-grid,
    .stats-grid,
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Association Page Mobile */
    .title-arabic {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    .timeline-title {
        font-size: 1.4rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid,
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteers-highlight {
        padding: 3rem 2rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transparency-list li {
        flex-direction: column;
        gap: 1rem;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-row {
        flex-direction: column;
    }
    
    .btn-join-primary,
    .btn-join-secondary {
        width: 100%;
        justify-content: center;
    }
}