/* ================================================
   MINISTÈRE MIRACLE DE TOUTES LES NATIONS
   Site Web Multi-Pages - Styles Partagés
   ================================================ */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary-purple: #7B2CBF;
    --dark-purple: #5A189A;
    --deeper-purple: #3C096C;
    --darkest-purple: #240046;
    --gold: #FFD700;
    --gold-dark: #FFC107;
    --gold-light: #FFEB3B;
    --white: #FFFFFF;
    --royal-blue: #1E3A8A;
    --blue-light: #3B82F6;
    --magenta: #E91E63;
    --magenta-light: #F48FB1;
    --orange: #FF6D00;
    --orange-light: #FFAB40;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #333333;
    --text-gray: #555555;
    --gradient-purple: linear-gradient(135deg, #7B2CBF 0%, #5A189A 50%, #3C096C 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-hero: linear-gradient(135deg, #5A189A 0%, #7B2CBF 30%, #9D4EDD 60%, #E040FB 100%);
    --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-magenta: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    --gradient-orange: linear-gradient(135deg, #FF6D00 0%, #FFAB40 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-purple: 0 10px 40px rgba(90, 24, 154, 0.3);
    --shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.4);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --border-radius-full: 50px;
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(90, 24, 154, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.6rem 2rem;
    transition: var(--transition);
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(60, 9, 108, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.4rem 2rem;
    height: 65px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 42px;
    width: 42px;
}

.nav-logo span {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
}

.nav-logo-text {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.3;
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a,
.nav-link {
    color: var(--white);
    padding: 0.5rem 0.9rem;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-link:hover,
.nav-link.active {
    background: var(--gold);
    color: var(--dark-purple);
}

.btn-nav {
    background: var(--gradient-gold) !important;
    color: var(--dark-purple) !important;
    padding: 0.6rem 1.2rem !important;
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 45vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 5rem 2rem;
}

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

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

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-purple);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-purple);
}

.btn-purple {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 24, 154, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darkest-purple);
    color: var(--white);
    padding-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-container,
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-col {
    min-width: 0;
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--gold);
    max-width: 200px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--gold);
}

.footer-about p,
.footer-col > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    width: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-schedule p {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    gap: 0.5rem;
}

.footer-schedule p span {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.social-links,
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link,
.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover,
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer-verse {
    color: var(--gold) !important;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.9rem !important;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-whatsapp {
    background: #25D366;
    color: var(--white);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.float-top {
    background: var(--gradient-purple);
    color: var(--white);
}

.float-top:hover {
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .footer-container,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .nav-menu a,
    .nav-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.82rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--deeper-purple) 0%, var(--darkest-purple) 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 1.5rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a,
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: var(--border-radius-sm);
        font-size: 1.05rem;
        display: block;
        text-align: left;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 215, 0, 0.15);
        color: var(--gold);
    }
    
    .btn-nav {
        margin-top: 1rem;
        text-align: center !important;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-overlay {
        display: block;
    }
    
    .navbar {
        height: 70px;
        padding: 0.5rem 1.25rem;
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .nav-logo img {
        height: 45px;
        width: 45px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 40px;
        width: 40px;
    }
    
    /* Sticky filters adjustment */
    .testimonial-categories,
    .gallery-filter {
        top: auto !important;
        padding: 1rem;
    }
    
    .navbar.scrolled ~ main .testimonial-categories,
    .navbar.scrolled ~ main .gallery-filter,
    .navbar.scrolled + .testimonial-categories,
    .navbar.scrolled + .gallery-filter {
        top: 60px;
    }

    section {
        padding: 3.5rem 1.25rem;
    }
    
    .page-header {
        min-height: 38vh;
        padding: 90px 1.25rem 2.5rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .navbar {
        padding: 0.5rem 1rem;
        height: 65px;
    }
    
    .navbar.scrolled {
        height: 58px;
    }

    .nav-logo span,
    .nav-logo-text {
        font-size: 0.7rem;
        max-width: 100px;
    }
    
    .nav-logo img {
        height: 42px;
        width: 42px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 38px;
        width: 38px;
    }

    .page-header {
        min-height: 35vh;
        padding: 85px 1rem 2rem;
    }
    
    .page-header h1,
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-header p,
    .page-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Sticky filters */
    .testimonial-categories,
    .gallery-filter {
        top: 65px;
        padding: 0.85rem 0.75rem;
    }
    
    .navbar.scrolled ~ main .testimonial-categories,
    .navbar.scrolled ~ main .gallery-filter {
        top: 58px;
    }
    
    .categories-filter,
    .filter-wrapper {
        gap: 0.5rem;
    }
    
    .filter-btn,
    .gallery-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .filter-btn i,
    .gallery-filter-btn i {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-container,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .social-links,
    .footer-social {
        justify-content: center;
    }

    .footer-schedule p {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .floating-buttons {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        height: 60px;
        padding: 0.4rem 0.75rem;
    }
    
    .navbar.scrolled {
        height: 55px;
    }

    .nav-logo img {
        height: 40px;
        width: 40px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 36px;
        width: 36px;
    }
    
    .nav-logo span,
    .nav-logo-text {
        display: none;
    }
    
    .nav-toggle span {
        width: 24px;
    }
    
    /* Sticky filters */
    .testimonial-categories,
    .gallery-filter {
        top: 60px;
        padding: 0.75rem 0.5rem;
    }
    
    .navbar.scrolled ~ main .testimonial-categories,
    .navbar.scrolled ~ main .gallery-filter {
        top: 55px;
    }
    
    .filter-btn,
    .gallery-filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .filter-btn i,
    .gallery-filter-btn i {
        display: none;
    }
    
    .page-header {
        min-height: 32vh;
        padding: 75px 0.75rem 1.5rem;
    }
    
    .page-header h1,
    .page-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.35rem;
    }
    
    section {
        padding: 2.5rem 0.75rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 2.5rem;
    }
    
    .footer-container,
    .footer-grid {
        padding: 0 1rem;
        gap: 1.75rem;
    }
    
    .footer-logo img {
        height: 45px;
        width: 45px;
    }
    
    .footer-logo h3 {
        font-size: 0.85rem;
    }
    
    .footer h4 {
        font-size: 0.95rem;
    }
    
    .footer-links a,
    .footer-contact li,
    .footer-about p,
    .footer-col > p {
        font-size: 0.85rem;
    }
    
    .social-link,
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .whatsapp-float,
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        right: 1rem;
        bottom: 4.5rem;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .navbar {
        height: 55px;
    }
    
    .nav-logo img {
        height: 36px;
        width: 36px;
    }
    
    .testimonial-categories,
    .gallery-filter {
        top: 55px;
    }
    
    .filter-btn,
    .gallery-filter-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .page-header h1,
    .page-title {
        font-size: 1.3rem;
    }
    
    section {
        padding: 2rem 0.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-purple { color: var(--dark-purple); }
.text-white { color: var(--white); }
.bg-purple { background: var(--gradient-purple); }
.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* ================================================
   PAGE TÉMOIGNAGES - STYLES UNIFIÉS
   ================================================ */

/* Introduction Section */
.testimonials-intro {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.03) 0%, rgba(255, 215, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.intro-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--gold);
    box-shadow: var(--shadow-purple);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    position: relative;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.bible-verse-box {
    background: var(--gradient-purple);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-purple);
    position: relative;
    overflow: hidden;
}

.bible-verse-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.verse-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.verse-ref {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

/* Testimonial Filter */
.testimonial-categories {
    padding: 1.25rem 1rem;
    background: var(--white);
    position: static !important;
    top: auto !important;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 2rem; 

}


.navbar.scrolled ~ main .testimonial-categories,
.navbar.scrolled + .testimonial-categories {
    top: 65px;
}

.categories-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 0.85rem 1.75rem;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-purple);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

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

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-icon.deliverance {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
}

.testimonial-icon.guerison {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
}

.testimonial-icon.financier {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.testimonial-icon.restauration {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
}

.testimonial-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
}

.testimonial-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-purple);
    font-size: 0.95rem;
}

.testimonial-location {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-location i {
    color: var(--gold);
}

.testimonial-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-top: 1px solid var(--medium-gray);
}

.testimonial-link:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.testimonial-link i {
    font-size: 1.1rem;
}

/* Video Testimonials Section */
.video-testimonials {
    background: var(--white);
    padding: 5rem 2rem;
}

.video-testimonials .section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Submit Testimonial Section */
.submit-testimonial {
    background: var(--gradient-purple);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.submit-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.submit-wrapper {
    position: relative;
    z-index: 1;
}

.submit-content {
    text-align: center;
    margin-bottom: 3rem;
}

.submit-content .section-title {
    color: var(--white);
}

.submit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-form .form-group {
    margin-bottom: 1.5rem;
}

.testimonial-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #E91E63;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.1);
}

.testimonial-form textarea {
    min-height: 150px;
    resize: vertical;
}

.testimonial-form .btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
}

/* ================================================
   PAGE GALERIE - STYLES UNIFIÉS
   ================================================ */

/* Gallery Introduction */
.gallery-intro {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.gallery-intro .section-title {
    color: var(--white);
}

.gallery-intro p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Gallery Filter */
.gallery-filter {
    padding: 1.25rem 1rem;
    background: var(--white);
    position: static !important;
    position: sticky;
    top: auto !important;
    z-index: 1; /* Remet un niveau de profondeur normal */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 2rem;
}


.navbar.scrolled ~ main .gallery-filter,
.navbar.scrolled + .gallery-filter {
    top: 65px;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-filter-btn {
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-filter-btn:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-purple);
}

/* Gallery Grid Section */
.gallery-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-purple);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(60, 9, 108, 0.95) 0%, rgba(90, 24, 154, 0.6) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-category {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 1.4rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.gallery-item:hover .gallery-item-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery Masonry Variants */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: lightboxZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark-purple);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-caption {
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.lightbox-caption h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.lightbox-caption p {
    color: var(--gold);
    font-size: 0.95rem;
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.video-gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple);
}

.video-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-gallery-item:hover .video-thumbnail-wrapper img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 24, 154, 0.5) 0%, rgba(60, 9, 108, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-gallery-item:hover .video-play-overlay {
    background: linear-gradient(135deg, rgba(90, 24, 154, 0.7) 0%, rgba(60, 9, 108, 0.85) 100%);
}

.video-play-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.video-play-icon i {
    margin-left: 4px;
}

.video-gallery-item:hover .video-play-icon {
    transform: scale(1.15);
}

.video-gallery-info {
    padding: 1.5rem;
}

.video-gallery-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.video-gallery-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.video-gallery-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.video-gallery-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-gallery-meta i {
    color: var(--primary-purple);
}

/* Live Section */
.live-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--darkest-purple) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='2' fill='rgba(255,215,0,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.live-section .section-title {
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.live-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.live-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.live-card-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-purple);
    box-shadow: var(--shadow-gold);
}

.live-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.live-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.live-card .btn {
    width: 100%;
}

/* ================================================
   PAGE CONTACT - STYLES UNIFIÉS
   ================================================ */

/* Contact Introduction */
.contact-intro {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, var(--white) 100%);
    padding: 5rem 2rem;
}

.contact-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro .intro-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.contact-intro h2 {
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
}

.contact-intro .intro-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: var(--gradient-purple);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-purple);
}

.contact-info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-card h3 i {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 50%;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.contact-info-list li:hover {
    padding-left: 0.5rem;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list li i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-list li:hover i {
    background: var(--gold);
    color: var(--dark-purple);
}

.contact-info-list li .info-content {
    flex: 1;
}

.contact-info-list li .info-content strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-list li .info-content span,
.contact-info-list li .info-content a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-info-list li .info-content a:hover {
    color: var(--gold);
}

/* Social Card */
.social-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.social-card h4 {
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

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

.social-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    border-radius: var(--border-radius-sm);
    background: var(--light-gray);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-link-btn:hover {
    transform: translateY(-3px);
}

.social-link-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-link-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

.social-link-btn.whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.social-link-btn.facebook:hover {
    background: #1877F2;
    color: white;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-link-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.social-link-btn.telegram:hover {
    background: #0088cc;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.social-link-btn.tiktok:hover {
    background: #000;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link-btn.youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* Contact Form Side */
.contact-form-side h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-purple);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-form-side > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #aaa;
}

.btn-block {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
}

/* Quick Contact Buttons */
.quick-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.quick-contact p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.quick-contact-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.quick-btn.whatsapp {
    background: #25D366;
    color: white;
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.quick-btn.call {
    background: var(--gradient-purple);
    color: white;
}

.quick-btn.call:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: stretch;
}

.map-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.location-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-purple);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.location-info h3 i {
    color: var(--gold);
}

.location-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-details {
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.location-details ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.location-details ul li i {
    color: var(--primary-purple);
    width: 20px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-purple);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

/* Programs Quick Access */
.programs-quick {
    padding: 5rem 2rem;
    background: var(--white);
}

.programs-quick .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.programs-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.program-quick-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-quick-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.program-quick-card .program-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
}

.program-quick-card:hover .program-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-purple);
}

.program-quick-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-purple);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.program-quick-card .program-day {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.program-quick-card .program-time {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, var(--white) 100%);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-purple);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark-purple);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float,
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover,
.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-purple);
    z-index: 999;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ================================================
   RESPONSIVE STYLES - PAGES SPÉCIFIQUES
   ================================================ */

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .live-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        order: -1;
    }
    
    .programs-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-side {
        position: static;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev {
        left: -55px;
    }
    
    .lightbox-next {
        right: -55px;
    }
    
    .intro-content {
        padding: 0 1rem;
    }
    
    .bible-verse-box {
        padding: 1.75rem 2rem;
    }
    
    .submit-wrapper {
        padding: 0 1rem;
    }
    
    .testimonial-form {
        padding: 2rem;
    }
    
    .live-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-overlay {
        padding: 1rem;
    }
    
    .gallery-item-title {
        font-size: 0.9rem;
    }
    
    .gallery-item-zoom {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .map-frame {
        height: 300px;
    }
    
    .quick-contact-btns {
        flex-direction: column;
    }
    
    .quick-btn {
        justify-content: center;
        width: 100%;
    }
    
    .video-gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .lightbox-caption {
        bottom: -80px;
        padding: 0 1rem;
    }
    
    .lightbox-caption h4 {
        font-size: 1rem;
    }
    
    .lightbox-counter {
        font-size: 0.85rem;
    }
    
    .live-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .back-to-top {
        right: 1rem;
        bottom: 5rem;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float,
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Testimonial Page */
    .testimonials-intro {
        padding: 3rem 1rem;
    }
    
    .intro-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .verse-text {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        margin: 0;
    }
    
    .testimonial-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .testimonial-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    .testimonial-title {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .testimonial-link {
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Contact Page */
    .contact-intro {
        padding: 3rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.75rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
        gap: 0.75rem;
    }
    
    .contact-info-list li {
        padding: 0.85rem 0;
    }
    
    .contact-info-list li i {
        width: 38px;
        height: 38px;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.75rem;
    }
    
    .contact-form-side h3 {
        font-size: 1.5rem;
    }
    
    .location-info {
        padding: 1.75rem;
    }
    
    .location-details {
        padding: 1.25rem;
    }
    
    .directions-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .programs-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .program-quick-card {
        padding: 1.5rem;
    }
    
    .program-quick-card .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-whatsapp,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-form,
    .contact-form,
    .contact-info-card,
    .social-card,
    .location-info {
        padding: 1.5rem;
    }
    
    .bible-verse-box {
        padding: 1.25rem;
    }
    
    .verse-text {
        font-size: 1rem;
    }
    
    .verse-ref {
        font-size: 0.9rem;
    }
    
    .programs-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .program-quick-card {
        padding: 1.25rem;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .social-link-btn {
        padding: 0.85rem 0.5rem;
    }
    
    .social-link-btn i {
        font-size: 1.3rem;
    }
    
    .social-link-btn span {
        font-size: 0.65rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item-overlay {
        padding: 0.75rem;
    }
    
    .gallery-item-title {
        font-size: 0.8rem;
    }
    
    .gallery-item-category {
        font-size: 0.7rem;
    }
    
    .gallery-item-zoom {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        bottom: -70px;
    }
    
    .lightbox-caption h4 {
        font-size: 0.9rem;
    }
    
    .lightbox-caption p {
        font-size: 0.8rem;
    }
    
    .live-card {
        padding: 1.5rem;
    }
    
    .live-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .live-card h4 {
        font-size: 1.05rem;
    }
    
    .video-play-btn,
    .video-play-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .video-info,
    .video-gallery-info {
        padding: 1.25rem;
    }
    
    .video-info h4,
    .video-gallery-info h4 {
        font-size: 1rem;
    }
    
    .map-frame {
        height: 250px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1rem;
        font-size: 0.85rem;
    }
    
    .whatsapp-float,
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: 4rem;
        right: 1rem;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        gap: 0.4rem;
    }
    
    .gallery-item-zoom {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonial-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .testimonial-content {
        padding: 0 1rem 1rem;
    }
    
    .testimonial-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-quick-card .program-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}
