/* Base Styles */
:root {
    --primary-color: #6a0dad;  /* Violet principal */
    --secondary-color: #4b0082; /* Violet plus foncé */
    --accent-color: #ffd700;    /* Or */
    --dark-color: #1a1a1a;      /* Noir */
    --light-color: #f8f8ff;     /* Blanc légèrement teinté */
    --text-color: #333;         /* Noir pour texte */
    --text-light: #666;         /* Gris foncé */
    --white: #ffffff;           /* Blanc pur */
    --black: #000000;           /* Noir pur */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: arial;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}
/* Pop-up Ultra Simple - Flyer seulement */
.simple-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.simple-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.simple-popup-content {
    background: transparent;
    max-width: 500px;
    width: 100%;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-flyer-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.popup-flyer-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
    background: white;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-btn {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.popup-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.popup-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.popup-btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.close-popup-top {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-popup-top:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
}

/* Pour mobiles */
@media (max-width: 480px) {
    .simple-popup-content {
        max-width: 95%;
    }
    
    .popup-flyer-container img {
        max-height: 400px;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .popup-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .close-popup-top {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-spinner {
    display: flex;
    gap: 15px;
}

.spinner-circle {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2) {
    animation-delay: -0.16s;
}

/* Buttons */

/* Augmenter la taille des boutons existants */
.btn {
    padding: 15px 35px; /* Augmentation de la taille */
    font-size: 16px; /* Taille de police plus grande */
}

.btn-primary, .btn-secondary {
    min-height: 50px; /* Hauteur minimale */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Ajout des boutons flottants */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: glowVibration 2s infinite alternate;
}

.floating-btn.prayer {
    background-color: #e74c3c; /* Rouge */
    color: white;
}

.floating-btn.discipleship {
    background-color: #2ecc71; /* Vert */
    color: white;
}

.floating-btn i {
    font-size: 20px;
}

@keyframes glowVibration {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
}

.floating-btn:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 1);
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.2);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    transform: translateY(0);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Wave Divider */
.wave-divider {
    height: 100px;
    width: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%236a0dad" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%236a0dad" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%236a0dad"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    animation: waveAnimation 10s linear infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background: rgba(106, 13, 173, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.logo span {
    color: var(--accent-color);
}

.navbar.scrolled .logo {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.4s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background-color: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/363340325_681668813987988_8219068639555876306_n.jpg') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, 
        rgba(106, 13, 173, 0.3) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--accent-color);
    display: block;
    font-size: 0.8em;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-services {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-tag {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.service-tag:nth-child(2) {
    animation-delay: 0.3s;
}

.service-tag:nth-child(3) {
    animation-delay: 0.6s;
}

.service-tag:nth-child(4) {
    animation-delay: 0.9s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.scroller {
    width: 6px;
    height: 10px;
    background-color: var(--white);
    border-radius: 3px;
    margin-top: 10px;
    animation: scroll 2s infinite;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    transition: transform 0.3s ease;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Actions Section */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.action-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(106, 13, 173, 0.1) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 10px;
    z-index: -1;
    transform: translateZ(-10px);
}

.action-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0) 50%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
    opacity: 0;
}

.action-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.action-card:hover::after {
    opacity: 1;
}

.action-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 30px;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.action-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(106, 13, 173, 0.1) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 10px;
    z-index: -1;
    transform: translateZ(-10px);
}

.service-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.2);
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-color);
}

/* Émissions Section */
.shows-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.show-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.show-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.show-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.show-card:hover .show-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-color);
    transition: var(--transition);
}

.show-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--accent-color);
}

.show-meta {
    padding: 25px;
}

.show-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 15px;
}

/* Équipement Section */
.gear-section {
    background-color: var(--light-color);
}

.gear-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.gear-text {
    flex: 1;
}

.gear-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gear-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.gear-list {
    margin: 30px 0;
}

.gear-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gear-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(106, 13, 173, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gear-item:hover i {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(15deg);
}

/* Partenariats Section */
.partners-section {
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-width: 100px;
    height: auto;
    
    transition: var(--transition);
}

.partners-grid img:hover {
    
    opacity: 1;
    transform: scale(1.1);
}

/* Devenir un Disciple Section */
.discipleship-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discipleship-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    animation: rotate 20s linear infinite;
}

.discipleship-cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.discipleship-text {
    flex: 1;
}

.discipleship-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--white);
}

.discipleship-text p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.discipleship-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.discipleship-image {
    flex: 1;
    position: relative;
}

.discipleship-image .image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discipleship-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bible-verse {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 20px;
    border-radius: 5px;
    color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.bible-verse p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 5px;
    color: var(--white);
}

.bible-verse span {
    font-size: 14px;
    opacity: 0.8;
}

/* Events Section */
.events-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.events-slider::-webkit-scrollbar {
    height: 8px;
}

.events-slider::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.events-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.event-card {
    min-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 18px;
    text-transform: uppercase;
    margin: 5px 0;
}

.event-date .year {
    font-size: 14px;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-location {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Discipolat Section */
.discipolat-section {
    background-color: var(--light-color);
}

.discipolat-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.discipolat-text {
    flex: 1;
}

.discipolat-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.discipolat-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    background-color: rgba(74, 111, 165, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: rotate(15deg);
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* Actualité Section */
.actualite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.actualite-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.actualite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.actualite-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.actualite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.actualite-card:hover .actualite-image img {
    transform: scale(1.1);
}

.actualite-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    z-index: 1;
}

.actualite-date span:first-child {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.actualite-date span:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

.actualite-content {
    padding: 25px;
}

.actualite-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.actualite-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.actualite-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 500px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Section */
/* ===== Contact Section Social Links ===== */
.contact-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-section .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.contact-section .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

/* Specific colors for each platform */
.contact-section .social-links a.facebook:hover { background-color: #1877f2; color: white; }
.contact-section .social-links a.twitter:hover { background-color: #1da1f2; color: white; }
.contact-section .social-links a.instagram:hover { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
    color: white; 
}
.contact-section .social-links a.youtube:hover { background-color: #ff0000; color: white; }
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.2);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Support Banner */
.support-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23ffd700" stroke-width="2" stroke-dasharray="10,5" opacity="0.2"/></svg>');
    background-size: 20px 20px;
    opacity: 0.2;
}

.support-content {
    position: relative;
    z-index: 1;
}

.support-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.support-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}


@keyframes particle-fly {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: rotate(30deg) translate(30%, 30%);
        opacity: 0;
    }
}

.animate-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.animate-from-bottom.delay-1 {
    animation-delay: 0.3s;
}

.animate-from-bottom.delay-2 {
    animation-delay: 0.6s;
}

.animate-from-bottom.delay-3 {
    animation-delay: 0.9s;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s forwards;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

    .about-content, 
    .discipolat-content,
    .gear-content,
    .discipleship-cta-content,
    .contact-content {
        flex-direction: column;
    }

    .discipleship-text {
        order: 2;
    }
    
    .discipleship-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .discipleship-text h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) { 

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .event-card,
    .testimonial-card {
        min-width: 280px;
    }

    .discipleship-text h2
     {
        font-size: 30px;
    }
    
    .discipleship-cta-section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}




/* Programmes de Discipolat */
.programs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23ffd700" stroke-width="2" stroke-dasharray="10,5" opacity="0.2"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.programs-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.programs-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.programs-filter {
    background-color: var(--light-color);
    padding: 30px 0;
    position: sticky;
    top: 80px;
     
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 16px;
    padding-right: 50px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--secondary-color);
    transform: rotate(15deg);
}

.programs-library {
    padding: 60px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-thumbnail img {
    transform: scale(1.1);
}

.play-btn, .pdf-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 20px;
}

.pdf-icon {
    background-color: rgba(234, 67, 53, 0.9);
    color: var(--white);
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.church-logo {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.church-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-type {
    display: inline-block;
    font-size: 12px;
    background-color: rgba(106, 13, 173, 0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.program-church {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: block;
}

.program-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    flex: 1;
}

.program-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.program-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.program-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.program-card .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.program-card .btn-primary i {
    margin-right: 8px;
}

.submit-program {
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 10px;
    margin-top: 30px;
}

.submit-program h2 {
    margin-bottom: 15px;
}

.submit-program p {
    max-width: 600px;
    margin: 0 auto 20px;
}

.submit-program .btn-primary {
    padding: 15px 30px;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 36px;
    }
    
    .programs-hero p {
        font-size: 18px;
    }
    
    .filter-options {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}



/* Annuaire Simplifié */
.simple-church-directory {
    background-color: var(--light-color);
    padding: 60px 0;
}

.region-filter {
    max-width: 300px;
    margin: 0 auto 30px;
}

.region-filter select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-family: var(--font-primary);
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236a0dad'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.church-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.church-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.church-card:hover {
    transform: translateY(-5px);
}

.church-image {
    height: 200px;
    overflow: hidden;
}

.church-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.church-card:hover .church-image img {
    transform: scale(1.05);
}

.church-info {
    padding: 20px;
}

.church-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.church-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.church-info i {
    width: 20px;
    color: var(--primary-color);
}

.church-contact {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 8px 15px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.social-btn.facebook {
    background-color: #1877f2;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn i {
    color: white !important;
}

.add-church {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.add-church p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .church-list {
        grid-template-columns: 1fr;
    }
}


/* Badges de dénomination */
.denomination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Couleurs spécifiques pour chaque dénomination */
.denomination-badge.pentecotiste {
    background-color: #6a0dad; /* Violet */
}

.denomination-badge.baptiste {
    background-color: #3498db; /* Bleu */
}

.denomination-badge.charismatique {
    background-color: #e74c3c; /* Rouge */
}

.denomination-badge.protestante {
    background-color: #2ecc71; /* Vert */
}

.denomination-badge.catholique {
    background-color: #f39c12; /* Orange */
}

/* Adaptation de l'image pour le badge */
.church-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* Church Finder Section */
.church-finder-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.finder-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.finder-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Church Directory */
.church-directory-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.church-directory-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.church-directory-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.church-search-tools {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 16px;
    padding-right: 50px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--secondary-color);
}

#locate-me-btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    padding: 0 20px;
    height: 50px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

#locate-me-btn:hover {
    background-color: #e6c200;
}

.filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    background-color: var(--white);
    min-width: 200px;
}

.directory-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.map-container {
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.church-list-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: 600px;
    display: flex;
    flex-direction: column;
}

.church-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: none;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.view-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.church-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Style pour la vue en liste */
.church-list.list-view {
    display: block;
}

.church-list.list-view .church-card {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.church-list.list-view .church-card-header {
    flex: 1;
}

.church-list.list-view .church-card-body {
    flex: 2;
}

.church-list.list-view .church-card-footer {
    flex: 1;
    justify-content: flex-end;
}

/* Style pour la vue en grille */
.church-list.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.church-list.grid-view .church-card {
    display: block;
    margin-bottom: 0;
}

.church-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.church-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.church-card:hover .denomination-badge {
    background-color: var(--white);
    color: var(--primary-color);
}

.church-card:hover .btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.church-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.denomination-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.church-card-body p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.church-card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: inherit;
    font-size: 18px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.page-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn:hover:not(:disabled) {
    background-color: var(--secondary-color);
}

.add-church-cta {
    text-align: center;
    padding: 60px 0;
    background-color: var(--light-color);
    margin-top: 60px;
}

.add-church-cta h2 {
    margin-bottom: 15px;
}

/* Modal */
.church-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin-bottom: 0;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: auto;
}

.modal-map {
    height: 100%;
    min-height: 300px;
}

.modal-details {
    padding: 20px;
    overflow-y: auto;
}

.modal-details h3 {
    margin: 20px 0 15px;
    font-size: 18px;
    color: var(--primary-color);
}

.modal-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.modal-details i {
    margin-top: 3px;
}


/* ===== CORRECTIONS POPUP PROJET - SCROLL ET NAVIGATION OPTIMISÉS ===== */

/* Popup overlay - base */
.popup-overlay.modern-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto; /* Scroll sur l'overlay */
    padding: 20px 0;
    align-items: flex-start; /* Alignement en haut */
}

.popup-overlay.modern-popup.active {
    display: flex;
    justify-content: center;
}

/* Container principal du popup */
.modern-popup-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    margin: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: popupSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    max-height: none; /* Enlever la limite de hauteur */
}

/* Popup formulaire */
.modern-popup-content.form-popup {
    max-width: 900px;
}

/* Header - toujours visible */
.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 40px 30px;
    color: white;
    position: relative;
    flex-shrink: 0;
    border-radius: 24px 24px 0 0;
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.popup-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 0;
}

.modern-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modern-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Contenu scrollable */
.explanation-content {
    padding: 40px;
    overflow-y: visible; /* Pas de scroll interne */
    flex: 1;
}

/* Progress bar du formulaire - toujours visible */
.form-progress {
    padding: 30px 40px 20px;
    background: #f8f9ff;
    border-bottom: 1px solid #eef2ff;
    flex-shrink: 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e7ff;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.step-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--primary-color);
}

.progress-bar {
    height: 6px;
    background: #e0e7ff;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Container des étapes du formulaire */
.form-steps {
    padding: 40px;
    overflow-y: visible; /* Pas de scroll interne */
    flex: 1;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Navigation du formulaire - toujours visible en bas */
.form-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background: white;
    border-top: 1px solid #eef2ff;
    gap: 20px;
    flex-shrink: 0;
    border-radius: 0 0 24px 24px;
    position: sticky;
    bottom: 0;
    z-index: 5;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-prev {
    background: #f8f9ff;
    color: #666;
    border: 1px solid #e0e7ff;
}

.btn-prev:hover {
    background: #eef2ff;
    color: var(--primary-color);
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    display: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.step-indicator {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.current-step {
    color: var(--primary-color);
}

/* Actions du popup d'explication - toujours visible en bas */
.popup-actions {
    display: flex;
    gap: 15px;
    padding: 30px 40px;
    background: #f8f9ff;
    border-top: 1px solid #eef2ff;
    flex-shrink: 0;
    border-radius: 0 0 24px 24px;
    position: sticky;
    bottom: 0;
    z-index: 5;
}

.btn-outline,
.btn-gradient {
    flex: 1;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline {
    background: white;
    border: 2px solid #e0e7ff;
    color: #666;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.4);
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    .popup-overlay.modern-popup {
        padding: 10px 0;
    }

    .modern-popup-content {
        width: 95%;
        border-radius: 16px;
    }

    .popup-header {
        padding: 30px 25px 25px;
        border-radius: 16px 16px 0 0;
    }

    .popup-header h2 {
        font-size: 24px;
    }

    .popup-subtitle {
        font-size: 14px;
    }

    .explanation-content,
    .form-steps {
        padding: 25px;
    }

    .form-progress {
        padding: 20px 25px 15px;
    }

    .progress-steps {
        margin-bottom: 10px;
    }

    .step-label {
        font-size: 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .progress-steps::before {
        left: 30px;
        right: 30px;
    }

    .form-navigation,
    .popup-actions {
        flex-direction: column;
        padding: 20px 25px;
        gap: 12px;
        border-radius: 0 0 16px 16px;
    }

    .btn-prev,
    .btn-next,
    .btn-submit,
    .btn-outline,
    .btn-gradient {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .step-indicator {
        order: -1;
        width: 100%;
        text-align: center;
        padding-bottom: 12px;
        border-bottom: 1px solid #eef2ff;
    }

    .explanation-grid,
    .form-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Scrollbar personnalisée pour le popup overlay */
.popup-overlay.modern-popup::-webkit-scrollbar {
    width: 8px;
}

.popup-overlay.modern-popup::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.popup-overlay.modern-popup::-webkit-scrollbar-thumb {
    background: rgba(106, 13, 173, 0.6);
    border-radius: 10px;
}

.popup-overlay.modern-popup::-webkit-scrollbar-thumb:hover {
    background: rgba(106, 13, 173, 0.8);
}

/* Fix pour éviter le débordement */
.services-selection,
.form-group-modern,
.file-upload-modern {
    width: 100%;
    box-sizing: border-box;
}

/* Assurer que les boutons restent visibles */
.btn-prev[style*="display: none"],
.btn-next[style*="display: none"],
.btn-submit[style*="display: none"] {
    display: none !important;
}

/* Animation d'ouverture du popup */
@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Empêcher le scroll du body quand popup ouvert */
body.popup-open {
    overflow: hidden;
}

/* ===== BOUTON ORANGE VIBRANT ET ALARMANT - SOUMETTRE UN PROJET ===== */

.btn-modern {
    position: relative;
    display: inline-block;
    padding: 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ff4500 100%);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 40px rgba(255, 107, 0, 0.5),
        0 0 30px rgba(255, 107, 0, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    animation: buttonVibrate 2s ease-in-out infinite;
}

/* Animation de vibration continue */
@keyframes buttonVibrate {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 
            0 15px 40px rgba(255, 107, 0, 0.5),
            0 0 30px rgba(255, 107, 0, 0.3),
            inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    }
    25% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 
            0 25px 50px rgba(255, 107, 0, 0.7),
            0 0 50px rgba(255, 107, 0, 0.5),
            inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: translateY(0) scale(1.01);
        box-shadow: 
            0 20px 45px rgba(255, 107, 0, 0.6),
            0 0 40px rgba(255, 107, 0, 0.4),
            inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    }
    75% {
        transform: translateY(-3px) scale(1.015);
        box-shadow: 
            0 22px 48px rgba(255, 107, 0, 0.65),
            0 0 45px rgba(255, 107, 0, 0.45),
            inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    }
}

.btn-modern:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(255, 107, 0, 0.7),
        0 0 60px rgba(255, 107, 0, 0.6),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3);
    animation: buttonPulse 0.8s ease-in-out infinite;
}

/* Animation de pulsation au survol */
@keyframes buttonPulse {
    0%, 100% {
        transform: translateY(-10px) scale(1.05);
    }
    50% {
        transform: translateY(-12px) scale(1.07);
    }
}

.btn-modern:active {
    transform: translateY(-4px) scale(0.98);
    box-shadow: 
        0 10px 25px rgba(255, 107, 0, 0.5),
        0 0 20px rgba(255, 107, 0, 0.4);
}

/* Effet de brillance animée */
.btn-modern::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ffd700, 
        #ff6b00, 
        #ff4500, 
        #ffd700,
        #ff8c00,
        #ffd700);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
    background-size: 400% 400%;
    animation: gradientRotate 4s ease infinite;
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.btn-modern:hover::before {
    opacity: 1;
}

/* Contenu du bouton */
.btn-content {
    display: flex;
    align-items: center;
    padding: 28px 45px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    color: #ff6b00;
    font-size: 32px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(5deg);
    }
}

.btn-modern:hover .btn-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    animation: none;
}

.btn-text {
    text-align: left;
    flex: 1;
}

.btn-main-text {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.btn-sub-text {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    margin-left: 35px;
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
    animation: arrowMove 1.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.btn-modern:hover .btn-arrow {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(15px);
    }
}

/* Effet de vagues lumineuses */
.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: slideGlow 2.5s infinite linear;
    z-index: 1;
}

@keyframes slideGlow {
    0% { 
        transform: translateX(-100%) skewX(-15deg); 
    }
    100% { 
        transform: translateX(200%) skewX(-15deg); 
    }
}

/* Effet de particules - cercles animés */
.btn-modern::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    animation: particles 3s ease-in-out infinite;
    z-index: 1;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

@keyframes particles {
    0%, 100% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(600px, -30px) scale(0);
        opacity: 0;
    }
}

/* Badge "NOUVEAU" ou "URGENT" en option */
.btn-modern .badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ffd700;
    color: #ff4500;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
    animation: badgePulse 1.5s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px) {
    .btn-modern {
        border-radius: 16px;
    }
    
    .btn-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 25px;
    }
    
    .btn-icon {
        margin-right: 0;
        margin-bottom: 18px;
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .btn-main-text {
        font-size: 24px;
    }
    
    .btn-sub-text {
        font-size: 14px;
    }
    
    .btn-arrow {
        display: none;
    }
    
    .btn-modern .badge {
        top: -10px;
        right: -10px;
        padding: 5px 12px;
        font-size: 11px;
    }
}

/* Animation d'attention - flash périodique */
@keyframes attentionFlash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.7;
    }
}

.btn-modern {
    animation: 
        buttonVibrate 2s ease-in-out infinite,
        attentionFlash 4s ease-in-out infinite;
}
/* ===== STYLES AMÉLIORÉS POUR LES CHAMPS DE FORMULAIRE ===== */

.form-group-modern {
    position: relative;
    margin-bottom: 30px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modern label i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 18px 20px;
    background: #f8f9ff;
    border: 2px solid #e0e7ff;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #999;
    font-style: italic;
    font-weight: 400;
}

.form-group-modern textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.15);
    transform: translateY(-2px);
}

.modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a0dad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 22px;
    padding-right: 50px;
    cursor: pointer;
}

/* Effet de survol pour les inputs */
.form-group-modern input:hover:not(:focus),
.form-group-modern select:hover:not(:focus),
.form-group-modern textarea:hover:not(:focus) {
    border-color: var(--primary-color);
    background: white;
}

/* Barre animée sous les inputs */
.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.form-group-modern input:focus ~ .input-border,
.form-group-modern select:focus ~ .input-border,
.form-group-modern textarea:focus ~ .input-border {
    width: 100%;
}

/* ===== STYLES AMÉLIORÉS POUR LES CASES À COCHER (SERVICES) ===== */

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-option label {
    display: block;
    background: white;
    border: 3px solid #e0e7ff;
    border-radius: 18px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-option label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-option label:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.2);
}

.service-option label:hover::before {
    opacity: 1;
}

.service-option input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.08), rgba(106, 13, 173, 0.03));
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.25);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 26px;
    transition: all 0.4s ease;
}

.service-option input[type="checkbox"]:checked + label .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.3);
}

.service-option label h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-option label p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.check-mark {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
}

.service-option input[type="checkbox"]:checked + label .check-mark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ===== CASES À COCHER MODERNES (TERMES) ===== */

.checkbox-modern {
    margin-bottom: 18px;
}

.checkbox-modern input[type="checkbox"] {
    display: none;
}

.checkbox-modern label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    position: relative;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-modern label:hover {
    background: rgba(106, 13, 173, 0.03);
}

.check-box {
    width: 26px;
    height: 26px;
    border: 3px solid #e0e7ff;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
    background: white;
}

.check-box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkbox-modern input[type="checkbox"]:checked + label .check-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.checkbox-modern input[type="checkbox"]:checked + label .check-box::after {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.check-label {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.checkbox-modern input[type="checkbox"]:checked + label .check-label {
    color: var(--dark-color);
}

/* ===== ÉTAPES DU FORMULAIRE - HEADERS AMÉLIORÉS ===== */

.step-header {
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eef2ff;
}

.step-header h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 800;
}

.step-header h3 i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.step-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}
/* Alternative: Bouton fermeture flottant */
@media (max-width: 768px) {
    /* Si vous préférez un bouton séparé et très visible */
    .mobile-close-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--accent-color), #ffed4e);
        color: var(--primary-color);
        border: none;
        border-radius: 50%;
        font-size: 30px;
        font-weight: bold;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1002;
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.6),
            inset 0 -2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        animation: floatingClose 2s ease-in-out infinite;
    }

    @keyframes floatingClose {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        25% {
            transform: translateY(-8px) rotate(5deg);
        }
        50% {
            transform: translateY(0) rotate(0deg);
        }
        75% {
            transform: translateY(-4px) rotate(-5deg);
        }
    }

    .mobile-close-btn.active {
        display: flex;
    }

    .mobile-close-btn:active {
        transform: scale(0.9);
    }

    /* Badge "FERMER" pour le bouton flottant */
    .mobile-close-btn::before {
        content: 'FERMER';
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        color: var(--primary-color);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        white-space: nowrap;
    }
}
 @media (max-width: 768px){
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        padding: 80px 20px 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white;
        font-size: 20px;
        font-weight: 600;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-5px);
    }

    .nav-links a::after {
        background: var(--accent-color);
    }

    /* Hamburger visible et contrasté */
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        padding: 12px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: white;
        margin: 6px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Transformation en X (croix) - ULTRA VISIBLE */
    .hamburger.active {
        background: rgba(255, 215, 0, 0.95);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        animation: hamburgerPulse 1s ease-in-out infinite;
    }

    @keyframes hamburgerPulse {
        0%, 100% {
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        }
        50% {
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
        }
    }

    .hamburger.active span {
        background-color: var(--primary-color);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Badge "FERMER" visible */
    .hamburger.active::after {
        content: 'FERMER';
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-color);
        color: var(--primary-color);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
        animation: badgeBounce 0.5s ease-in-out;
        white-space: nowrap;
    }

    @keyframes badgeBounce {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    /* Overlay sombre derrière le menu */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
        left: -100vw;
    }

    /* Bouton de fermeture supplémentaire en haut du menu */
    .nav-links::after {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: rgba(255, 215, 0, 0.95);
        color: var(--primary-color);
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        animation: closeButtonPulse 2s ease-in-out infinite;
        z-index: 10;
    }

    @keyframes closeButtonPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
        }
    }

    .nav-links.active::after {
        display: flex;
    }

    /* Animation d'entrée des liens */
    .nav-links.active a {
        animation: slideInRight 0.5s ease-out forwards;
        opacity: 0;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-links.active a:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-links.active a:nth-child(6) {
        animation-delay: 0.35s;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px) {
    .btn-modern {
        border-radius: 16px;
    }
    
    .btn-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 25px;
    }
    
    .btn-icon {
        margin-right: 0;
        margin-bottom: 18px;
    }
    
    .btn-main-text {
        font-size: 22px;
    }
    
    .btn-sub-text {
        font-size: 14px;
    }
    
    .btn-arrow {
        display: none;
    }
    
    .form-group-modern label {
        font-size: 14px;
    }
    
    .form-group-modern input,
    .form-group-modern select,
    .form-group-modern textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .service-option label {
        padding: 22px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .service-option label h4 {
        font-size: 17px;
    }
    
    .step-header h3 {
        font-size: 24px;
    }
    
    .step-header h3 i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .directory-layout {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
    }
    
    #locate-me-btn {
        width: 100%;
        justify-content: center;
    }
    
    .church-directory-hero h1 {
        font-size: 36px;
    }
    
    .church-directory-hero p {
        font-size: 18px;
    }
    
    .filter-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-options select {
        width: 100%;
    }
}

/* Styles pour le popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
}

.popup-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.popup-content p {
    text-align: center;
    margin-bottom: 20px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

#discipleship-form .form-group {
    margin-bottom: 20px;
}

#discipleship-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

#discipleship-form input,
#discipleship-form select,
#discipleship-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

#discipleship-form textarea {
    min-height: 100px;
    resize: vertical;
}

#discipleship-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Styles spécifiques au formulaire de prière */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

#prayer-request {
    min-height: 120px;
}

.prayer-confirmation {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animation pour le bouton de prière */
.floating-btn.prayer {
    animation: pulsePrayer 2s infinite;
}

@keyframes pulsePrayer {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Nouveau style pour le bouton de don */
.btn-donation {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
}

.btn-donation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.4);
}

.btn-donation:active {
    transform: translateY(0);
}

.btn-donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-donation:hover::before {
    opacity: 1;
}

.btn-donation i {
    margin-right: 10px;
    font-size: 1.3rem;
}




/* Style pour le popup de don */
.donation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.donation-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-donation-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.donation-form .form-group {
    margin-bottom: 20px;
}

.donation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.donation-form textarea {
    height: 100px;
    resize: vertical;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.donation-amount-btn {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.donation-amount-btn:hover {
    background-color: #e9e9e9;
}

.donation-amount-btn.active {
    background-color: #8e44ad;
    color: white;
    border-color: #8e44ad;
}

.custom-amount {
    display: none;
    margin-top: 10px;
}

#discipleship-popup {
    display: none;
}


/* Style pour le bouton dans la section */
#disciple-cta-btn {
    margin: 30px auto 0;
    display: block;
    max-width: 250px;
    text-align: center;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#disciple-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#disciple-cta-btn i {
    margin-right: 8px;
}

/* Styles pour le popup de don (responsive mobile) */
.donation-popup-content {
    max-height: 90vh; /* Limite la hauteur à 90% de l'écran */
    overflow-y: auto; /* Active le défilement si nécessaire */
    padding: 20px; /* Réduit l'espacement sur mobile */
    width: 95%; /* Prend plus de place sur mobile */
    max-width: 500px; /* Limite la largeur max sur desktop */
}

/* Ajustements pour les petits écrans */
@media (max-width: 768px) {
    .donation-popup-content {
        padding: 15px;
    }

    .donation-form .form-group {
        margin-bottom: 15px;
    }

    .donation-amounts {
        gap: 8px; /* Réduit l'espace entre les boutons */
    }

    .donation-amount-btn {
        padding: 8px 12px; /* Boutons plus compacts */
        font-size: 14px;
    }

    /* Bouton de soumission toujours visible */
    .donation-form button[type="submit"] {
        position: sticky;
        bottom: 0;
        background-color: var(--primary-color);
        color: white;
        padding: 12px;
        width: 100%;
        border: none;
        border-radius: 5px;
        margin-top: 10px;
    }
}


/* Section Soumission de Projet */
.project-submission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.project-submission-section .section-header h2 {
    color: var(--white);
}

.project-submission-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.project-cta {
    margin-top: 40px;
}

/* Styles spécifiques pour le formulaire de projet */
#project-form {
    max-width: 100%;
}

#project-form .form-group {
    margin-bottom: 20px;
}

#project-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

#project-form input,
#project-form select,
#project-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

#project-form textarea {
    min-height: 100px;
    resize: vertical;
}

#project-form input[type="file"] {
    padding: 10px;
    border: 1px dashed #ddd;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .project-submission-section {
        padding: 60px 0;
    }
}

/* Bouton de soumission de projet */
.btn-project {
    position: relative;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    margin: 0 auto;
}

.btn-project .btn-text {
    position: relative;
    z-index: 2;
}

.btn-project i {
    font-size: 1.8rem;
    z-index: 2;
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    border-radius: 60px;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.btn-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    animation: none;
}

.btn-project:hover .btn-pulse {
    animation: pulse 1s infinite;
}

.btn-project:active {
    transform: translateY(0);
}

/* Effet de surbrillance au survol */
.btn-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-project:hover::before {
    opacity: 1;
}

/* Animation clignotante */
@keyframes blink {
    0%, 100% {
        box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 30px 10px rgba(255, 215, 0, 0.9);
    }
}

.btn-project {
    animation: blink 3s infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-project {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .btn-project i {
        font-size: 1.5rem;
    }
    
}

