
.logo-img.logo-crossfade {
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), box-shadow 0.7s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    box-shadow: 0 0 32px 8px #D4A843, 0 0 0 8px rgba(212,168,67,0.18);
    position: relative;
}

.logo-img.logo-crossfade::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.22) 60%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.logo-img {
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), box-shadow 0.7s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}
/* ============================================================
   SILOAM CHURCH — STYLESHEET
   Color Palette: Gold (#D4A843), Black (#111), Dark (#1a1a1a)
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4A843;
    --gold-light: #E8C567;
    --gold-dark: #B8912E;
    --gold-glow: rgba(212, 168, 67, 0.15);
    --black: #111111;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --gray-900: #222222;
    --gray-800: #2a2a2a;
    --gray-700: #333333;
    --gray-600: #555555;
    --gray-400: #999999;
    --gray-300: #bbbbbb;
    --gray-200: #dddddd;
    --gray-100: #f0f0f0;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
    --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --logo-gold: #D4A843;
}

/* Logo Gold Fade Animation */
.logo-img.logo-animate-gold {
    position: relative;
    z-index: 2;
    animation: logoGoldFade 1.1s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 0 0 var(--logo-gold), 0 0 32px 8px var(--logo-gold);
}

@keyframes logoGoldFade {
    0% {
        filter: brightness(1) drop-shadow(0 0 0 var(--logo-gold));
        box-shadow: 0 0 0 0 var(--logo-gold);
    }
    25% {
        filter: brightness(1.7) sepia(1) hue-rotate(-20deg) saturate(2) drop-shadow(0 0 32px var(--logo-gold));
        box-shadow: 0 0 32px 8px var(--logo-gold);
    }
    75% {
        filter: brightness(1.7) sepia(1) hue-rotate(-20deg) saturate(2) drop-shadow(0 0 32px var(--logo-gold));
        box-shadow: 0 0 32px 8px var(--logo-gold);
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 0 var(--logo-gold));
        box-shadow: 0 0 0 0 var(--logo-gold);
    }
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

ul {
    list-style: none;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
    padding: 10px 24px;
    font-size: 0.85rem;
}
.btn-outline-light:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    transition: var(--transition);
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    z-index: 1001;
    transition: width 0.05s linear;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-img.logo-dark-bg {
    background-color: #fff;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-s {
    font-family: var(--font-display);
    font-size: 1.35em;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0;
    position: relative;
    top: 0.02em;
    margin-right: -1px;
}

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

.nav-links a {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

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

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 12px;
    flex-shrink: 0;
    z-index: 1001;
}

.lang-toggle:hover {
    background: var(--gold);
    color: var(--black);
}

.lang-toggle.lang-en {
    background: var(--gold);
    color: var(--black);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    background: var(--darker);
    color: var(--white);
    overflow: hidden;
}

.hero-lighthouse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 340px;
    max-width: 40vw;
    height: auto;
    z-index: 1;
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.18));
}

@media (max-width: 900px) {
    .hero-lighthouse {
        width: 180px;
        max-width: 55vw;
        opacity: 0.45;
    }
}

@media (max-width: 600px) {
    .hero-lighthouse {
        width: 110px;
        max-width: 70vw;
        opacity: 0.38;
        right: 2vw;
    }
}

/* Hero Background Image — fades in during cross hold */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/lighthouse-dove.jpeg') center 20% / cover no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}

@media (max-width: 768px) {
    .hero-bg-image {
        background-size: 250% auto;
        animation: heroPan 8s ease-in-out infinite alternate;
    }
}

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

.hero-bg-image.visible {
    opacity: 0.5;
}

/* Flowing Canvas Background */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Flowing Orbs — layered animated gradient blobs */
.hero-flowing-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.6;
}

.flowing-orb {
    position: absolute;
    border-radius: 50%;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.5) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 197, 103, 0.4) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 145, 46, 0.35) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 10s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation: orbFloat4 18s ease-in-out infinite;
}

.orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 100, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation: orbFloat5 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, 60px) scale(1.15); }
    50% { transform: translate(40px, 120px) scale(0.95); }
    75% { transform: translate(-30px, 50px) scale(1.1); }
}

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

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-40%, -60%) scale(1.2); }
    66% { transform: translate(-60%, -40%) scale(0.85); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-50px, 80px) scale(1.15) rotate(180deg); }
}

@keyframes orbFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(60px, -40px) scale(1.1); }
    60% { transform: translate(30px, 50px) scale(0.95); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.2) 0%, rgba(13, 13, 13, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 24px 60px;
    max-width: 800px;
    margin-top: auto;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: 8px;
}

.hero-title .title-s {
    font-family: var(--font-display);
    font-size: 2.3em;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0;
    position: relative;
    top: 0.14em;
    margin-right: -4px;
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.hero-subtitle-afr {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--gray-300);
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-service-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* === SECTION COMMON === */
.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
}


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

.section-label {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gold-glow);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

.pastors-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.pastor-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pastor-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.pastor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pastor-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pastor-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}
.pastor-info span {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* === IN THE NEWS === */
.news-feature-section {
    background: var(--light);
}

.news-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

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

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

.news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.news-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-card-body blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-700);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-cta {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.news-card:hover .news-cta {
    color: var(--gold-dark);
}

.news-card + .news-card {
    margin-top: 40px;
}

.news-card-static {
    cursor: default;
}

.news-card-static:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.news-card-static:hover .news-card-image img {
    transform: none;
}

.news-excerpt-italic {
    font-style: italic;
    color: var(--gold-dark) !important;
}

.news-magazine-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.news-magazine-note i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.news-card-static .news-cta {
    display: inline-block;
}

.news-card-static .news-cta:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .news-card {
        grid-template-columns: 1fr;
    }
    .news-card-image {
        min-height: 200px;
    }
    .news-card-body {
        padding: 28px 24px;
    }
    .news-card-body h3 {
        font-size: 1.25rem;
    }
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--white);
}

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

.service-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 67, 0.2);
    background: var(--white);
}

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

.service-card.featured {
    background: var(--dark);
    color: var(--white);
    border-color: rgba(212, 168, 67, 0.3);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-card.featured .service-desc {
    color: var(--gray-400);
}

.service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gold-glow);
    color: var(--gold);
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.service-card.featured .service-icon {
    background: rgba(212, 168, 67, 0.2);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card.featured .service-time {
    color: var(--gold-light);
}

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

.service-groups {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.service-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.service-group i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.service-card.featured .service-group {
    color: var(--gray-400);
}

/* === SERMONS / SILOAM TV === */
.sermons-section {
    background: var(--gray-100);
}

.sermons-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    background: var(--dark);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yt-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}
.yt-card:hover {
    color: var(--gold);
}
.yt-card i {
    font-size: 3rem;
    color: var(--gold);
    transition: var(--transition);
    animation: pulse 1.5s ease-in-out infinite;
}
.yt-card:hover i {
    transform: scale(1.1);
}
.yt-card span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.sermons-cta p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* === PODCAST === */
.podcast-section {
    background: var(--gray-100);
}

.podcast-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === TURKEY TOUR === */
.turkey-tour-section {
    background: var(--gray-100);
}

.turkey-tour-card {
    display: flex;
    flex-direction: column;
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.turkey-tour-image {
    position: relative;
    overflow: hidden;
}

.turkey-tour-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.turkey-tour-card:hover .turkey-tour-image img {
    transform: scale(1.03);
}

.turkey-tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.turkey-tour-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.turkey-tour-body p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.turkey-tour-lead {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: var(--black) !important;
}

.turkey-tour-cta-text {
    font-size: 1.05rem !important;
    color: var(--gold-dark) !important;
    margin-top: 8px;
}

.turkey-tour-contact {
    margin-top: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.turkey-tour-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 10px;
}

.turkey-tour-contact ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.turkey-tour-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.turkey-tour-contact li i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.turkey-tour-contact a {
    color: var(--gray-700);
    font-weight: 500;
}

.turkey-tour-contact a:hover {
    color: var(--gold);
}

.turkey-tour-outreach {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 16px 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: var(--gray-100);
    border: 2px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.turkey-tour-outreach:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--gold-dark);
}

.wb-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.turkey-tour-outreach span {
    flex: 1;
}

.turkey-tour-outreach i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: var(--transition);
}

.turkey-tour-outreach:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .turkey-tour-body {
        padding: 28px 24px;
    }
}

/* === EVENTS === */
.events-section {
    background: var(--white);
}

/* === EVENTS CAROUSEL === */
.events-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    -webkit-user-drag: none;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 168, 67, 0.3);
}

.carousel-btn:hover {
    background: rgba(212, 168, 67, 0.85);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    touch-action: manipulation;
    z-index: 10;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.events-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}

/* === GALLERY === */
.gallery-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-facebook {
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gallery-facebook:hover {
    transform: translateY(-4px);
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.gallery-fb-content i,
.gallery-fb-content span {
    color: var(--black);
}

.gallery-fb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
}

.gallery-fb-content i {
    font-size: 2.5rem;
    color: var(--white);
}

.gallery-fb-content span {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    color: var(--gold);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* === GIVE SECTION === */
.give-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.give-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(212, 168, 67, 0.08), transparent 70%);
}

.section-header.light .section-label {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold-light);
}

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

.section-header.light .section-subtitle {
    color: var(--gray-400);
}

.give-content {
    position: relative;
    z-index: 1;
}

.give-verse {
    text-align: center;
    margin-bottom: 50px;
}

.give-verse blockquote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 12px;
}

.give-verse cite {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.give-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.give-card {
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.give-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212, 168, 67, 0.4);
    transform: translateY(-3px);
}

.give-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.give-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.give-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bank-details-label {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px !important;
    opacity: 0.7;
}

.bank-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.bank-details li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    font-size: 0.95rem;
}

.bank-details li:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.bank-value {
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.give-card {
    text-align: center;
}

.give-card > h3,
.give-card > i,
.give-card > .well-icon,
.give-card > .sars-logo {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.give-card-sars {
    border: 1px solid rgba(26, 58, 110, 0.4);
}

.sars-logo {
    margin-top: 16px;
    margin-bottom: 0;
}

.sars-logo-top {
    margin-top: 0;
    margin-bottom: 12px;
}

.give-card-sars h3 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.give-card-sars p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 1rem;
}

.give-card-sars p strong {
    color: var(--white);
}

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

.give-card > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
}

.give-card > p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.well-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.well-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.well-list li::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    left: 4px;
    top: 0;
}

.well-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 8px;
    margin-top: 8px;
}

.well-address i {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.well-address span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === CONTACT === */
.contact-section {
    background: var(--gray-100);
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    color: var(--gold);
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold-dark);
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--gold);
}

.contact-detail {
    font-size: 0.82rem !important;
    color: var(--gray-500) !important;
    margin-top: 2px;
}

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

/* === FOOTER === */
.footer {
    background: var(--darker);
    color: var(--gray-400);
    padding: 60px 0 0;
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.footer-s {
    font-family: var(--font-display);
    font-size: 1.35em;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 8px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ============================================================
   ANIMATIONS (Scroll Reveal)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

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

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 16px;
        color: var(--white);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .give-methods {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 70px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-service-banner {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .carousel-dots {
        gap: 8px;
        padding: 12px 0;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}
