@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Cinzel:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700;900&display=swap');

:root {
    --primary: #1a1a5e;
    --primary-dark: #0d0d3b;
    --secondary: #8B0000;
    --secondary-light: #a52a2a;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a08030;
    --white: #ffffff;
    --off-white: #f8f6f0;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--off-white);
}

/* ============================
   HEADER
   ============================ */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 12px 0;
    transition: all 0.4s ease;
    background: rgba(26, 26, 94, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
}
.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.header-logo-icon {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
}
.header-logo-icon svg { width: 100%; height: 100%; }
.header-logo-text { display: flex; flex-direction: column; }
.header-logo-text span:first-child {
    font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700;
    color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.header-logo-text span:last-child {
    font-family: 'Lato', sans-serif; font-size: 11px;
    color: rgba(255,255,255,0.7); letter-spacing: 1px;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
    text-decoration: none; color: rgba(255,255,255,0.85);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: color 0.3s; position: relative;
}
.header-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { width: 100%; }

.menu-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--gold); margin: 5px 0; transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(13, 13, 59, 0.98); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; opacity: 0; transition: opacity 0.3s;
}
.mobile-nav.active { display: flex; opacity: 1; }
.mobile-nav a {
    text-decoration: none; color: var(--white);
    font-family: 'Cinzel', serif; font-size: 18px;
    letter-spacing: 2px; transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: var(--gold);
    font-size: 32px; cursor: pointer;
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0a0a 40%, #3d0c0c 60%, var(--primary-dark) 100%);
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139,0,0,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(26,26,94,0.6) 0%, transparent 50%);
    z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
    position: absolute; width: 3px; height: 3px;
    background: var(--gold); border-radius: 50%; opacity: 0;
    animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 120px 24px 80px; max-width: 900px; margin: 0 auto;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
    padding: 8px 24px; border-radius: 50px; margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge span {
    font-family: 'Cinzel', serif; font-size: 12px; font-weight: 700;
    color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.hero-badge-dot {
    width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-date {
    font-family: 'Cinzel', serif; font-size: clamp(14px, 2.5vw, 18px);
    color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 20px; animation: fadeInDown 0.8s ease-out 0.1s both; font-weight: 600;
}
.hero-date-divider {
    display: inline-block; width: 40px; height: 1px;
    background: var(--gold); vertical-align: middle; margin: 0 12px;
}
.hero-title-wrapper { animation: fadeInUp 1s ease-out 0.3s both; }
.hero-title-sub {
    font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 38px);
    color: var(--white); font-weight: 400; font-style: italic;
    margin-bottom: 8px; opacity: 0.9;
}
.hero-title {
    font-family: 'Cinzel', serif; font-size: clamp(48px, 8vw, 96px); font-weight: 900;
    letter-spacing: 6px; text-transform: uppercase; line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #fff 0%, #e8d48b 50%, #c9a84c 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-verse {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.75);
    margin-top: 28px; line-height: 1.7; max-width: 600px;
    margin-left: auto; margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-cta-group {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-top: 36px; animation: fadeInUp 1s ease-out 0.7s both;
}
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll-mouse {
    width: 26px; height: 40px; border: 2px solid rgba(201,168,76,0.5);
    border-radius: 13px; display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll-dot {
    width: 3px; height: 8px; background: var(--gold);
    border-radius: 2px; animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    transition: all 0.4s; cursor: pointer; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark); box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.6); }
.btn-outline { border: 2px solid rgba(201,168,76,0.5); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-3px); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: white; }

/* ============================
   COUNTDOWN
   ============================ */
.countdown-section {
    background: var(--primary-dark); padding: 48px 24px;
    border-bottom: 3px solid var(--gold);
}
.countdown-container { max-width: 700px; margin: 0 auto; text-align: center; }
.countdown-label {
    font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.countdown-grid { display: flex; justify-content: center; gap: 20px; }
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 90px; }
.countdown-number {
    font-family: 'Cinzel', serif; font-size: clamp(36px, 6vw, 56px);
    font-weight: 900; line-height: 1;
    background: linear-gradient(180deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.countdown-unit {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-top: 6px;
}
.countdown-separator {
    font-family: 'Cinzel', serif; font-size: 36px; color: var(--gold);
    opacity: 0.4; align-self: flex-start; margin-top: 4px;
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section { padding: 80px 24px; }
.section-container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 4px;
    color: var(--gold-dark); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; color: var(--primary); line-height: 1.2;
}
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    margin: 16px auto 0; border-radius: 2px;
}
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-tag { color: var(--gold); }
.section-alt { background: var(--white); }

/* ============================
   ABOUT
   ============================ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }
.about-text p strong { color: var(--primary); }

.about-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
}
.about-highlight::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.about-pastor-section {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 20px; position: relative;
}
.about-pastor-photo {
    width: 110px; height: 110px; border-radius: 50%;
    border: 3px solid var(--gold); overflow: hidden; flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    display: flex; align-items: center; justify-content: center;
}
.about-pastor-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.about-pastor-photo .pastor-fallback { display: none; }
.about-pastor-info h3 {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--white); margin-bottom: 4px;
}
.about-pastor-info .pastor-role {
    font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase; font-weight: 700;
}
.about-pastor-info .pastor-church {
    font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px;
}
.about-highlight > p {
    font-size: 15px; color: rgba(255,255,255,0.7);
    line-height: 1.7; position: relative;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 20px; position: relative;
}
.about-stat {
    text-align: center; padding: 14px 8px;
    background: rgba(201,168,76,0.08); border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.2);
}
.about-stat-number {
    font-family: 'Cinzel', serif; font-size: 22px; font-weight: 800; color: var(--gold);
}
.about-stat-label {
    font-size: 10px; color: rgba(255,255,255,0.5);
    letter-spacing: 1px; text-transform: uppercase; margin-top: 2px;
}

/* ============================
   SPEAKERS
   ============================ */
.speakers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.speaker-card { text-align: center; }
.speaker-photo-wrapper {
    width: 200px; height: 200px; margin: 0 auto 20px;
    border-radius: 50%; position: relative; overflow: hidden;
    border: 4px solid var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.speaker-card:hover .speaker-photo-wrapper {
    transform: scale(1.05); box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.speaker-photo-wrapper img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.speaker-photo-placeholder {
    width: 100%; height: 100%; display: flex;
    align-items: center; justify-content: center;
}
.speaker-photo-placeholder svg { width: 60px; height: 60px; fill: var(--gold); opacity: 0.6; }
.speaker-name {
    font-family: 'Playfair Display', serif; font-size: 20px;
    font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.speaker-role {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 8px; font-weight: 700;
}
.speaker-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================
   SCHEDULE
   ============================ */
.schedule-wrapper { max-width: 700px; margin: 0 auto; }
.schedule-item {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: transform 0.3s;
}
.schedule-item:hover { transform: translateX(8px); }
.schedule-time {
    min-width: 80px; font-family: 'Cinzel', serif;
    font-size: 15px; font-weight: 700; color: var(--gold); padding-top: 2px;
}
.schedule-dot {
    width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
    flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.schedule-info h4 {
    font-family: 'Playfair Display', serif; font-size: 18px;
    color: var(--white); margin-bottom: 4px;
}
.schedule-info p { font-size: 14px; color: rgba(255,255,255,0.5); }
.schedule-info .schedule-location {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
    font-size: 12px; color: var(--gold); opacity: 0.8; font-weight: 700;
}
.schedule-info .schedule-location svg { width: 14px; height: 14px; fill: var(--gold); }
.schedule-coming {
    text-align: center; padding: 40px;
    background: rgba(201,168,76,0.05); border: 2px dashed rgba(201,168,76,0.3);
    border-radius: 16px; margin-top: 32px;
}
.schedule-coming h4 {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--gold); margin-bottom: 8px;
}
.schedule-coming p { color: rgba(255,255,255,0.5); font-size: 14px; }
.schedule-coming svg { width: 40px; height: 40px; fill: var(--gold); opacity: 0.4; margin-bottom: 12px; }

/* ============================
   LOCATION
   ============================ */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.location-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s; border: 1px solid var(--gray-light);
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.location-map { width: 100%; height: 200px; border: none; }
.location-info { padding: 20px; }
.location-tag {
    display: inline-block; padding: 4px 14px;
    font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; border-radius: 50px; margin-bottom: 10px;
}
.location-tag.tag-ministers { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--gold); }
.location-tag.tag-wives { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); color: var(--white); }
.location-tag.tag-lunch { background: linear-gradient(135deg, #2e7d32, #388e3c); color: var(--white); }
.location-tag.tag-sede { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); }
.location-name {
    font-family: 'Playfair Display', serif; font-size: 17px;
    font-weight: 700; color: var(--primary); margin-bottom: 6px;
}
.location-address {
    font-size: 13px; color: var(--gray); line-height: 1.6;
    display: flex; gap: 8px; align-items: flex-start;
}
.location-address svg { width: 16px; height: 16px; fill: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.location-note {
    margin-top: 10px; padding: 10px; background: rgba(201,168,76,0.08);
    border-radius: 8px; font-size: 12px; color: var(--gray); border-left: 3px solid var(--gold);
}
.location-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
    font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--primary); text-decoration: none; transition: color 0.3s;
}
.location-link:hover { color: var(--gold-dark); }
.location-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================
   INFO CARDS
   ============================ */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
    background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201,168,76,0.1); }
.info-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.info-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.info-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================
   CONSTRUCTION BANNER
   ============================ */
.construction-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 40px 24px; text-align: center;
}
.construction-inner {
    max-width: 700px; margin: 0 auto; display: flex;
    align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.construction-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    animation: pulse 2s infinite;
}
.construction-icon svg { width: 24px; height: 24px; fill: var(--gold-light); }
.construction-text h3 {
    font-family: 'Cinzel', serif; font-size: 16px; color: var(--white);
    letter-spacing: 2px; margin-bottom: 4px;
}
.construction-text p { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ============================
   CTA
   ============================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px);
    color: var(--white); margin-bottom: 16px;
}
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #0a0a2e; padding: 40px 24px 20px;
    text-align: center; border-top: 2px solid var(--gold);
}
.footer-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 48px; margin-bottom: 24px; flex-wrap: wrap;
}
.footer-logo-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo-item span {
    font-family: 'Cinzel', serif; font-size: 12px; color: var(--gold);
    letter-spacing: 2px; font-weight: 700;
}
.footer-logo-item small { font-size: 10px; color: rgba(255,255,255,0.4); }
.footer-divider {
    width: 100px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 16px;
}
.footer p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ============================
   WHATSAPP FAB
   ============================ */
.whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5); z-index: 900;
    transition: all 0.3s; animation: fabPulse 3s infinite; text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .menu-toggle { display: block; }
    .about-content { grid-template-columns: 1fr; }
    .speakers-grid { grid-template-columns: 1fr; gap: 40px; }
    .locations-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
    .countdown-grid { gap: 12px; }
    .countdown-item { min-width: 65px; }
    .countdown-number { font-size: 32px; }
    .countdown-separator { font-size: 24px; }
    .speaker-photo-wrapper { width: 160px; height: 160px; }
    .footer-logos { gap: 24px; }
    .about-pastor-section { flex-direction: column; text-align: center; }
    .about-pastor-photo { width: 100px; height: 100px; }
}
@media (max-width: 480px) {
    .section { padding: 60px 16px; }
    .hero-content { padding: 100px 16px 60px; }
    .about-stat-number { font-size: 18px; }
    .countdown-item { min-width: 55px; }
}
