/* ==========================================================================
   PASTOR AMOS | PROPHETIC MINISTRY OF CHRIST
   Modern Spiritual Luxury Design System (Obsidian & Celestial Gold)
   Designed by MetaFlux
   ========================================================================== */

:root {
    /* Color Palette - Celestial Obsidian & Divine Gold */
    --bg-main: #050811;
    --bg-surface: #0b1020;
    --bg-surface-elevated: #11182c;
    --bg-card: rgba(15, 23, 42, 0.72);
    --bg-card-hover: rgba(20, 30, 55, 0.85);
    --bg-glass: rgba(11, 16, 32, 0.8);
    
    --border-subtle: rgba(212, 175, 55, 0.18);
    --border-gold: rgba(212, 175, 55, 0.45);
    --border-gold-glow: rgba(212, 175, 55, 0.8);
    
    --gold-primary: #d4af37;
    --gold-light: #fef08a;
    --gold-bright: #fbbf24;
    --gold-dark: #b45309;
    --gold-deep: #78350f;
    
    --accent-red: #dc2626;
    --accent-red-hover: #b91c1c;
    --accent-crimson: #991b1b;
    --accent-cyan: #38bdf8;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Shadows & Radiance */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 45px -8px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.22);
    --shadow-gold-intense: 0 0 50px rgba(212, 175, 55, 0.4);
    --shadow-red: 0 8px 25px rgba(220, 38, 38, 0.35);
    
    /* Typography */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Cinzel', serif;
    --font-script: 'Great Vibes', 'Dancing Script', cursive;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Stars & Glows */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(220, 38, 38, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 75% 85%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #ffffff;
    line-height: 1.3;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: #ffffff;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.gold-text {
    background: linear-gradient(135deg, #fff7c2 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-gradient {
    background: linear-gradient(135deg, #fef08a 0%, #d4af37 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-serif {
    font-family: var(--font-heading);
}

.uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.margin-top-xs { margin-top: 8px; }
.margin-top-sm { margin-top: 16px; }
.margin-top { margin-top: 28px; }
.margin-top-lg { margin-top: 48px; }

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-cross-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(180, 83, 9, 0.4));
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-logo-sub {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-links {
        gap: 8px;
    }
    .nav-link {
        font-size: 0.78rem;
        padding: 5px 5px;
    }
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--gold-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    flex-direction: column;
    background: rgba(11, 16, 32, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 18px 24px 28px;
    gap: 12px;
}

.drawer-link {
    color: var(--text-secondary);
    font-size: 1.02rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link:active {
    background: rgba(212, 175, 55, 0.12);
    color: #ffffff;
    border-left-color: var(--gold-primary);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.03em;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #0b1020;
    font-weight: 700;
    border-color: var(--gold-light);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fef08a 0%, #d4af37 100%);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.55);
    color: #050811;
    transform: translateY(-2px);
}

.btn-red {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.82rem;
    border-radius: 6px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.ministry-tag, .accent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

/* ==========================================================================
   Card System (Glassmorphic)
   ========================================================================== */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.12);
}

.card-hero-purple {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(20, 20, 45, 0.75) 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.08);
}

.max-width-lg {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.align-center {
    align-items: center;
}

/* ==========================================================================
   Section Containers & Layout
   ========================================================================== */
.content-section {
    padding: 95px 24px;
    position: relative;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-header-center h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-header-center p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.22;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

/* Tapestry Banner Component */
.hero-banner-frame {
    margin-bottom: 28px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
    position: relative;
    max-width: 650px;
}

.hero-banner-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-banner-frame:hover img {
    transform: scale(1.02);
}

/* Pastoral Letter Container */
.letter-container {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--gold-primary);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.letter-greeting {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.letter-paragraph {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.toggle-letter-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 8px;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.toggle-letter-btn:hover {
    background: var(--gold-primary);
    color: #050811;
    transform: scale(1.1);
}

.collapsible-letter {
    display: none;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 14px;
    animation: fadeIn 0.4s ease;
}

.scripture-quote-block {
    background: rgba(11, 16, 32, 0.7);
    border-left: 3px solid var(--gold-primary);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
}

.quote-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-weight: 700;
}

.letter-quote {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
}

.quote-source {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--gold-primary);
    margin-top: 4px;
    font-style: normal;
    font-weight: 600;
}

.prayer-alignment-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px;
    padding: 18px;
    margin: 20px 0 16px;
}

.prayer-title {
    font-size: 1.05rem;
    color: #fca5a5;
    margin-bottom: 6px;
}

.prayer-instruction {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.prayer-text {
    font-style: italic;
    color: #ffffff;
    margin-top: 6px;
    line-height: 1.65;
}

.letter-signature {
    margin-top: 20px;
    text-align: right;
}

.valediction {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* Pastor Amos Portrait Showcase Card */
.portrait-showcase-container {
    position: relative;
    text-align: center;
}

.portrait-glow-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(220, 38, 38, 0.12) 45%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.portrait-card {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    overflow: hidden;
}

.portrait-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #000;
}

.portrait-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s ease;
}

.portrait-card:hover .portrait-img-wrapper img {
    transform: scale(1.03);
}

.portrait-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 8, 17, 0.95) 0%, rgba(5, 8, 17, 0.6) 65%, transparent 100%);
    padding: 24px 18px 16px;
    text-align: center;
}

.portrait-badge-overlay .pastor-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.portrait-badge-overlay .pastor-title {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-transform: uppercase;
    font-weight: 600;
}

.floating-metric-chip {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--gold-primary);
    border-radius: 30px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* ==========================================================================
   Meet Pastor Amos (Bio Section)
   ========================================================================== */
.about-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 50%, var(--bg-main) 100%);
}

.about-avatar-card {
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.about-avatar-card img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.anointing-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.anointing-pill {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

/* ==========================================================================
   The Mandate Section
   ========================================================================== */
.mandate-banner {
    text-align: center;
    padding: 55px 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 20, 48, 0.9) 100%);
}

.mandate-quote {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 24px;
}

.mandate-author {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 16px;
    display: inline-block;
}

.mandate-pillars-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.15);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    display: block;
}

.pillar-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* ==========================================================================
   One on One Booking Section
   ========================================================================== */
.collapsible-booking {
    display: block;
    margin-top: 24px;
}

.booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(11, 16, 32, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    background: rgba(15, 23, 42, 0.95);
}

.form-group select option {
    background: #0b1020;
    color: #ffffff;
}

/* ==========================================================================
   Daily Prophetic Word (Rhema Generator)
   ========================================================================== */
.prophetic-card-container {
    max-width: 820px;
    margin: 0 auto;
}

.prophetic-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(20, 24, 45, 0.85) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.prophetic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--accent-red), var(--gold-light));
}

.prophetic-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.verse-ref {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 20px;
}

.prophetic-date {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.word-title {
    font-size: 1.85rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.word-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.prophetic-card-footer {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Sermons & Videos
   ========================================================================== */
.featured-video-wrapper {
    max-width: 580px;
    margin: 0 auto 30px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.video-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.15);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.thumb-graphic {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
    transition: var(--transition-bounce);
}

.video-thumbnail:hover .play-btn {
    transform: scale(1.15);
    background: #ef4444;
}

.video-details {
    padding: 24px;
}

.video-date {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 8px;
}

.video-details h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-details p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.video-watch-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.video-watch-link:hover {
    color: #ffffff;
}

.collapsible-videos {
    display: none;
}

/* ==========================================================================
   Prophetic Prayer Sessions & Live Altar
   ========================================================================== */
.schedule-banner {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.schedule-title {
    font-size: 1.7rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.schedule-desc {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Prayer Wall Feed & Cards */
.prayer-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.prayer-wall-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prayer-wall-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.prayer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.prayer-card-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.prayer-card-tag {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.prayer-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.prayer-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.agreement-count {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

.btn-agree {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-agree:hover {
    background: var(--gold-primary);
    color: #050811;
}

/* ==========================================================================
   Wall of Faith (Testimonies)
   ========================================================================== */
.testimonies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.testimony-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.testimony-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.15);
}

.testimony-badge {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: inline-block;
    margin-bottom: 14px;
}

.testimony-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimony-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(180, 83, 9, 0.35));
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1rem;
}

.author-meta h5 {
    font-size: 0.95rem;
    color: #ffffff;
}

.author-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.collapsible-testimony {
    display: none;
    margin-top: 24px;
}

/* ==========================================================================
   Fellowship & Giving Sections
   ========================================================================== */
.fellowship-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(25, 25, 55, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.whatsapp-btn-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.giving-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.donate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.donate-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.15);
}

.donate-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.donate-icon.cash-app {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.donate-icon.paypal {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.donate-tag {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin: 6px 0 14px;
    font-weight: 700;
}

.donate-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #03050a;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 24px 35px;
    position: relative;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links-group h4, .footer-contact h4 {
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.footer-links-group a {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Floating Bot & Scroll FAB
   ========================================================================== */
#chatFab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
    transition: var(--transition-bounce);
    border: 2px solid var(--gold-light);
}

#chatFab:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.65);
}

.chat-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
}

#chatPanel {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 530px;
    max-height: calc(100vh - 130px);
    background: rgba(11, 16, 32, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-gold), 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 1050;
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#chatPanel.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.chat-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-avatar {
    position: relative;
    font-size: 1.5rem;
}

.chat-avatar-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    border: 1px solid #000;
}

.chat-header-info {
    flex-grow: 1;
    margin-left: 12px;
}

.chat-header-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.chat-header-status {
    font-size: 0.75rem;
    color: var(--gold-light);
}

.chat-header-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.chat-header-close:hover {
    color: #ffffff;
}

.chat-messages {
    flex-grow: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    align-items: flex-start;
}

.chat-msg.user {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 86%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.55;
    word-wrap: break-word;
}

.chat-bubble.bot {
    background: rgba(26, 36, 64, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #f8fafc;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chat-bubble.bot strong {
    color: var(--gold-light);
}

.chat-bubble.user {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #050811;
    border: 1px solid var(--gold-light);
    border-bottom-right-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.chat-bubble.user strong {
    color: #050811;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    animation: msgFadeIn 0.35s ease;
}

.chat-quick-btn {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-sans);
}

.chat-quick-btn:hover {
    background: var(--gold-primary);
    color: #050811;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.chat-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    margin: 4px 4px 4px 0;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-sans);
    border: 1px solid var(--border-gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
}

.chat-action-btn:hover {
    background: var(--gold-primary);
    color: #050811;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.chat-action-btn.whatsapp {
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.chat-action-btn.whatsapp:hover {
    background: #25d366;
    color: #050811;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.chat-input-area {
    padding: 14px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 10px;
    background: rgba(15, 23, 42, 0.9);
    flex-shrink: 0;
}

.chat-input-area input {
    flex-grow: 1;
    background: rgba(11, 16, 32, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 0.9rem;
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.chat-input-area button {
    background: var(--gold-primary);
    border: none;
    border-radius: 8px;
    color: #050811;
    padding: 0 16px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
}

.chat-input-area button:hover {
    background: var(--gold-light);
}

.chat-fab-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollHomeFab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

#scrollHomeFab:hover {
    background: var(--gold-primary);
    color: #050811;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-headline {
        font-size: 2.3rem;
    }
    .portrait-showcase-container {
        max-width: 450px;
        margin: 0 auto;
    }
    .grid-2, .grid-3, .mandate-pillars-grid, .testimonies-grid, .giving-grid, .prayer-feed {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .content-section {
        padding: 70px 18px;
    }
    .hero-headline {
        font-size: 1.95rem;
    }
    .section-header-center h2 {
        font-size: 1.85rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    #scrollHomeFab {
        display: flex;
        bottom: 20px;
        left: 20px;
    }
    #chatFab {
        bottom: 20px;
        right: 20px;
    }
    #chatPanel {
        right: 12px;
        left: 12px;
        bottom: 84px;
        width: auto;
        max-width: none;
        height: calc(100vh - 110px);
        max-height: 560px;
    }
}