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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #f5f3ff;
}

/* ===== Icon Styling ===== */
.service-icon,
.feature-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::before,
.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon::before,
.feature-item:hover .feature-icon::before {
    left: 100%;
}

.service-card:hover .service-icon,
.feature-item:hover .feature-icon {
    transform: translateY(-10px) rotateZ(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.service-icon i,
.feature-icon i {
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Event Icons */
.event-time i,
.event-location i {
    color: #6366f1;
    margin-right: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.event-card:hover .event-time i,
.event-card:hover .event-location i {
    transform: scale(1.15);
    color: #4f46e5;
}

/* Contact Icons */
.info-item h3 i {
    color: #6366f1;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.info-item:hover h3 i {
    transform: scale(1.2) rotate(10deg);
    color: #4f46e5;
}

/* ===== Navigation ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: #6366f1;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-brand span {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #6366f1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION — SEVEN HILLS STYLE REDESIGN
   ═══════════════════════════════════════════════════════════════ */

/* ── Base / Fullscreen Frame ── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background-color: #050505;
}

/* ── Slideshow Background ── */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.05);
    animation: heroZoomSlow 24s linear infinite;
}

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

@keyframes heroZoomSlow {
    0% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* ── Inner Content Layout ── */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    /* Wide container */
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left aligned like Seven Hills */
    height: 100vh;
}

/* ── Massive Headline ── */
.hero-headline {
    font-family: 'Poppins', sans-serif;
    /* Use Poppins or similar heavy sans-serif */
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.hero-hl-line {
    display: block;
    font-size: clamp(3.5rem, 9vw, 9rem);
    /* Massive responsive text */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-hl-1 {
    animation-delay: 0.2s;
}

.hero-hl-2 {
    animation-delay: 0.4s;
    color: #fff;
}

/* Keep it white/stark */


/* ── Cycling "A Church For: ..." Row ── */
.hero-for-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
    line-height: 1.2;
}

.hero-for-label {
    /* color: #a78bfa; Accent color for "A Church For" */
    color: #fff;
    opacity: 0.7;
}

.hero-for-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.hero-for-word {
    color: #fff;
    border-bottom: 3px solid #6366f1;
    /* Underline accent */
    padding-bottom: 2px;
    min-width: 200px;
    /* Prevent layout jump */
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
}

/* ── Address Line ── */
.hero-address {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-address i {
    color: #6366f1;
}

/* ── CTA Buttons ── */
.hero-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn-sh-primary {
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 42px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    /* Slight rounded corners, mostly square */
    transition: all 0.3s ease;
}

.btn-sh-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-sh-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sh-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Scroll Cue ── */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    z-index: 5;
}

.hero-scroll:hover {
    color: #fff;
}

.hero-scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 2px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 0 30px;
        align-items: center;
        /* Center on tablets */
        text-align: center;
    }

    .hero-hl-line {
        font-size: clamp(3.5rem, 11vw, 7rem);
    }

    .hero-for-row {
        justify-content: center;
    }

    .hero-address {
        justify-content: center;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
    .hero-inner {
        padding: 0 20px;
        /* Add padding top to account for nav bar if fixed */
        padding-top: 60px;
    }

    .hero-bg {
        filter: brightness(0.7);
        /* Darker on mobile for text readability */
    }

    .hero-headline {
        margin-bottom: 20px;
    }

    .hero-hl-line {
        line-height: 1;
    }

    .hero-for-row {
        flex-direction: column;
        gap: 5px;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .hero-for-divider {
        display: none;
    }

    .hero-for-word {
        min-width: unset;
        border-bottom-width: 2px;
    }

    .hero-address {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-sh-primary,
    .btn-sh-ghost {
        width: 100%;
        padding: 15px;
        text-align: center;
        font-size: 0.9rem;
    }

    .hero-scroll {
        display: none;
        /* Hide scroll cue on mobile to save space */
    }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .hero-hl-line {
        font-size: 14vw;
        /* Really fill the width */
    }
}



/* ===== About Section ===== */
.about {
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 35%, #f0eeff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    opacity: 0.9;
}

.about-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 12px;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1f2937;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #4b5563;
}

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

.about .about-image {
    position: relative;
}

.about .about-image .image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.08);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-item {
    background: white;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.25);
}

.feature-item .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 0;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.feature-item h3 {
    color: #1f2937;
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Image Styling ===== */
.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    background: #f0f0f0;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-container:hover .responsive-image {
    transform: scale(1.05);
}

.service-image-mini {
    width: 100%;
    height: 120px;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
}

.service-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-img-thumb {
    opacity: 1;
}

/* ===== Gallery Styles ===== */
.gallery {
    padding: 80px 20px;
    background: #f8f7ff;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: white;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

@media (max-width: 480px) {
    .gallery-item img {
        height: 140px;
    }
}

/* ===== Prophet Section Styles ===== */
.prophet-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
}

.prophet-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.prophet-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prophet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.prophet-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prophet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
}

.prophet-image {
    width: 100%;
    overflow: hidden;
}

.prophet-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
    .prophet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prophet-section h2 {
        font-size: 1.8rem;
    }

    .prophet-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Lazy-loading blur-up effect */
img.lazy {
    filter: blur(12px);
    transform: scale(1.02);
}

img.lazy.loaded {
    filter: blur(0);
    transform: scale(1);
    transition: filter 360ms ease, transform 360ms ease;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
}

.placeholder-image {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    gap: 15px;
}

.placeholder-image i {
    font-size: 3.5rem;
    opacity: 0.9;
}

.placeholder-image p {
    margin: 0;
    font-size: 1rem;
}

/* Image Fallback Handling */
.responsive-image:not([src]) {
    visibility: hidden;
}

.image-container .responsive-image[alt] {
    background-color: #f0f0f0;
    color: #ccc;
}

/* Web Font Loading Fallback */
@supports (--css: variables) {
    .responsive-image {
        content-visibility: auto;
    }
}

/* ===== Services Section ===== */
.services {
    padding: 80px 20px;
    background: white;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f7ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.service-card:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    transform: translateY(-15px);
    background: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-time {
    color: #6366f1;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1rem;
}

/* ===== Events Section ===== */
.events {
    padding: 80px 20px;
    background: #f8f7ff;
}

.events h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.events-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.event-date {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    min-width: 100px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.event-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

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

.date-day {
    font-size: 1.75rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.date-month {
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.event-details {
    padding: 25px;
    flex: 1;
}

.event-details h3 {
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-time,
.event-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.event-details p:last-child {
    color: #888;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* ===== Giving Section ===== */
.giving {
    padding: 80px 20px;
    background: white;
}

.giving-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.giving-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.giving-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.giving-method {
    background: #f8f7ff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.giving-method:hover {
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    transform: translateY(-10px);
}

.giving-method h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.giving-method p {
    color: #666;
    margin-bottom: 20px;
}

.giving-detail {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.giving-detail p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.giving-info {
    color: #6366f1;
    font-weight: 600;
    word-break: break-all;
}

.testimonies-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimony-card {
    background: #f8f7ff;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #6366f1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.testimony-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimony-author {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 20px;
    background: #f8f7ff;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.08), transparent);
    transition: left 0.6s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-left-color: #6366f1;
}

.info-item:hover::before {
    left: 100%;
}

.info-item h3 {
    color: #6366f1;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.info-item p {
    color: #666;
    line-height: 1.8;
    position: relative;
}

.info-item p a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.info-item p a:hover {
    text-decoration: underline;
    color: #4f46e5;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #6366f1;
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input button {
    background: #6366f1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-input button:hover {
    background: #4f46e5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #6366f1;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-time {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-header {
        margin-bottom: 36px;
    }

    .about-intro {
        font-size: 1.05rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-item .feature-icon {
        margin-bottom: 0;
    }

    .services h2,
    .about h2,
    .events h2,
    .contact h2,
    .giving-content h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .events-list,
    .testimonies-container {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: row;
    }

    .event-date {
        min-width: 80px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        text-align: center;
    }

    .giving-methods,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-input {
        flex-direction: column;
    }

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