/* ===== CSS Variables ===== */
:root {
    --gold: #D9A441;
    --gold-light: #F0C975;
    --gold-dark: #B8872E;
    --orange: #FF6A00;
    --red: #E62100;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --dark: #111827;
    --dark-overlay: rgba(17, 24, 39, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 25px -5px rgba(217, 164, 65, 0.3);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

section {
    position: relative;
    overflow: hidden;
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--dark), #2d1810);
}

/* ===== Navigation ===== */
#mainNav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(217, 164, 65, 0.2);
    border-bottom: 2px solid rgba(217, 164, 65, 0.3);
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(217, 164, 65, 0.3);
}

.navbar-brand .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D9A441' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), #2d1810);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(217, 164, 65, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);
    z-index: 1;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.4);
}

.slider-control.prev {
    left: 40px;
}

.slider-control.next {
    right: 40px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.flame-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    animation: flamePulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes flamePulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo .logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    box-shadow: 0 0 50px rgba(217, 164, 65, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50px;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===== Animation Classes ===== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Buttons ===== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(217, 164, 65, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(217, 164, 65, 0.6);
    color: var(--white);
}

.btn-flame {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(255, 106, 0, 0.4);
}

.btn-flame:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(255, 106, 0, 0.6);
    color: var(--white);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.2);
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.title-underline {
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin-bottom: 3rem;
    border-radius: 3px;
}

.title-underline.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Glassmorphism Cards ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

/* ===== Service Times ===== */
.service-times {
    background: var(--dark);
    position: relative;
    padding: 8rem 0;
}

.service-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(217, 164, 65, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 106, 0, 0.15) 0%, transparent 40%);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(217, 164, 65, 0.3);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-time {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(217, 164, 65, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(217, 164, 65, 0.2);
}

.service-card p:last-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== Values Section ===== */
.values-section {
    background: var(--light-gray);
}

.value-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* ===== Latest Sermon ===== */
.latest-sermon {
    background: var(--white);
}

.sermon-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sermon-meta {
    color: #666;
    margin-bottom: 1rem;
}

.sermon-meta i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 1;
}

.video-container:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.video-container img {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
}

.video-container:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 40px rgba(217, 164, 65, 0.8);
}

.play-button i {
    margin-left: 5px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--orange), var(--red));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L90 90 L10 90 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.4);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-list i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom i.fa-heart {
    color: var(--red);
}

/* ===== Page Header ===== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dark overlay with gradient */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(45, 24, 16, 0.75));
    z-index: 1;
}

/* Decorative pattern overlay */
/* .page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(217, 164, 65, 0.01) 35px, rgba(217, 164, 65, 0.01) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 106, 0, 0.01) 35px, rgba(255, 106, 0, 0.01) 70px);
    z-index: 1;
} */

.page-header-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    margin-top: 100px;
}

/* Decorative line above title */
.page-header-content::before {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 0 auto 1.5rem;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Breadcrumb navigation */
.breadcrumb-nav {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav .current {
    color: var(--gold);
}

/* Floating decorative elements */
.page-header .floating-icon {
    position: absolute;
    color: rgba(217, 164, 65, 0.1);
    font-size: 8rem;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.page-header .floating-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.page-header .floating-icon-2 {
    bottom: 15%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Page-specific backgrounds */
.page-hero.about-hero {
    background-image: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.ministries-hero {
    background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.events-hero {
    background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.sermons-hero {
    background-image: url('https://res.cloudinary.com/memorystreams/image/upload/v1762807064/rsz_qfc_1705_muunqi.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero.giving-hero {
    background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.branches-hero {
    background-image: url('https://images.unsplash.com/photo-1519491050282-cf00c82424b4?w=1600');
    background-size: cover;
    background-position: center;
}

.page-hero.lmm-hero {
    background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1600');
    background-size: cover;
    background-position: center;
}

/* ===== LMM Page Styles ===== */
.lmm-quote {
    background: rgba(217, 164, 65, 0.1);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.lmm-quote i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.lmm-quote p {
    margin: 0;
    padding-left: 3rem;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

.outreach-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.outreach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.outreach-image {
    background-size: cover;
    background-position: center;
    min-height: 250px;
    position: relative;
}

.outreach-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.3), rgba(255, 106, 0, 0.3));
}

.outreach-content {
    padding: 2rem;
}

.outreach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.outreach-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.outreach-content h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.outreach-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.outreach-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

.outreach-list i {
    margin-right: 0.5rem;
}

.impact-stat {
    padding: 2rem;
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-10px);
}

.impact-stat i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.impact-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.testimonial-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(217, 164, 65, 0.2);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== Branch Cards ===== */
.branch-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(217, 164, 65, 0.4);
}

.branch-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.8), rgba(255, 106, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.branch-card:hover .branch-overlay {
    opacity: 1;
}

.branch-overlay i {
    font-size: 4rem;
    color: var(--white);
}

.branch-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.branch-card-content h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.branch-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.branch-info i {
    flex-shrink: 0;
    margin-top: 2px;
}

.service-times-compact {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(217, 164, 65, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
}

.service-times-compact strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.service-times-compact p {
    color: #666;
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.detail-item div {
    flex: 1;
}

.bg-gold {
    background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
}

/* Coming Soon Cards */
.coming-soon-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.coming-soon-card i {
    font-size: 3rem;
    color: var(--gold);
}

.coming-soon-card h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-logo .logo-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-header {
        min-height: 40vh;
        background-attachment: scroll;
    }

    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .page-header .floating-icon {
        font-size: 5rem;
    }

    .breadcrumb-nav {
        top: 100px;
        font-size: 0.8rem;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }

    .slider-indicators {
        bottom: 80px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .indicator.active {
        width: 30px;
    }
}

/* ===== Parallax Effect ===== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Card Styles ===== */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.card-custom img {
    transition: transform 0.3s ease;
}

.card-custom:hover img {
    transform: scale(1.1);
}

/* ===== Form Styles ===== */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(217, 164, 65, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

/* ===== Ministry Cards ===== */
.ministry-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.ministry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.ministry-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.ministry-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ===== Event Card ===== */
.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(217, 164, 65, 0.4);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.badge-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.event-meta {
    margin-bottom: 1rem;
}

.event-meta p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--gold);
    margin-right: 0.5rem;
    width: 16px;
}

.event-content>p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Legacy event card styles (for events page) */
.event-date {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-details {
    padding: 1.5rem;
}

.event-details h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ===== Sermon Card ===== */
.sermon-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.sermon-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.sermon-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.1);
}

.sermon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.sermon-info {
    padding: 1.5rem;
}

.sermon-info h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.sermon-info .meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== Leadership Card ===== */
.leadership-card {
    text-align: center;
    margin-bottom: 2rem;
}

.leader-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--gold);
    box-shadow: 0 5px 20px var(--shadow);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-card h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.leadership-card .position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Giving Section ===== */
.scripture-highlight {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.scripture-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.scripture-highlight p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.scripture-reference {
    font-weight: 600;
    font-size: 1rem;
}

.giving-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.giving-method {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.giving-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.3);
}

.giving-method i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ===== Map Container ===== */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Contact Info Card ===== */
.contact-info-card {
    background: linear-gradient(135deg, var(--dark), #2d1810);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-info-item h5 {
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

/* ===== New Design System Additions ===== */

.letter-spacing-2 {
    letter-spacing: 2px;
}

.hover-gold:hover {
    color: var(--gold) !important;
    padding-left: 5px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.3);
    border-color: var(--gold);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    padding: 1.5rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.4);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Backdrop */
.image-backdrop {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 20px;
    opacity: 0.1;
    z-index: 1;
}

/* Event Overlay */
.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 0.6;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Event Date Badge Update */
.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.badge-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.badge-month {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
}