/* =========================================================
   FAITH WORSHIP CHURCH (FWC) - TANUKU, A.P.
   Modern Master Design System & Styling
   ========================================================= */

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

:root {
    --color-bg-primary: #070D1E;
    --color-bg-secondary: #0D1630;
    --color-bg-card: rgba(18, 29, 61, 0.72);
    --color-bg-card-hover: rgba(26, 42, 86, 0.85);
    --color-surface-light: #F8FAFC;
    --color-surface-white: #FFFFFF;
    
    --color-gold-500: #D4AF37;
    --color-gold-400: #E6CA65;
    --color-gold-600: #B89225;
    --color-gold-glow: rgba(212, 175, 55, 0.35);
    
    --color-navy-900: #070D1E;
    --color-navy-800: #0C1736;
    --color-navy-700: #14234F;
    --color-navy-600: #1E3470;
    --color-blue-accent: #2563EB;
    --color-cyan-glow: #06B6D4;
    
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #F1F5F9;
    --color-text-dim: #94A3B8;
    
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-subtle: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 12px 36px -4px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 35px rgba(212, 175, 55, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================= Global Reset & Base ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: #FAFBFD;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.015em;
    font-weight: 700;
    color: var(--color-navy-900);
}

h1 { font-size: 2.15rem; line-height: 1.25; }
h2 { font-size: 1.75rem; line-height: 1.28; }
h3 { font-size: 1.3rem; line-height: 1.32; }
h4 { font-size: 1.12rem; line-height: 1.38; }
h5 { font-size: 1.0rem; line-height: 1.4; }
h6 { font-size: 0.88rem; line-height: 1.4; }

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ================= Utility Badges & Texts ================= */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-gold-600);
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-gold.on-dark {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--color-gold-400);
}

.text-gold {
    color: var(--color-gold-500);
}

.gradient-gold-text {
    background: linear-gradient(135deg, #FFE27D 0%, #D4AF37 50%, #B88B22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, #ECC85F 0%, #D4AF37 50%, #B88E1C 100%);
    color: #070D1E;
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px -5px rgba(212, 175, 55, 0.5);
    filter: brightness(1.06);
}

.btn-primary-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-navy {
    background: var(--color-navy-800);
    color: #FFFFFF;
}

.btn-navy:hover {
    background: var(--color-navy-700);
    transform: translateY(-2px);
}

/* ================= Top Announcement Bar ================= */
.top-bar {
    background: #040813;
    color: #94A3B8;
    font-size: 0.82rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-family: var(--font-accent);
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1360px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.top-bar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #CBD5E1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.22rem 0.7rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.top-bar-chip:hover {
    color: #FFFFFF;
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.chip-icon {
    color: var(--color-gold-400);
    font-size: 0.75rem;
}

.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.28);
    padding: 0.24rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    color: #E2E8F0;
    white-space: nowrap;
}

.service-pill strong {
    color: var(--color-gold-400);
}

.live-dot-ping {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 8px #22C55E;
    animation: liveDotPulse 2s infinite ease-in-out;
}

@keyframes liveDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.top-bar-loc-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
    font-size: 0.78rem;
}

.top-bar-yt-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #FCA5A5;
    padding: 0.22rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.top-bar-yt-chip:hover {
    background: #EF4444;
    color: #FFFFFF;
    border-color: #EF4444;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* ================= Header & Navbar ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 11, 26, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 1360px;
    gap: 1.25rem;
}

/* Brand Link & Emblem */
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-link:hover .brand-logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.4));
}

.footer-brand-logo-img {
    height: 46px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    margin-bottom: 1.25rem;
}

.mobile-drawer-brand-img {
    height: 38px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.brand-logo-frame {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(13, 22, 48, 0.85) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.22);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.brand-link:hover .brand-logo-frame {
    transform: translateY(-2px) scale(1.05);
    border-color: #FCE38A;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.brand-emblem-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.brand-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title-line {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.brand-main-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.brand-link:hover .brand-main-title {
    color: #FFF2B2;
}

.brand-tag-badge {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #F5D77F;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 2px 7px;
    border-radius: 9999px;
    white-space: nowrap;
}

.brand-sub-tagline {
    font-family: var(--font-accent);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #94A3B8;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2px;
    white-space: nowrap;
}

.tag-dot {
    color: var(--color-gold-500);
    font-size: 0.6rem;
}

/* Desktop Navigation Menu */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: #E2E8F0;
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all 0.22s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
}

.nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: #F5D77F;
    background: rgba(212, 175, 55, 0.12);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #FFE27D);
    border-radius: 9999px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* Action Controls / Donate Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.btn-nav-donate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 1.45rem;
    background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B8860B 100%);
    color: #060B18 !important;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-nav-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
    filter: brightness(1.06);
}

.donate-heart-icon {
    color: #991B1B;
    font-size: 0.95rem;
    display: inline-flex;
    animation: heartPulse 2.4s infinite ease-in-out;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.22); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

/* Hamburger Toggle Button */
.mobile-toggle-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.25s ease;
}

.hamburger-bar {
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Mobile Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100%;
    background: #070D1E;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
    z-index: 1002;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
    transform: translateX(-340px);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.1rem;
}

.mobile-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-drawer-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px;
}

.mobile-drawer-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.mobile-drawer-sub {
    font-size: 0.72rem;
    color: var(--color-gold-400);
    letter-spacing: 0.08em;
    display: block;
}

.close-drawer-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #CBD5E1;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-drawer-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.4);
}

.mobile-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
}

.mobile-nav-link {
    font-family: var(--font-accent);
    font-size: 0.98rem;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-link i {
    color: var(--color-gold-400);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(212, 175, 55, 0.12);
    color: #FCE38A;
}

.mobile-drawer-cta {
    padding-top: 0.25rem;
}

.mobile-drawer-info {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.85rem;
}

.drawer-info-title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
}

.drawer-service-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    color: #E2E8F0;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-contact-row a {
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.drawer-contact-row a:hover {
    color: var(--color-gold-400);
}

/* ================= Hero Slider Section ================= */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 740px;
    background: #060B1A;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 740px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.92);
    transform: scale(1);
    transition: transform 7.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 11, 26, 0.94) 0%, rgba(6, 11, 26, 0.82) 48%, rgba(6, 11, 26, 0.42) 100%),
                linear-gradient(0deg, rgba(6, 11, 26, 0.92) 0%, rgba(6, 11, 26, 0.15) 50%, rgba(6, 11, 26, 0.6) 100%);
    z-index: 1;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    padding: 6.5rem 1.5rem 6.5rem;
    width: 100%;
}

.hero-glow-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(7, 13, 30, 0) 70%);
    filter: blur(50px);
    top: 10%;
    right: 5%;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 840px;
    position: relative;
    z-index: 3;
}

.hero-slide .hero-slide-badge {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.hero-slide .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.015em;
    font-weight: 700;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero-slide .hero-lead {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 720px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-slide .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero-slide .hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}

.hero-slide.active .hero-slide-badge,
.hero-slide.active .hero-title,
.hero-slide.active .hero-lead,
.hero-slide.active .hero-actions,
.hero-slide.active .hero-stats-bar {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold-400);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-stat-desc {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: #94A3B8;
}

/* Slider Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(6, 11, 26, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    color: #F5D77F;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.hero-prev-btn { left: 2.2rem; }
.hero-next-btn { right: 2.2rem; }

.hero-slider-nav:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #FCE38A;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
}

/* Slider Controls (Dots + Counter) */
.hero-slider-controls {
    position: absolute;
    bottom: 2.25rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 10;
    background: rgba(6, 11, 26, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-dot {
    width: 28px;
    height: 5px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    width: 44px;
    background: rgba(255, 255, 255, 0.28);
}

.hero-dot.active .dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #D4AF37, #FDE68A);
    border-radius: 9999px;
    box-shadow: 0 0 6px #D4AF37;
}

.hero-slide-counter {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: 0.08em;
}

/* ================= Section Layouts ================= */
.section {
    padding: 5.5rem 0;
}

.section-dark {
    background: var(--color-navy-900);
    color: #FFFFFF;
}

.section-dark h2, .section-dark h3 {
    color: #FFFFFF;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.section-title {
    font-size: 1.85rem;
    margin-top: 0.75rem;
    margin-bottom: 0.85rem;
    line-height: 1.28;
    letter-spacing: -0.015em;
    font-weight: 700;
}

.page-banner-title {
    color: #FFFFFF !important;
    font-size: 2.05rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    margin: 0.75rem 0 0.9rem !important;
    letter-spacing: -0.015em !important;
    line-height: 1.25 !important;
}

.section-subtitle {
    font-size: 1.0rem;
    color: var(--color-text-muted);
}

.section-dark .section-subtitle {
    color: #94A3B8;
}

/* ================= Mission Core Banner (REACH RESTORE RELEASE) ================= */
.mission-strip {
    background: linear-gradient(135deg, #09122C 0%, #101E4A 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0;
    color: #FFFFFF;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.mission-col {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition-smooth);
}

.mission-col:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.04);
}

.mission-col-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-400);
    font-size: 1.5rem;
}

.mission-col-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold-400);
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
}

.mission-col-text {
    font-size: 0.92rem;
    color: #CBD5E1;
    line-height: 1.6;
}

/* ================= Welcome Pastor Section ================= */
.pastor-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.pastor-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 3px solid rgba(212, 175, 55, 0.35);
}

.pastor-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pastor-photo-wrapper:hover .pastor-photo {
    transform: scale(1.03);
}

.pastor-badge-floating {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(7, 13, 30, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: #FFFFFF;
}

.pastor-badge-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold-400);
    margin-bottom: 0.2rem;
}

.pastor-badge-sub {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pastor-quote-box {
    background: #F1F5F9;
    border-left: 4px solid var(--color-gold-500);
    padding: 1.4rem 1.6rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--color-navy-800);
}

/* ================= Pillar Cards (Teach Children, Bible, Poor) ================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #E2E8F0;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(212, 175, 55, 0.4);
}

.pillar-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.pillar-card:hover .pillar-img {
    transform: scale(1.08);
}

.pillar-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-navy-900);
}

.pillar-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.pillar-scripture {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--color-gold-600);
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px dashed #E2E8F0;
}

/* ================= Service Timings Strip ================= */
.service-timing-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.service-timing-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(6px);
}

.service-day {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-gold-400);
}

.service-name {
    font-size: 0.95rem;
    color: #E2E8F0;
}

.service-clock {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.92rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold-400);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

/* ================= Forms & Inputs ================= */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-navy-800);
    margin-bottom: 0.4rem;
}

.form-label.on-dark {
    color: #E2E8F0;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #FFFFFF;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-500);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-control.on-dark {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.form-control.on-dark:focus {
    border-color: var(--color-gold-400);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* Alert Boxes */
.alert {
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-error {
    background-color: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* ================= Sermons / Media Cards ================= */
.sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.sermon-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #E2E8F0;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.sermon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(212, 175, 55, 0.5);
}

.sermon-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000000;
}

.sermon-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sermon-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sermon-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
}

.sermon-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    color: var(--color-navy-900);
}

.sermon-scripture {
    font-size: 0.88rem;
    color: var(--color-gold-600);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sermon-summary {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* ================= FAQ Accordion ================= */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-navy-900);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question-btn:hover {
    color: var(--color-gold-600);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--color-gold-500);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ================= Donation / Giving Card ================= */
.giving-box-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.giving-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    border: 1px solid #E2E8F0;
    padding: 2.2rem;
}

.bank-details-box {
    background: var(--color-navy-900);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-elevated);
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.bank-label {
    color: #94A3B8;
    font-family: var(--font-accent);
}

.bank-value {
    color: var(--color-gold-400);
    font-weight: 700;
    font-family: var(--font-accent);
    letter-spacing: 0.04em;
}

/* ================= Footer ================= */
.site-footer {
    background: #040813;
    color: #94A3B8;
    border-top: 2px solid rgba(212, 175, 55, 0.25);
    padding: 5rem 0 2rem;
    font-size: 0.92rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.35rem;
}

.footer-logo-frame {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(13, 22, 48, 0.85) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.22);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-logo-frame:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: #FCE38A;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-emblem-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-title-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.footer-brand-title {
    color: #FFFFFF !important;
    font-size: 1.25rem !important;
    font-family: var(--font-heading) !important;
    margin: 0 !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.footer-brand-badge {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #F5D77F;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 2px 7px;
    border-radius: 9999px;
    white-space: nowrap;
}

.footer-brand-subtitle {
    color: var(--color-gold-400);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    font-weight: 600;
    font-family: var(--font-accent);
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-gold-500);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #CBD5E1;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--color-gold-400);
    padding-left: 0.35rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #CBD5E1;
    line-height: 1.5;
}

.footer-contact-icon {
    color: var(--color-gold-400);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748B;
}

/* ================= Responsive Breakpoints ================= */
@media (max-width: 1240px) {
    .nav-menu {
        gap: 0.2rem;
    }
    .nav-link {
        font-size: 0.86rem;
        padding: 0.45rem 0.65rem;
    }
    .btn-nav-donate {
        padding: 0.55rem 1.15rem;
        font-size: 0.86rem;
    }
}

@media (max-width: 1040px) {
    .desktop-nav, .btn-nav-donate {
        display: none !important;
    }
    .mobile-toggle-btn {
        display: flex !important;
    }
    .top-bar-loc-item {
        display: none;
    }
    .pastor-welcome-grid, .giving-box-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .pillars-grid, .mission-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1040px) {
    .hero-slider-nav {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    .hero-prev-btn { left: 1rem; }
    .hero-next-btn { right: 1rem; }
    .hero-slider-section, .hero-slider-container {
        min-height: 700px;
    }
    .hero-title {
        font-size: 2.0rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.15rem 0;
    }
    .nav-inner {
        padding: 0.55rem 0;
    }
    .brand-tag-badge {
        display: none;
    }
    .brand-logo-frame {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .brand-emblem-img {
        width: 26px;
        height: 26px;
    }
    .brand-main-title {
        font-size: 1.02rem;
    }
    .brand-sub-tagline {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }
    .top-bar-center {
        display: none;
    }
    .top-bar-loc-item {
        display: none;
    }
    .top-bar-inner {
        justify-content: space-between;
        gap: 0.5rem;
    }
    .top-bar-left {
        gap: 0.4rem;
    }
    .top-bar-chip#top-bar-email {
        display: none;
    }
    .hero-slider-nav {
        display: none;
    }
    .hero-slider-section, .hero-slider-container {
        min-height: 640px;
    }
    .hero-slide-container {
        padding: 4.5rem 1rem 5.5rem;
    }
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .hero-lead {
        font-size: 0.98rem;
    }
    .hero-slider-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .hero-stat-num {
        font-size: 1.25rem;
    }
}

@media (max-width: 440px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .brand-main-title {
        font-size: 0.94rem;
    }
    .brand-sub-tagline {
        display: none;
    }
    .hero-title {
        font-size: 1.45rem;
    }
}


