/* ============================================
   HEALING CENTER CHURCH - Premium Stylesheet
   Designed by Diolichat (www.diolichat.co.rw)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Color Palette */
    --blue-deep: #051224;
    --blue-dark: #0f2847;
    --blue-light: #1e4a8a;
    --gold: #FFB300;
    --gold-light: #FFD54F;
    --gold-dark: #FF8F00;
    --accent-purple: #7C3AED;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.5s ease;
    --transition-reveal: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--blue-deep);
    line-height: 1.25;
    font-weight: 700;
}

/* ---- Utility ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.2;
}

.lang-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-color: var(--accent-cyan);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: var(--white);
    border-color: var(--accent-purple);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* Footer language switcher */
.footer-lang-switcher {
    text-align: center;
    margin: 12px 0;
}

.footer-lang-switcher .lang-switcher {
    justify-content: center;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.98), rgba(26, 58, 92, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 16px 0;
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner p {
        min-width: auto;
    }
}

/* ============================================
   TOP HEADER BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.4;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar-verse {
    font-style: italic;
    letter-spacing: 0.01em;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-verse strong {
    color: var(--gold-light);
    font-style: normal;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.76rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--gold-light);
    transform: translateX(2px);
}

.top-bar-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.top-bar-link:hover svg {
    opacity: 1;
}

@media (max-width: 768px) {
    .top-bar-verse {
        font-size: 0.7rem;
    }
    .top-bar-contact {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 0;
    }
    .top-bar-verse {
        font-size: 0.65rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.navbar.scrolled {
    top: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, 0.5);
    transition: border-color var(--transition-base);
}

.nav-logo:hover img {
    border-color: var(--gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--gold-light);
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--blue-deep) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

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

.hamburger {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(15, 33, 64, 0.75) 40%,
        rgba(26, 58, 92, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 179, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.3);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.5);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-cyan));
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
    animation: shimmer 3s infinite;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: 0;
}

.about-heading {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--blue-deep);
}

.about-text {
    margin-bottom: 18px;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

.belief-quote {
    margin-top: 28px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.03), rgba(201, 168, 76, 0.06));
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.quote-icon {
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0.6;
}

.belief-quote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--blue-deep);
    line-height: 1.7;
    margin-bottom: 8px;
}

.belief-quote cite {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

/* About blocks (Vision/Mission) */
.about-block {
    margin-bottom: 20px;
}

.about-block-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--blue-deep);
    margin-bottom: 8px;
    font-weight: 700;
}

/* ============================================
   CORE PILLARS (dark section matching footer)
   ============================================ */
.pillars-section {
    margin-top: 0;
    background: var(--blue-deep);
    padding: 80px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    position: relative;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.pillars-section .section-tag {
    color: var(--gold-light);
}

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

.pillars-section .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.pillar-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.4);
}

.pillar-card:hover::after {
    transform: scaleX(1);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--blue-deep);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pillar-verse {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
    font-style: italic;
    opacity: 0.8;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--gray-200);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 18, 36, 0.12);
    border-color: var(--gold);
}

.value-card:hover::before {
    opacity: 1;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 8px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   SERVICE CARDS (premium design)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 76, 0.4);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue-deep);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.55);
}

.service-card-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.service-card .service-times {
    margin: 0;
    padding: 20px 0 0;
    border-top: 2px solid rgba(201, 168, 76, 0.2);
    border-bottom: none;
}

.service-card .service-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.service-card .service-time-item:hover {
    background: rgba(201, 168, 76, 0.06);
}

.service-card .service-time-item + .service-time-item {
    border-top: 1px dashed rgba(5, 18, 36, 0.08);
}

.service-label {
    font-weight: 600;
    color: var(--blue-deep);
    font-size: 0.92rem;
}

.service-hour {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Responsive: Pillars, Values & Services */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .pillars-section {
        padding: 56px 0;
    }
    .values-section {
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .pillars-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 36px 24px 32px;
    }
}

/* ============================================
   MINISTRIES SECTION
   ============================================ */
.ministries {
    background: var(--blue-deep);
    color: var(--white);
}

.ministries .section-tag {
    color: var(--gold-light);
}

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

.ministries .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.ministries .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ministry-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.ministry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.25);
    border-color: rgba(201, 168, 76, 0.4);
}

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

.ministry-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--gold);
    transition: all var(--transition-base);
}

.ministry-card:hover .ministry-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.05);
}

.ministry-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--blue-deep);
    font-family: var(--font-heading);
}

.ministry-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   SERMONS SECTION
   ============================================ */
.sermons {
    background: var(--white);
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.sermon-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.sermon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.sermon-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.sermon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sermon-card:hover .sermon-image img {
    transform: scale(1.05);
}

.sermon-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 40, 0.4);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sermon-play svg {
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform var(--transition-base);
}

.sermon-card:hover .sermon-play {
    opacity: 1;
}

.sermon-card:hover .sermon-play svg {
    transform: scale(1.1);
}

.sermon-info {
    padding: 24px;
}

.sermon-date {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.sermon-title {
    font-size: 1.15rem;
    margin: 8px 0 6px;
    color: var(--blue-deep);
    font-family: var(--font-heading);
}

.sermon-speaker {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.sermons-cta {
    text-align: center;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

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

.social-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.social-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.social-card-header h3 {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--blue-deep);
}

.social-embed {
    flex: 1;
    min-height: 300px;
    position: relative;
    background: var(--gray-50);
}

.social-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

.social-embed-preview {
    min-height: auto;
}

.ig-preview {
    position: relative;
    overflow: hidden;
}

.ig-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.social-card:hover .ig-preview img {
    transform: scale(1.05);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.ig-handle {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    border-top: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.social-link svg {
    transition: transform var(--transition-base);
}

.social-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   VISIT US SECTION
   ============================================ */
.visit {
    background: var(--blue-deep);
    color: var(--white);
}

.visit .section-tag {
    color: var(--gold-light);
}

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

.visit .section-divider {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-md);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.visit-detail h3 {
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

.visit-detail p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.visit-note {
    font-style: italic;
    color: rgba(201, 168, 76, 0.7) !important;
    font-size: 0.88rem !important;
    margin-top: 4px;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    transition: color var(--transition-base);
    letter-spacing: 0.02em;
}

.phone-link:hover {
    color: var(--gold);
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(201, 168, 76, 0.3);
    background: var(--blue-dark);
}

.map-card iframe {
    width: 100%;
    height: 420px;
    display: block;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--blue-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.4);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-belief {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
    transition: color var(--transition-base);
}

.footer-phone:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-icon.youtube:hover {
    background: #FF0000;
    color: var(--white);
    border-color: #FF0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border-color: transparent;
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--gold-light);
    font-weight: 600;
    transition: color var(--transition-base);
}

.footer-credit a:hover {
    color: var(--gold);
}

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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ministries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sermons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sermons-grid .sermon-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .social-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image img {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--blue-deep);
        padding: 100px 32px 40px;
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .btn-nav {
        text-align: center;
        margin-top: 12px;
    }

    /* Hero */
    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll {
        display: none;
    }

    /* Ministries */
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .ministry-card {
        padding: 32px 24px;
    }

    /* Sermons */
    .sermons-grid {
        grid-template-columns: 1fr;
    }

    .sermons-grid .sermon-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    /* Social */
    .social-grid {
        max-width: 100%;
    }

    /* Contact */
    .contact-form {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .belief-quote {
        padding: 20px 20px;
    }

    .map-card iframe {
        height: 300px;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.slider-dot:hover {
    border-color: var(--gold-light);
    background: rgba(201, 168, 76, 0.3);
}

/* Hero Particles Effect */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatParticle 20s ease-in-out infinite;
}

.hero-particles::before {
    background: var(--gold);
    top: 20%;
    left: 10%;
}

.hero-particles::after {
    background: var(--white);
    bottom: 20%;
    right: 10%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

/* ============================================
   SHIMMER TEXT EFFECT
   ============================================ */
.shimmer-text {
    background: linear-gradient(
        120deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--white) 50%,
        var(--gold-light) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ============================================
   SECTION WAVE DIVIDER
   ============================================ */
.section-wave {
    position: relative;
    margin-top: -2px;
    line-height: 0;
    overflow: hidden;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* ============================================
   ADVANCED REVEAL ANIMATIONS
   ============================================ */
.reveal.fade-left {
    opacity: 0;
    transform: translateX(60px);
}

.reveal.fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal.fade-right {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal.fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal.zoom-in-fade {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(8px);
}

.reveal.zoom-in-fade.revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1s ease;
}

.reveal.scale-in {
    opacity: 0;
    transform: scale(0.85);
}

.reveal.scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal.fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal.fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FEATURED VIDEO
   ============================================ */
.featured-video {
    margin-bottom: 48px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--gray-100);
    background: var(--gray-900);
}

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

/* ============================================
   CONTACT FORM ENHANCEMENTS
   ============================================ */
.form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

.required {
    color: #EF4444;
    font-weight: 400;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 6px;
    min-height: 0;
    transition: all var(--transition-base);
}

.form-error:empty {
    display: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
    background: #FEF2F2;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #10B981;
}

.form-group input.success:focus,
.form-group textarea.success:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Submit Button States */
#submitBtn {
    position: relative;
    overflow: hidden;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

#submitBtn.loading .btn-text {
    opacity: 0;
}

#submitBtn.loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Form Status Messages */
.form-status {
    margin-top: 16px;
    padding: 0;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
    max-height: 0;
}

.form-status.show {
    padding: 14px 20px;
    max-height: 100px;
    margin-top: 16px;
}

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

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

.form-status.rate-limited {
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

/* ============================================
   FLOATING ANIMATION FOR ICONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.visit-icon {
    animation: float 3s ease-in-out infinite;
}

.visit-detail:nth-child(2) .visit-icon { animation-delay: 0.3s; }
.visit-detail:nth-child(3) .visit-icon { animation-delay: 0.6s; }
.visit-detail:nth-child(4) .visit-icon { animation-delay: 0.9s; }

/* ============================================
   GRADIENT BORDER ANIMATION
   ============================================ */
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ministry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark), var(--gold));
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.ministry-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    animation: gradientBorder 3s ease infinite;
}

/* ============================================
   PULSE ANIMATION
   ============================================ */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

.btn-primary:focus {
    animation: pulse 2s ease infinite;
}

/* ============================================
   SMOOTH COUNT-UP ANIMATION
   ============================================ */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVBAR OVERLAY (Mobile)
   ============================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

/* ============================================
   CONTACT FORM WRAPPER
   ============================================ */
.contact-form-wrapper {
    position: relative;
}

/* ---- Print Styles ---- */
@media print {
    .navbar,
    .hero-scroll,
    .nav-toggle,
    .back-to-top {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }

    body {
        color: #000;
    }
}

/* ============================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .featured-video {
        margin-bottom: 32px;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
    }

    .hero-slider-dots {
        margin-top: 24px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
}

/* ============================================
   UNIQUE SECTION EFFECTS
   ============================================ */

/* --- About Section: Soft radial glow behind image --- */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: aboutGlow 8s ease-in-out infinite alternate;
}

@keyframes aboutGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(40px, 30px) scale(1.15); opacity: 1; }
}

.about .image-frame {
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.about .image-frame:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

/* --- Ministries Section: Animated diagonal pattern bg --- */
.ministries {
    position: relative;
    overflow: hidden;
}

.ministries::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(201, 168, 76, 0.02) 40px,
        rgba(201, 168, 76, 0.02) 80px
    );
    animation: diagonalScroll 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes diagonalScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.ministries .container {
    position: relative;
    z-index: 1;
}

.ministry-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ministry-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* --- Social Section: Glowing card borders on hover --- */
.social {
    position: relative;
}

.social-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--blue-accent), var(--gold));
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.social-card:hover::before {
    opacity: 1;
    animation: gradientBorder 4s ease infinite;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

/* --- Visit Section: Floating light particles --- */
.visit {
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: visitFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.visit::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: visitFloat 15s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes visitFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, -40px); }
}

/* Map card glow on hover */
.map-card {
    transition: all 0.4s ease;
}

.map-card:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
}

/* --- Contact Section: Floating geometric shapes --- */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(201, 168, 76, 0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(10, 22, 40, 0.04);
    border-radius: 50%;
    animation: morphShape 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; transform: rotate(180deg); }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.contact-form {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-image {
    transition: all 0.5s ease;
}

.contact-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* --- Footer: Subtle gradient line animation --- */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 200% 100%;
    animation: footerGradient 6s ease infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero badge pulse --- */
.hero-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
}

/* --- Section tag subtle bounce on reveal --- */
.revealed .section-tag {
    animation: tagSlideIn 0.6s ease forwards;
}

@keyframes tagSlideIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Enhanced link underline effect --- */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width var(--transition-base);
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- Phone link ring animation --- */
.phone-link {
    position: relative;
    display: inline-block;
}

.phone-link:hover {
    animation: phoneRing 0.5s ease;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-5deg); }
    40% { transform: rotate(5deg); }
    60% { transform: rotate(-3deg); }
    80% { transform: rotate(3deg); }
}

/* --- Social icon bounce on hover --- */
.social-icon:hover {
    animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
    50% { transform: translateY(-3px); }
    70% { transform: translateY(-5px); }
    100% { transform: translateY(-3px); }
}

/* --- Belief quote left border shimmer --- */
.belief-quote {
    position: relative;
    overflow: hidden;
}

.belief-quote::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
    animation: quoteShimmer 3s ease-in-out infinite;
}

@keyframes quoteShimmer {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* --- Service time text glow on visit section --- */
.visit-detail h3 {
    transition: text-shadow var(--transition-base);
}

.visit-detail:hover h3 {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ============================================
   FOOTER VERSE
   ============================================ */
.footer-verse {
    text-align: center;
    padding: 28px 20px;
    margin: 36px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-verse::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-verse p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.footer-verse strong {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   ADVANCED UX ENHANCEMENTS
   ============================================ */

/* --- Smooth focus states for accessibility --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Button magnetic hover effect --- */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.97);
}

/* --- Nav link elegant underline --- */
.nav-link {
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
    left: 0;
}

/* --- Ministry card 3D tilt micro-interaction --- */
.ministry-card {
    perspective: 800px;
    transform-style: preserve-3d;
    will-change: transform;
}

.ministry-card:hover .ministry-icon {
    transform: rotateY(360deg);
    transition: transform 0.6s ease;
}

.ministry-icon {
    transition: transform 0.6s ease, background 0.3s ease;
}

.ministry-card:hover .ministry-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.ministry-card:hover .ministry-icon svg {
    stroke: var(--white);
}

/* --- Social card shine sweep effect --- */
.social-card {
    overflow: hidden;
}

.social-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.social-card:hover::after {
    left: 125%;
}

/* --- Visit detail card lift + border accent --- */
.visit-detail {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
    padding-left: 16px;
}

.visit-detail:hover {
    transform: translateX(8px);
    border-left-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.visit-icon {
    transition: all 0.3s ease;
}

.visit-detail:hover .visit-icon {
    transform: scale(1.15);
    color: var(--gold);
}

/* --- Form input focus glow --- */
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* --- Form input hover --- */
.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--gray-300);
    transition: border-color 0.2s ease;
}

/* --- Image parallax-like hover --- */
.contact-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-image:hover img {
    transform: scale(1.04);
}

/* --- Map iframe hover shine --- */
.map-card {
    position: relative;
    overflow: hidden;
}

.map-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-15deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.map-card:hover::after {
    left: 150%;
}

/* --- Section header divider animation --- */
.section-divider {
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revealed .section-divider {
    animation: dividerExpand 0.8s ease forwards;
}

@keyframes dividerExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 60px; opacity: 1; }
}

/* --- About image frame 3D hover --- */
.about .image-frame {
    position: relative;
    overflow: hidden;
}

.about .image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about .image-frame:hover::after {
    opacity: 1;
}

/* --- Footer social icons scale with glow --- */
.footer .social-icon {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

/* --- Smooth text selection --- */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* --- Scrollbar styling --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* --- Loading skeleton shimmer for images --- */
.about .image-frame,
.contact-image,
.ig-preview {
    background: linear-gradient(110deg, var(--gray-100) 8%, var(--gray-50) 18%, var(--gray-100) 33%);
    background-size: 200% 100%;
}

/* --- Hero content entrance enhancement --- */
.hero-content {
    animation: heroEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    animation: badgePulse 3s ease-in-out infinite, heroEntrance 0.8s ease 0.2s both;
}

.hero-title {
    animation: heroEntrance 1s ease 0.4s both;
}

.hero-subtitle {
    animation: heroEntrance 1s ease 0.6s both;
}

.hero-buttons {
    animation: heroEntrance 1s ease 0.8s both;
}

/* --- Smooth page load --- */
body {
    animation: pageLoad 0.6s ease;
}

@keyframes pageLoad {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ============================================
   BOLD COLOR ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 179, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 179, 0, 0.8), 0 0 30px rgba(255, 179, 0, 0.4); }
}

/* ============================================
   ABOUT SECTION LOGO ANIMATION
   ============================================ */
.logo-animate {
    animation: logoContinuousAnimation 4s ease-in-out infinite;
}

@keyframes logoContinuousAnimation {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(0.95); 
        filter: brightness(0.9);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
        filter: brightness(1.1);
    }
}
