/* ── Reset : marges, paddings, box-sizing ── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ── Comportement du scroll HTML fluide ── */
        html {
            scroll-behavior: smooth;
        }

        /* ── Corps de page : flex colonne, fond beige, police Inter ── */
        body {
            font-family: 'Inter', sans-serif;
            background: #F9F8F6;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ── Main : s'étire pour remplir l'espace disponible ── */
        main {
            flex: 1;
        }

        /* ════════════════════════════════════════
           VARIABLES & CORE
        ════════════════════════════════════════ */
        :root {
            --m-white: #ffffff;
            --m-beige: #F9F8F6;
            --m-beige-darker: #F0EBE1;
            --m-peps: #E06D3D;
            --m-peps-hover: #C2572B;
            --m-text: #2C3E50;
            --m-text-light: #64748B;

            --m-glass-nav: rgba(255, 255, 255, 0.95);
            --m-blur: blur(20px);
            --m-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --m-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --m-card-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        /* ════════════════════════════════════════
           NAVBAR 
        ════════════════════════════════════════ */
        /* ── Navbar: barre principale fixée (pilule flottante) ── */
        .fixed-mosquee-nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1400px;
            z-index: 1005;
            height: 75px;
            background: var(--m-glass-nav);
            backdrop-filter: var(--m-blur);
            -webkit-backdrop-filter: var(--m-blur);
            border-radius: 40px;
            box-shadow: var(--m-shadow);
            transition: all var(--m-transition);
            display: flex;
            align-items: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .fixed-mosquee-nav.scrolled {
            top: 15px;
            width: 95%;
            height: 70px;
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .fixed-mosquee-container {
            width: 100%;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        /* ── Logo : lien icône + nom de la mosquée ── */
        .fixed-mosquee-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            z-index: 1006;
        }

        /* ── Icône mosque (Font Awesome) ── */
        .fixed-mosquee-logo-icon {
            font-size: 2.2rem;
            color: var(--m-peps);
        }

        /* ── Bloc texte du logo (colonne) ── */
        .fixed-mosquee-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        /* ── Nom principal en gras ── */
        .fixed-mosquee-logo-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--m-text);
            letter-spacing: -0.02em;
        }

        /* ── Sous-titre ville (uppercase) ── */
        .fixed-mosquee-logo-sub {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--m-text-light);
            text-transform: uppercase;
        }

        /* ── Liste des liens de navigation centrée ── */
        .fixed-mosquee-menu {
            display: flex;
            list-style: none;
            gap: 5px;
            margin: 0 auto;
            z-index: 1005;
        }

        .fixed-mosquee-menu-link {
            text-decoration: none;
            color: var(--m-text);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 10px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .fixed-mosquee-menu-link:hover {
            color: var(--m-peps);
            background: var(--m-beige-darker);
        }

        /* ── Zone d'actions droite (boutons + hamburger) ── */
        .fixed-mosquee-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1006;
        }

        /* ── Bouton CTA principale (orange pill) ── */
        .fixed-mosquee-btn-don {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--m-peps);
            color: var(--m-white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 30px;
            box-shadow: 0 8px 20px rgba(224, 109, 61, 0.3);
            transition: all 0.3s ease;
            border: none;
        }

        .fixed-mosquee-btn-don:hover {
            transform: translateY(-2px);
            background: var(--m-peps-hover);
        }

        /* ── Bouton hamburger (masqué sur desktop, visible mobile) ── */
        .fixed-mosquee-hamburger {
            display: none;
            width: 45px;
            height: 45px;
            background: transparent;
            border: 2px solid var(--m-text);
            border-radius: 50%;
            cursor: pointer;
            position: relative;
        }

        /* ── Traits du hamburger (transformés en × quand ouvert) ── */
        .fixed-mosquee-hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--m-text);
            margin: 4px auto;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* ── Animation d'ouverture : forme × ── */
        .fixed-mosquee-hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .fixed-mosquee-hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .fixed-mosquee-hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* ════════════════════════════════════════
           HERO SECTION
        ════════════════════════════════════════ */
        /* ── Section Hero : plein écran avec image de fond ── */
        .fixed-mosquee-hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: var(--m-text);
        }

        /* ── Image de fond du hero (overlay semi-transparent) ── */
        .fixed-mosquee-hero-img {
            position: absolute;
            inset: 0;
            background: url('../images/header.avif') center/cover no-repeat;
            opacity: 0.5;
        }

        .fixed-mosquee-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            margin-top: 40px;
        }

        .fixed-mosquee-hero-content h1 {
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--m-white);
            text-transform: uppercase;
        }

        .fixed-mosquee-hero-content h1 span {
            color: var(--m-peps);
            display: block;
            font-weight: 500;
            font-size: 0.35em;
            letter-spacing: 0.3em;
            margin-bottom: 15px;
        }

        /* ── Description sous le titre ── */
        .fixed-mosquee-hero-desc {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ── Boutons CTA du hero (flex wrap) ── */
        .fixed-mosquee-hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ════════════════════════════════════════
           CORPS DE PAGE
        ════════════════════════════════════════ */
        /* ── Classes de couleur de fond: beige / blanc ── */
        .bg-beige {
            background-color: var(--m-beige);
        }

        .bg-white {
            background-color: var(--m-white);
        }

        /* ── Espace vertical autour des sections ── */
        .section-wrapper {
            padding: 80px 20px;
        }

        /* ── Conteneur centré des sections (largeur max) ── */
        .section-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-inner-narrow {
            max-width: 800px;
            margin: 0 auto;
        }

        /* ── Bloc titre de section (centré + barre) ── */
        .section-title-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--m-text);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-align: center;
        }

        .section-line {
            width: 50px;
            height: 4px;
            background: var(--m-peps);
            border-radius: 4px;
            margin-top: 15px;
        }

        /* ── Carte blanche arrondie (conteneur principal) ── */
        .mosquee-card {
            background: var(--m-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--m-card-shadow);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .bg-white .mosquee-card {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        /* ── SECTION DONS: boutons de paiement (carte / cotizup) ── */
        .don-action-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-outline-peps {
            flex: 1;
            max-width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 20px;
            border: 2px solid var(--m-peps);
            border-radius: 12px;
            color: var(--m-peps);
            text-decoration: none;
            font-weight: 700;
            background: var(--m-white);
            transition: all 0.3s;
            font-size: 1.05rem;
        }

        .btn-outline-peps:hover {
            background: var(--m-peps);
            color: var(--m-white);
        }

        /* ── En-tête avec montant récolté ── */
        .don-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .don-header p {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--m-text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ── Chiffre-clé du montant total (gros orange) ── */
        .don-total {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--m-peps);
            line-height: 1;
            margin: 10px 0;
        }

        /* ── Conteneur de la jauge de progression ── */
        .gauge-wrapper {
            margin: 30px 0;
        }

        .gauge-container {
            background: #EAEAEA;
            border-radius: 20px;
            height: 14px;
            width: 100%;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .gauge-fill {
            background: var(--m-peps);
            height: 100%;
            width: 0%;
            transition: width 1.5s ease-out;
            border-radius: 20px;
        }

        /* ── Grille des sources de dons (Banque / Cotizup) ── */
        .don-sources {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .source-card {
            background: var(--m-beige);
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .source-card span {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--m-text-light);
            text-transform: uppercase;
        }

        .source-card strong {
            font-size: 1.4rem;
            color: var(--m-text);
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* ── SECTION PROJET: layout deux colonnes (texte + vidéo) ── */
        .project-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .project-text-container {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--m-text);
        }

        .project-text-container p {
            margin-bottom: 15px;
        }

        .project-highlight {
            font-weight: 700;
            color: var(--m-peps);
        }

        .project-stats {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .p-stat {
            flex: 1;
            background: var(--m-beige);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #EAEAEA;
        }

        .p-stat strong {
            display: block;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--m-text);
        }

        .p-stat span {
            font-size: 0.8rem;
            color: var(--m-text-light);
            text-transform: uppercase;
            font-weight: 700;
        }

        .project-video video {
            width: 100%;
            display: block;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 4px solid var(--m-beige);
            background: #000;
        }

        /* ── SECTION BANQUE ── */
        .bank-field {
            margin-bottom: 20px;
        }

        .bank-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--m-text-light);
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            padding-left: 20px;
        }

        .copy-group {
            display: flex;
            background: #F5F2EB;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: border 0.3s;
        }

        .copy-group:focus-within {
            border: 2px solid var(--m-peps);
        }

        .copy-group input {
            flex: 1;
            min-width: 0;
            background: transparent;
            border: none;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--m-text);
            outline: none;
            white-space: nowrap;
            overflow-x: auto;
        }

        .btn-copy {
            background: var(--m-beige-darker);
            border: none;
            padding: 0 25px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            color: var(--m-text);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .btn-copy:hover {
            background: var(--m-peps);
            color: white;
        }

        .btn-dl {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background: var(--m-peps);
            color: white;
            padding: 18px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 30px;
            transition: 0.3s;
        }

        .btn-dl:hover {
            background: var(--m-peps-hover);
        }

        /* ── SECTION CARROUSEL: défilement des photos du terrain ── */
        .carousel-container {
            position: relative;
            padding: 0 45px;
            width: 100%;
            margin-top: 20px;
        }

        .carousel-track-wrapper {
            overflow: hidden;
            border-radius: 16px;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            list-style: none;
            transition: transform 0.5s ease-in-out;
            margin: 0;
            padding: 0;
        }

        .carousel-slide {
            flex: 0 0 33.3333%;
            padding: 0 10px;
            cursor: pointer;
            text-align: center;
        }

        .carousel-slide img {
            width: 100%;
            height: 220px;
            object-fit: contain;
            background-color: var(--m-white);
            border-radius: 12px;
            transition: transform 0.3s, border 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .carousel-slide:hover img {
            transform: scale(1.02);
        }

        .slide-desc {
            margin-top: 15px;
            font-size: 1rem;
            color: var(--m-text-light);
            transition: all 0.3s;
            font-weight: 500;
        }

        .carousel-slide.active .slide-desc {
            font-weight: 800;
            color: var(--m-peps);
            font-size: 1.1rem;
        }

        .carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            background: var(--m-white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            color: var(--m-text);
            font-size: 1.2rem;
            z-index: 20;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: var(--m-peps);
            color: white;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }

        /* ── MODALE IMAGE: plein écran sur clic photo carrousel ── */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
        }

        .image-modal.show {
            display: flex;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            max-width: 80%;
            max-height: 85vh;
            text-align: center;
            position: relative;
            z-index: 2002;
        }

        .modal-img {
            max-width: 100%;
            max-height: 75vh;
            border-radius: 12px;
            object-fit: contain;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .modal-desc {
            color: var(--m-white);
            font-size: 1.2rem;
            margin-top: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            z-index: 2005;
            transition: 0.2s;
        }

        .modal-close:hover {
            color: var(--m-peps);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.8rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2005;
        }

        .modal-nav:hover {
            background: var(--m-peps);
        }

        .modal-prev {
            left: 3%;
        }

        .modal-next {
            right: 3%;
        }

        /* ── SECTION HORAIRES: cartes Vendredi + iframe Mawaqit ── */
        .vendredi-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--m-text);
            margin-bottom: 20px;
            text-align: center;
        }

        .vendredi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .v-card {
            border: 1px solid #EAEAEA;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            background: #FFF;
            transition: 0.3s;
        }

        .v-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-color: transparent;
        }

        .v-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .v-ete {
            background: #F5A623;
            box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
        }

        .v-hiver {
            background: #1877F2;
            box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
        }

        .v-info strong {
            display: block;
            font-size: 1.1rem;
            color: var(--m-text);
            font-weight: 800;
        }

        .v-info span {
            font-size: 0.95rem;
            color: var(--m-text-light);
        }

        .mawaqit-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px dashed #EAEAEA;
        }

        .iframe-wrapper {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #EAEAEA;
        }

        /* ── SECTION ACTUALITÉS: réseaux sociaux Facebook, Instagram, Snapchat ── */
        .social-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--m-text);
            margin-bottom: 35px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .social-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 30px 20px;
            border-radius: 16px;
            background: var(--m-white);
            text-decoration: none;
            color: var(--m-text);
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
            border: 1px solid #EAEAEA;
        }

        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .social-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* ── TAGS ACTUALITÉS ── */
        .event-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 35px;
        }

        .event-tag {
            background: rgba(224, 109, 61, 0.1);
            /* Fond légèrement orangé */
            color: var(--m-peps);
            /* Texte orange peps */
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 0.95rem;
            border: 1px solid rgba(224, 109, 61, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 600px) {
            .event-tag {
                font-size: 0.85rem;
                padding: 8px 16px;
            }
        }

        .facebook-icon {
            background: #1877F2;
        }

        .instagram-icon {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .snapchat-icon {
            background: #FFFC00;
            color: #000;
        }

        .social-card span {
            font-weight: 800;
            font-size: 1.1rem;
        }

        /* ── SECTION CONTACT: layout (infos + carte Google Maps) ── */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 30px;
            align-items: center;
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .c-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--m-white);
            padding: 15px 20px;
            border-radius: 16px;
            border: 1px solid #EAEAEA;
            transition: 0.3s;
        }

        .c-card:hover {
            border-color: var(--m-peps);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .c-icon {
            width: 45px;
            height: 45px;
            background: var(--m-beige);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--m-peps);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .c-info strong {
            display: block;
            font-size: 0.85rem;
            color: var(--m-text-light);
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .c-info p {
            margin: 0;
        }

        .contact-link {
            font-size: 1rem;
            font-weight: 700;
            color: var(--m-text);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-link:hover {
            color: var(--m-peps);
        }

        .map-container {
            height: 100%;
            min-height: 250px;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #EAEAEA;
        }

        /* ── FOOTER & SCROLL TO TOP: pied de page + bouton retour haut ── */
        .main-footer {
            background: var(--m-text);
            color: var(--m-white);
            text-align: center;
            padding: 40px 20px;
            margin-top: auto;
        }

        .main-footer p {
            font-weight: 500;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--m-peps);
            color: var(--m-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(224, 109, 61, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            font-size: 1.2rem;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: var(--m-peps-hover);
            transform: translateY(-3px);
        }

        /* ════════════════════════════════════════
           RESPONSIVE ET MENU MOBILE
        ════════════════════════════════════════ */
        @media (max-width: 992px) {
            .fixed-mosquee-menu {
                position: fixed;
                top: 100px;
                left: 50%;
                transform: translateX(-50%);
                width: 92%;
                background: var(--m-white);
                flex-direction: column;
                align-items: center;
                gap: 0;
                z-index: 1000;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
                border-radius: 20px;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease-in-out;
            }

            .fixed-mosquee-menu.open {
                max-height: 500px;
                opacity: 1;
                visibility: visible;
                padding: 15px 0;
            }

            .fixed-mosquee-menu li {
                width: 100%;
            }

            .fixed-mosquee-menu-link {
                font-size: 1.1rem;
                padding: 18px 15px;
                width: 100%;
                text-align: center;
                border-radius: 0;
                display: block;
            }

            .fixed-mosquee-menu li+li {
                border-top: 1px solid rgba(0, 0, 0, 0.05);
            }

            .fixed-mosquee-hamburger {
                display: block;
            }

            .fixed-mosquee-actions .fixed-mosquee-btn-don {
                display: none;
            }

            .project-layout,
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .carousel-slide {
                flex: 0 0 50%;
            }

            .modal-nav {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 600px) {

            .fixed-mosquee-nav,
            .fixed-mosquee-nav.scrolled {
                top: 15px;
                width: 92%;
                border-radius: 40px;
                height: 75px;
                background: rgba(255, 255, 255, 0.98);
                border: 1px solid rgba(0, 0, 0, 0.05);
            }

            .fixed-mosquee-container {
                padding: 0 20px;
            }

            .fixed-mosquee-logo-icon {
                font-size: 1.8rem;
            }

            .fixed-mosquee-logo-name {
                font-size: 1.1rem;
            }

            .fixed-mosquee-logo-sub {
                font-size: 0.65rem;
            }

            .fixed-mosquee-hero-content {
                padding: 0 15px;
            }

            .fixed-mosquee-hero-content h1 {
                font-size: 2rem;
            }

            .fixed-mosquee-hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .fixed-mosquee-hero-btns a {
                width: 100%;
                justify-content: center;
            }

            .section-wrapper {
                padding: 60px 15px;
            }

            .mosquee-card {
                padding: 25px 20px;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .project-stats {
                flex-direction: column;
                gap: 10px;
            }

            .don-action-btns {
                flex-direction: column;
                gap: 10px;
            }

            .btn-outline-peps {
                max-width: 100%;
            }

            .don-sources,
            .vendredi-grid {
                grid-template-columns: 1fr;
            }

            .don-total {
                font-size: 2.8rem;
            }

            .bank-field label {
                padding-left: 12px;
            }

            .copy-group input {
                font-size: 0.85rem;
                padding: 16px 12px;
                letter-spacing: -0.2px;
            }

            .txt-copy {
                display: none;
            }

            .btn-copy {
                padding: 0 18px;
                font-size: 1.1rem;
            }

            .btn-dl {
                width: 100%;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .carousel-slide {
                flex: 0 0 100%;
            }

            .carousel-container {
                padding: 0 35px;
            }

            .modal-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .modal-prev {
                left: 2%;
            }

            .modal-next {
                right: 2%;
            }

            .modal-close {
                top: 10px;
                right: 20px;
                font-size: 2.5rem;
            }
        }

/* ════════════════════════════════════════
   UTILITIES (Extracted from index.html)
   ════════════════════════════════════════ */
.hero-btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-btn-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.text-peps {
    color: var(--m-peps) !important;
}

.video-caption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--m-text-light);
    margin-top: 10px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.text-center {
    text-align: center !important;
}

.img-mosquee {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.fs-105 {
    font-size: 1.05rem;
}

.cursor-pointer {
    cursor: pointer !important;
}

.iframe-no-border {
    border: 0 !important;
}
