/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0E0E0C;
    --bg-light: #FAFAF7;
    --bg-card: #FFFFFF;
    --text-dark: #0E0E0C;
    --text-light: #FFFFFF;
    --text-muted-dark: rgba(14, 14, 12, 0.6);
    --text-muted-light: rgba(255, 255, 255, 0.6);
    --gold: #B8945C;
    --gold-light: #E8C988;
    --border-light: #E5E5E0;
    --border-dark: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.italic-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.italic-gold {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-italic {
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.gold-text {
    color: var(--gold) !important;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(14, 14, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-circle {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(232, 201, 136, 0.3);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: white;
    color: var(--text-dark) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.nav-cta .arrow {
    font-size: 14px;
    transition: transform 0.3s;
}

.nav-cta:hover .arrow {
    transform: translate(2px, -2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: var(--bg-dark);
    color: white;
    padding: 120px 32px 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-orb {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 201, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-2 {
    top: auto;
    bottom: -150px;
    right: auto;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 100, 50, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

/* Floating gold particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold-light);
    animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; animation-duration: 13s; }
.particle:nth-child(5) { left: 85%; animation-delay: 8s; animation-duration: 12s; }
.particle:nth-child(6) { left: 40%; animation-delay: 10s; animation-duration: 16s; }

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(40px);
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.3) 0%, rgba(232, 201, 136, 0.15) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    height: auto;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 140, 50, 0.5)) drop-shadow(0 0 60px rgba(232, 201, 136, 0.3));
    transition: transform 0.3s ease;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 28px;
    color: white;
}

.period {
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--text-dark) !important;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    background: var(--text-dark);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: rotate(-45deg);
}

.btn-secondary {
    color: white !important;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s;
}

.btn-secondary:hover {
    opacity: 0.7;
}

.play-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover .play-icon {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold) 50%, transparent 50%);
    background-size: 1px 8px;
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes scrollLine {
    0% { background-position: 0 0; }
    100% { background-position: 0 16px; }
}

/* ===== METRICS STRIP ===== */
.metrics {
    background: white;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.metric-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border-light);
}

.metric-number {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--text-dark);
}

.metric-label {
    color: rgba(0, 0, 0, 0.5);
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-top: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== SECTION CONTAINERS ===== */
.section-light {
    background: var(--bg-light);
    padding: 100px 32px;
}

.section-dark {
    background: var(--bg-dark);
    color: white;
    padding: 100px 32px;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 20px;
}

.section-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WATCH ONLINE SECTION ===== */
.watch-section {
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
}

.watch-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 201, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.watch-section .section-container {
    position: relative;
    z-index: 1;
}

.watch-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-light {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    color: white;
    margin-bottom: 16px;
}

.watch-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 1.6;
}

.watch-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.watch-player {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
}

.watch-player-frame {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-player-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
}

.watch-player-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px 4px;
    flex-wrap: wrap;
    gap: 10px;
}

.recorded-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 201, 136, 0.15);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    border: 1px solid rgba(232, 201, 136, 0.3);
}

.watch-player-caption {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-style: italic;
}

.watch-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.watch-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    width: fit-content;
}

.watch-status-text {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #4ADE80;
}

.watch-info-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.watch-info-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.watch-schedule {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
}

.watch-schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
}

.watch-schedule-item:last-child {
    border-bottom: none;
}

.watch-schedule-day {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.watch-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.watch-schedule-info strong {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.watch-schedule-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.watch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-light {
    background: white;
    color: var(--text-dark) !important;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-primary-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.fb-icon {
    width: 28px;
    height: 28px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
}

.btn-arrow-light {
    color: var(--gold);
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-primary-light:hover .btn-arrow-light {
    transform: translate(3px, -3px);
}

/* ===== MISSION SECTION ===== */
.mission-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vision-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    cursor: default;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.vision-number {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vision-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 16px;
}

.service-card {
    padding: 36px 30px;
    border-radius: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-featured {
    background: var(--bg-dark);
    color: white;
}

.service-featured:hover {
    box-shadow: 0 20px 50px rgba(14, 14, 12, 0.2);
}

.service-light {
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
}

.service-light:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.service-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--text-dark);
}

.service-gold:hover {
    box-shadow: 0 20px 50px rgba(184, 148, 92, 0.3);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4ADE80;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    background: var(--text-dark);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dark 2s ease-in-out infinite;
}

@keyframes pulse-dark {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.service-meta {
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.service-light .service-meta {
    color: var(--gold);
}

.service-gold .service-meta {
    color: rgba(14, 14, 12, 0.6);
}

.service-card h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-light h3,
.service-gold h3 {
    font-size: 26px;
}

.service-time-block {
    margin-top: auto;
}

.service-time {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-time-dark {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.service-light p,
.service-gold p {
    color: rgba(14, 14, 12, 0.65);
}

/* ===== SCRIPTURE SECTION ===== */
.scripture-section {
    background: var(--bg-dark);
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
}

.quote-decoration {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 280px;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(232, 201, 136, 0.06);
    line-height: 0.7;
    font-weight: 900;
    user-select: none;
}

.scripture-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.scripture-text {
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 4vw, 42px);
    font-style: italic;
    line-height: 1.4;
    font-weight: 400;
}

.scripture-attribution {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.attribution-line {
    width: 40px;
    height: 1px;
    background: rgba(232, 201, 136, 0.5);
    display: inline-block;
}

/* ===== MINISTRIES SECTION ===== */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ministry-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.ministry-icon-bg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bg-light), white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s;
}

.ministry-card:hover .ministry-icon-bg {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
    transform: rotate(-5deg);
}

.ministry-icon {
    font-size: 28px;
}

.ministry-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ministry-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ministry-arrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.ministry-card:hover .ministry-arrow {
    transform: translateX(8px);
}

/* ===== EVENTS SECTION ===== */
.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.event-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(14, 14, 12, 0.85) 100%
    );
}

.event-hero-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    color: white;
    width: 100%;
}

.event-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card h3 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 12px;
    color: white;
}

.event-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

.event-body {
    padding: 40px 50px;
}

.event-description {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-dark);
    color: white;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 14, 12, 0.2);
}

.expand-btn.active {
    background: var(--gold);
}

.expand-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.4s;
}

.expand-btn.active .expand-icon {
    transform: rotate(180deg);
}

.expand-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.event-gallery {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
}

.event-gallery.open {
    max-height: 3000px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 50px 50px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: var(--bg-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.event-gallery.open .gallery-item {
    animation: galleryReveal 0.6s ease forwards;
}

.event-gallery.open .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.event-gallery.open .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.event-gallery.open .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.event-gallery.open .gallery-item:nth-child(4) { animation-delay: 0.2s; }
.event-gallery.open .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.event-gallery.open .gallery-item:nth-child(6) { animation-delay: 0.3s; }
.event-gallery.open .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.event-gallery.open .gallery-item:nth-child(8) { animation-delay: 0.4s; }
.event-gallery.open .gallery-item:nth-child(9) { animation-delay: 0.45s; }

@keyframes galleryReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content strong {
    color: white;
    font-weight: 600;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.about-card-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: white;
}

.about-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-stat {
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
}

.stat-big {
    display: block;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -3px;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    text-align: center;
    display: block;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-value {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}

.contact-link {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.contact-card:hover .contact-link {
    transform: translateX(5px);
}

/* ===== GIVE SECTION ===== */
.give-section {
    padding: 100px 32px 80px;
}

.give-intro {
    text-align: center;
    margin-bottom: 60px;
}

.give-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: white;
}

.give-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.give-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.give-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.give-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.give-featured {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border: none;
    color: var(--text-dark);
}

.give-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(184, 148, 92, 0.4);
}

.give-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.give-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.give-card h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: white;
}

.give-featured h3 {
    color: var(--text-dark);
}

.give-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.give-featured p {
    color: rgba(14, 14, 12, 0.7);
}

.give-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-dark);
    color: white !important;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.give-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 14, 12, 0.3);
}

.give-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    padding: 16px;
    border-radius: 14px;
    margin-top: auto;
}

.give-detail-label {
    display: block;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.give-detail-value {
    display: block;
    color: white;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}

.give-example {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 6px;
    font-style: italic;
}

.building-fund-banner {
    background: linear-gradient(135deg, rgba(232, 201, 136, 0.1) 0%, rgba(184, 148, 92, 0.05) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 36px;
}

.building-fund-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.building-fund-banner h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: white;
}

.building-fund-banner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 32px 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    margin: 20px 0;
}

.footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-verse {
    font-size: 14px !important;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 12, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 40px;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.lightbox.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--gold-light);
}

/* ===== MINISTRY MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 12, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1500;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: all 0.3s;
    font-weight: 300;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--gold);
    color: white;
}

.modal-icon {
    font-size: 56px;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h2 {
    color: var(--text-dark);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.modal-description {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: center;
}

.modal-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.modal-detail-item {
    margin-bottom: 18px;
}

.modal-detail-item:last-child {
    margin-bottom: 0;
}

.modal-detail-item strong {
    color: var(--gold);
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-detail-item span {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.modal-btn {
    display: block;
    width: 100%;
    background: var(--text-dark);
    color: white !important;
    padding: 16px;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 14, 12, 0.2);
    background: var(--gold);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial hero animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.3s; }
.fade-in-up:nth-child(3) { animation-delay: 0.5s; }
.fade-in-up:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 30px;
        gap: 24px;
        border-top: 1px solid var(--border-dark);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        min-height: 280px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .logo-glow {
        width: 320px;
        height: 320px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 50px 32px;
    }

    .metric-item:nth-child(2)::after {
        display: none;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .give-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .watch-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .watch-player-frame,
    .watch-player-frame iframe {
        min-height: 400px;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px 24px;
        gap: 10px;
    }

    .event-hero {
        height: 360px;
    }

    .event-hero-content,
    .event-body {
        padding: 30px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .quote-decoration {
        font-size: 180px;
        top: 10px;
        left: 20px;
    }

    .section-light,
    .section-dark,
    .scripture-section {
        padding: 70px 24px;
    }
}

@media (max-width: 560px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }

    .metrics {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 40px 24px;
    }

    .modal-content h2 {
        font-size: 26px;
    }
}