/* ============================================================
   MOSQUÉE CHEKKAR — DESIGN PREMIUM
   Charte : Vert émeraude #0d5c3f · Or #c9a84c
   ============================================================ */

/* --- Google Fonts fallback + variables --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Amiri:wght@400;700&display=swap');

:root {
    --primary: #0d5c3f;
    --primary-dark: #084a32;
    --primary-light: #0e6b49;
    --secondary: #c9a84c;
    --secondary-light: #d4b96a;
    --secondary-dark: #b8963e;
    --accent: #1a8a5e;
    --bg: #faf8f4;
    --bg-warm: #f5f0e8;
    --bg-card: #ffffff;
    --text: #1a1a2e;
    --text-light: #4a4a6a;
    --gray: #7c7c8a;
    --gray-light: #e8e6e1;
    --gray-lighter: #f3f1ed;
    --red: #c0392b;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-btn: 50px;
    --shadow-sm: 0 2px 8px rgba(13,92,63,0.06);
    --shadow: 0 4px 20px rgba(13,92,63,0.08);
    --shadow-lg: 0 12px 40px rgba(13,92,63,0.12);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-arabic: 'Amiri', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* RTL */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: var(--font-arabic), var(--font-body);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; }

/* --- Motif géométrique islamique (background SVG) --- */
.pattern-bg {
    position: relative;
}
.pattern-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d5c3f' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.pattern-bg > * { position: relative; z-index: 1; }

/* --- Motif arabesque pour les héros --- */
.arabesque-bg {
    position: relative;
    overflow: hidden;
}
.arabesque-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    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='%23c9a84c' fill-opacity='1'%3E%3Cpath d='M40 0L20 20 0 0h10l10 10L30 0h10zm0 80L20 60 0 80h10l10-10 10 10h10zm40-40L60 20 80 0v10L70 20l10 10v10zM0 40l20 20L0 80v-10l10-10L0 30v10zm40 0l-20 20 20 20 20-20-20-20zm0-4l24-24-4-4-20 20-20-20-4 4 24 24z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.arabesque-bg > * { position: relative; z-index: 1; }

/* --- Divider décoratif --- */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px auto;
    max-width: 300px;
    color: var(--secondary);
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}
.divider-icon {
    font-size: 20px;
    color: var(--secondary);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13,92,63,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 24px;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo img {
    height: 52px;
    transition: var(--transition);
}
.navbar-logo:hover img { transform: scale(1.05); }
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.navbar-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 24px;
}
.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary);
}
.navbar-links .btn-don {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.02em;
}
.navbar-links .btn-don::after { display: none; }
.navbar-links .btn-don:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201,168,76,0.35);
    color: var(--white);
}
.don-dropdown {
    position: relative;
}
.don-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}
.don-dropdown.open .don-dropdown-menu {
    display: block;
}
.don-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}
.don-dropdown-menu li a:hover {
    background: rgba(13,92,63,0.06);
    color: var(--primary);
}
.lang-switch-li {
    margin-left: 4px;
}
.lang-switch {
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Amiri', serif;
    transition: var(--transition);
}
.lang-switch:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(201,168,76,0.04);
}
.lang-dropdown {
    position: relative;
}
.lang-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    min-width: 160px;
    padding: 6px 0;
    z-index: 1000;
    list-style: none;
}
.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}
.lang-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
}
.lang-dropdown-menu li a:hover {
    background: rgba(13,92,63,0.06);
    color: var(--primary);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    color: var(--text);
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
}
.navbar-toggle:hover { background: var(--gray-lighter); }

@media (max-width: 900px) {
    .navbar-toggle { display: flex; align-items: center; justify-content: center; }
    .navbar-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px 20px 20px;
        box-shadow: var(--shadow-lg);
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        gap: 2px;
    }
    .navbar-links.open { display: flex; }
    .navbar-links a {
        padding: 14px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
        font-size: 15px;
    }
    .navbar-links a::after { display: none; }
    .navbar-links a:hover { background: var(--gray-lighter); }
    .navbar-links .btn-don { text-align: center; margin-top: 8px; }
    .don-dropdown-menu, .lang-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--gray-lighter);
        border-radius: var(--radius-sm);
        margin-top: 4px;
        min-width: 0;
    }
    .lang-dropdown {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 40%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50 50 100 0 50z' fill='%23c9a84c' fill-opacity='0.5'/%3E%3Cpath d='M50 15L85 50 50 85 15 50z' fill='none' stroke='%23c9a84c' stroke-opacity='0.3'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23c9a84c' stroke-opacity='0.2'/%3E%3C/svg%3E");
    pointer-events: none;
}
/* Lumière dorée en haut */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

/* Forcer les couleurs dans le hero (fond vert) */
.hero .section-title,
.hero .section-title span,
.hero h1 {
    color: var(--white);
}
.hero .section-title span {
    color: var(--secondary);
}
.hero .section-subtitle {
    color: rgba(255,255,255,0.85);
}
.hero .section-label {
    background: rgba(201,168,76,0.2);
    color: var(--secondary);
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 4px solid rgba(201,168,76,0.5);
    animation: heroFadeIn 1s ease-out;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: heroFadeIn 1s ease-out 0.2s both;
}
.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero .btn {
    animation: heroFadeIn 1s ease-out 0.6s both;
}
.hero-ornament {
    display: block;
    margin: 0 auto 24px;
    color: var(--secondary);
    font-size: 28px;
    opacity: 0.7;
    letter-spacing: 12px;
}

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

/* Hero compact pour pages intérieures */
.hero-sm {
    padding: 60px 24px 50px;
}
.hero-sm h1 {
    font-size: clamp(28px, 4vw, 44px);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 14px;
    padding: 10px 24px;
    background: rgba(201,168,76,0.08);
    border-radius: var(--radius-btn);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    color: var(--gray);
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* Card avec accent doré */
.card-gold {
    border-top: 3px solid var(--secondary);
}
.card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}
.card-featured:hover {
    box-shadow: 0 12px 40px rgba(13,92,63,0.25);
}

/* ============================================================
   STAT CARDS
   ============================================================ */
.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    background: rgba(13,92,63,0.06);
    color: var(--primary);
}
.stat-card .stat-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-card .stat-label {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: var(--radius-btn);
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13,92,63,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,92,63,0.3);
    color: var(--white);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.35);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline::before { display: none; }
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}
.btn-lg { padding: 20px 48px; font-size: 19px; }

/* Boutons de montants */
.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
    justify-content: center;
}
.amount-btn {
    padding: 20px 28px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    transition: var(--transition);
    min-width: 120px;
    position: relative;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.amount-btn:hover, .amount-btn.active {
    border-color: var(--secondary);
    background: rgba(201,168,76,0.04);
    color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.amount-btn .real-cost {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    margin-top: 6px;
}
.amount-btn.popular {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
}
.amount-btn.popular::before {
    content: 'Populaire';
    position: absolute;
    top: -11px;
    right: -6px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-btn);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

/* ============================================================
   BARRE DE PROGRESSION
   ============================================================ */
.progress-bar {
    background: var(--gray-lighter);
    border-radius: 10px;
    height: 14px;
    overflow: hidden;
    position: relative;
}
.progress-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.progress-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}
.progress-bar-fill.gold {
    background: linear-gradient(90deg, var(--secondary-dark), var(--secondary), var(--secondary-light));
}
.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================================
   DONUT CHART SVG
   ============================================================ */
.donut-chart {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}
.donut-chart svg { max-width: 220px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08)); }
.donut-legend { list-style: none; }
.donut-legend li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}
.donut-legend .dot {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    flex-shrink: 0;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 48px;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary), var(--secondary));
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 48px;
}
.timeline-dot {
    position: absolute;
    left: -39px;
    top: 6px;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    border: 4px solid var(--bg);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary), var(--shadow-sm);
    transition: var(--transition);
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px var(--secondary), var(--shadow-gold);
}
.timeline-content {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.timeline-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.timeline-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(170deg, var(--primary-dark) 0%, #062a1d 100%);
    color: var(--white);
    padding: 64px 24px 28px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    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%3Cg fill='%23c9a84c' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.footer h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--secondary); padding-left: 4px; }
.footer p, .footer li { font-size: 16px; line-height: 2; }
.footer ul { list-style: none; }
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   BOUTONS FLOTTANTS (Don + Téléphone + Itinéraire)
   ============================================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: var(--transition);
}
.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
.floating-don {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    animation: pulse-don 2s ease-in-out infinite;
}
.floating-phone {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(13,92,63,0.4);
    animation: pulse-phone 2s ease-in-out infinite;
    animation-delay: 0.7s;
}
.floating-locate {
    background: #4285F4;
    box-shadow: 0 4px 20px rgba(66,133,244,0.4);
    animation: pulse-locate 2s ease-in-out infinite;
    animation-delay: 1.4s;
}
@keyframes pulse-don {
    0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
    50% { box-shadow: 0 4px 30px rgba(201,168,76,0.6), 0 0 0 8px rgba(201,168,76,0.08); }
}
@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 4px 20px rgba(13,92,63,0.4); }
    50% { box-shadow: 0 4px 30px rgba(13,92,63,0.6), 0 0 0 8px rgba(13,92,63,0.08); }
}
@keyframes pulse-locate {
    0%, 100% { box-shadow: 0 4px 20px rgba(66,133,244,0.4); }
    50% { box-shadow: 0 4px 30px rgba(66,133,244,0.6), 0 0 0 8px rgba(66,133,244,0.08); }
}

/* ============================================================
   BOUTON RETOUR EN HAUT
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    color: #fff;
}

/* ============================================================
   ANIMATION FADE-IN AU SCROLL
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FIL D'ARIANE (BREADCRUMBS)
   ============================================================ */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 0;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .sep, .breadcrumb .separator { color: var(--gray-light); font-size: 12px; }

/* ============================================================
   SIGNATURE DÉVELOPPEUR FOOTER
   ============================================================ */
.footer-credit {
    margin-top: 12px;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}
.footer-credit .fa-heart {
    color: #EF4444;
    margin: 0 2px;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}
.footer-credit .fa-fire {
    color: #F59E0B;
    margin: 0 2px;
}
.footer-credit a {
    color: var(--secondary) !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding-left: 0 !important;
}
.footer-credit a:hover {
    color: #fff !important;
    text-decoration: underline;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

/* ============================================================
   FIL D'ARIANE (BREADCRUMBS)
   ============================================================ */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 0;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--secondary);
}
.breadcrumb .separator {
    color: var(--gray-light);
    font-size: 12px;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.badge-termine { background: rgba(13,92,63,0.08); color: var(--primary); }
.badge-en-cours { background: rgba(201,168,76,0.1); color: var(--secondary-dark); }
.badge-a-venir { background: rgba(107,114,128,0.08); color: var(--gray); }

/* ============================================================
   RAMADAN BANNER
   ============================================================ */
.ramadan-banner {
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.ramadan-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.1), transparent);
    animation: shimmer 4s infinite;
}

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text);
    letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,92,63,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 14px;
}
.checkbox-group label:hover {
    border-color: var(--primary);
    background: rgba(13,92,63,0.02);
}

/* ============================================================
   IFRAME
   ============================================================ */
.iframe-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}
.iframe-container iframe {
    width: 100%;
    border: none;
    min-height: 600px;
}

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   SPONSOR MAP
   ============================================================ */
.sponsor-map-grid {
    display: grid;
    grid-template-columns: repeat(17, 1fr);
    gap: 4px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.sq-meter {
    aspect-ratio: 1;
    border-radius: 4px;
    background: var(--gray-lighter);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}
.sq-meter.sponsored {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    box-shadow: 0 1px 4px rgba(13,92,63,0.2);
}
.sq-meter:hover {
    transform: scale(1.5);
    z-index: 10;
    box-shadow: var(--shadow);
}
.sq-meter .tooltip {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.sq-meter:hover .tooltip { display: block; }

/* ============================================================
   ARTICLES
   ============================================================ */
.article-card {
    overflow: hidden;
    padding: 0;
}
.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover img { transform: scale(1.06); }
.article-card .article-body { padding: 24px; }
.article-card .article-date {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.article-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 10px 0;
    line-height: 1.3;
    color: var(--text);
}
.article-card h3 a { color: var(--text); }
.article-card h3 a:hover { color: var(--primary); }
.article-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
}

/* Image placeholder pour articles sans image */
.article-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    opacity: 0.9;
}

/* ============================================================
   MAP
   ============================================================ */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    border: 1px solid rgba(0,0,0,0.04);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.pagination a {
    color: var(--text);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination .current {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-success {
    background: rgba(13,92,63,0.06);
    color: var(--primary);
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    border-left: 4px solid var(--primary);
}
.flash-error {
    background: rgba(192,57,43,0.06);
    color: var(--red);
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    border-left: 4px solid var(--red);
}

/* ============================================================
   SECTION SPÉCIALES
   ============================================================ */
/* Section fond coloré */
.section-green {
    background: linear-gradient(170deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.section-green .section-title { color: var(--white); }
.section-green .section-subtitle { color: rgba(255,255,255,0.8); }
.section-green .section-label { background: rgba(201,168,76,0.15); color: var(--secondary); }

.section-warm {
    background: var(--bg-warm);
    padding: 80px 24px;
}

/* Compteur animé */
.counter-big {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

/* ancien bloc responsive remplacé par les media queries en fin de fichier */

/* === TABLETTE === */
@media (max-width: 768px) {
    html { font-size: 17px; }
    .hero { padding: 60px 20px 80px; }
    .hero-sm { padding: 48px 20px 40px; }
    .hero-logo { width: 110px; height: 110px; }
    .section { padding: 48px 20px; }
    .section-green, .section-warm { padding: 48px 20px; }
    .section-green [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .cta-banner { flex-direction: column; text-align: center; }
    .prayer-grid { --prayer-cols: 3; }
    .prayer-grid-6 { --prayer-cols: 3; }
    .cards-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .donut-chart { flex-direction: column; }
    .amount-buttons { justify-content: center; }
    .sponsor-map-grid { grid-template-columns: repeat(12, 1fr); padding: 20px; }
}

/* === MOBILE === */
@media (max-width: 480px) {
    html { font-size: 16px; }
    .hero { padding: 36px 16px 40px !important; }
    .hero-sm { padding: 32px 16px 24px; }
    .hero h1 { font-size: 26px; }
    .mosque-silhouette { display: none; }
    .hero-logo { width: 90px; height: 90px; }
    .section { padding: 36px 16px; }
    .section-green, .section-warm { padding: 36px 16px; }
    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 16px 12px; }
    .stat-card .stat-value { font-size: 24px; }
    .stat-card .stat-label { font-size: 13px; }
    .prayer-grid { --prayer-cols: 3; gap: 10px; }
    .prayer-grid-6 { --prayer-cols: 3; }
    .prayer-card { padding: 16px 10px; }
    .prayer-card .prayer-time { font-size: 24px; }
    .prayer-card .prayer-name { font-size: 11px; }
    .prayer-card .prayer-icon { font-size: 18px; }
    .joumuaa-card { padding: 24px; }
    .joumuaa-card .joumuaa-time { font-size: 36px; }
    .counter-big { font-size: 32px !important; }
    .btn { padding: 14px 28px; font-size: 15px; }
    .btn-lg { padding: 16px 32px; font-size: 16px; }
    .amount-btn { min-width: 80px; padding: 14px 16px; font-size: 15px; }
    .card { padding: 24px 20px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-block { padding: 20px; }
    .feature-icon { width: 44px; height: 44px; font-size: 22px; }
    .cta-banner { padding: 28px 20px; }
    .cta-banner h3 { font-size: 20px; }
    .navbar-brand { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .map-container { height: 280px; }
    .sponsor-map-grid { grid-template-columns: repeat(10, 1fr); }
}

/* animations reveal désactivées — causaient du contenu invisible */

/* ============================================================
   WIDGET HORAIRES DE PRIÈRE (MAISON)
   ============================================================ */
.prayer-grid {
    display: grid;
    grid-template-columns: repeat(var(--prayer-cols, 5), 1fr);
    gap: 16px;
    margin: 0 auto;
}
.prayer-grid-6 {
    --prayer-cols: 6;
}
.prayer-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.prayer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}
.prayer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.prayer-card.prayer-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(13,92,63,0.2);
    transform: scale(1.03);
}
.prayer-card.prayer-active::before {
    background: var(--secondary);
    height: 5px;
}
.prayer-card .prayer-name {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    opacity: 0.7;
}
.prayer-card.prayer-active .prayer-name {
    color: var(--secondary);
    opacity: 1;
}
.prayer-card .prayer-time {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}
.prayer-card.prayer-active .prayer-time {
    color: var(--white);
}
.prayer-card .prayer-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Joumoua card spécial */
.joumuaa-card {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto 40px;
}
.joumuaa-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20 20 40 0 20z' fill='%23fff' fill-opacity='0.3'/%3E%3C/svg%3E");
    pointer-events: none;
}
.joumuaa-card > * { position: relative; z-index: 1; }
.joumuaa-card .joumuaa-time {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin: 8px 0;
}
.joumuaa-card .joumuaa-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

/* ============================================================
   MOSQUÉE SVG ILLUSTRATION
   ============================================================ */
.mosque-illustration {
    display: block;
    margin: 0 auto;
    max-width: 320px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ============================================================
   FEATURE BLOCKS (icônes + texte)
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.feature-block:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(13,92,63,0.08), rgba(26,138,94,0.05));
}
.feature-icon.gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
}
.feature-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
}
.feature-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   CTA BANNER (bandeau compact)
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 8px 32px rgba(13,92,63,0.15);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    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%3Cpath d='M40 0L80 40 40 80 0 40z' fill='%23c9a84c'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}
.cta-banner p {
    opacity: 0.85;
    font-size: 17px;
}

/* ============================================================
   HERO WITH MOSQUE SKYLINE
   ============================================================ */
/* hero-skyline remplacé par div positionnée dans le template */

/* Info note */
.info-note {
    background: rgba(201,168,76,0.08);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    font-size: 16px;
    color: var(--text-light);
    margin: 24px 0;
    line-height: 1.65;
}
.info-note strong { color: var(--secondary-dark); }
