:root {
    /* ECF GREEN PALETTE — based on the supplied logo */
    --ecf-green: #789018;
    --ecf-green-dark: #52680f;
    --ecf-green-deep: #26330b;
    --ecf-green-deeper: #101704;
    --ecf-green-soft: #9eb43a;
    --ecf-green-light: #c5d86b;

    --white: #ffffff;
    --white-soft: rgba(255,255,255,.86);
    --black: #090d05;

    --display: "Cormorant Garamond", Georgia, serif;
    --body: "DM Sans", Arial, sans-serif;

    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);

    background: rgba(13, 19, 5, .20);
    border-bottom: 1px solid rgba(197,216,107,.13);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        height .3s ease;
}

.site-header.scrolled {
    height: 76px;
    background: rgba(16, 23, 4, .96);
    border-bottom-color: rgba(120,144,24,.42);
    box-shadow: 0 10px 35px rgba(0,0,0,.30);
}

.header-inner {
    width: min(1480px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.ecf-logo {
    width: 174px;
    height: auto;
    display: block;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
    height: 100%;

    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav > a,
.dropdown-toggle {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    height: 100%;
    padding: 0 12px;

    border: 0;
    background: transparent;

    color: rgba(255,255,255,.90);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;

    cursor: pointer;
    transition: color .2s ease;
}

.main-nav > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;

    height: 3px;
    border-radius: 3px 3px 0 0;

    background: var(--ecf-green-soft);

    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.main-nav > a:hover,
.dropdown-toggle:hover {
    color: var(--ecf-green-light);
}

.main-nav > a:hover::after,
.dropdown-toggle:hover::after {
    transform: scaleX(1);
}

.chevron {
    color: var(--ecf-green-light);
    font-size: 15px;
    line-height: 1;
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;

    min-width: 245px;
    padding: 9px;

    background: rgba(16,23,4,.98);
    border: 1px solid rgba(120,144,24,.48);
    border-top: 3px solid var(--ecf-green);

    border-radius: 0 0 9px 9px;

    box-shadow: 0 20px 50px rgba(0,0,0,.42);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;

    color: rgba(255,255,255,.82);
    border-radius: 5px;

    font-size: 12px;
    line-height: 1.45;

    transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.dropdown-menu a:hover {
    background: rgba(120,144,24,.18);
    color: var(--ecf-green-light);
    padding-left: 17px;
}

.ministries-menu {
    min-width: 310px;
}

.nav-cta {
    margin-left: 10px !important;
    height: auto !important;
    padding: 11px 17px !important;

    border: 1px solid rgba(158,180,58,.75) !important;
    border-radius: 3px;

    color: #fff !important;
    background: rgba(120,144,24,.10);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--ecf-green) !important;
    border-color: var(--ecf-green) !important;
    color: #fff !important;
}

.nav-cta span {
    color: var(--ecf-green-light);
}

.nav-cta:hover span {
    color: #fff;
}

.menu-toggle {
    display: none;
    margin-left: auto;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(158,180,58,.45);
    border-radius: 5px;

    background: rgba(120,144,24,.10);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;

    background: var(--ecf-green-light);
    border-radius: 2px;
}

/* ==============================
   HERO
============================== */

.hero {
    position: relative;
    min-height: 100svh;
    height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;
    background: var(--ecf-green-deeper);
}

.hero-media,
.hero-video,
.hero-fallback {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
    object-position: center;

    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.is-active {
    opacity: 1;
}

.hero-fallback {
    z-index: -1;

    background-image: url("../images/hero-fallback.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,17,4,.90) 0%,
            rgba(19,29,7,.73) 35%,
            rgba(26,37,8,.34) 68%,
            rgba(10,16,4,.42) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8,14,3,.72) 0%,
            transparent 35%,
            rgba(8,13,3,.34) 100%
        );
}

.hero-green-glow {
    position: absolute;

    width: 55vw;
    height: 55vw;

    right: -22vw;
    top: 8%;

    border-radius: 50%;

    background: rgba(120,144,24,.18);
    filter: blur(90px);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;

    padding-top: var(--header-height);
}

.hero-copy {
    width: min(720px, 65vw);
}

.hero-eyebrow {
    margin: 0 0 18px;

    color: var(--ecf-green-light);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(64px, 7.5vw, 116px);
    font-weight: 600;
    line-height: .82;
    letter-spacing: -.025em;
}

.hero h1 span {
    color: var(--ecf-green-light);
    font-style: italic;
    font-weight: 500;
}

.hero-text {
    width: min(610px, 100%);
    margin: 30px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 34px;
}

.hero-btn {
    min-height: 49px;
    padding: 13px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 2px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.hero-btn span {
    font-size: 17px;
}

.hero-btn-primary {
    color: #fff;
    background: var(--ecf-green);
    border: 1px solid var(--ecf-green);
    box-shadow: 0 10px 30px rgba(120,144,24,.25);
}

.hero-btn-primary:hover {
    color: #fff;
    background: var(--ecf-green-soft);
    border-color: var(--ecf-green-soft);
    transform: translateY(-2px);
}

.hero-btn-outline {
    color: #fff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(197,216,107,.48);
}

.hero-btn-outline:hover {
    color: #fff;
    background: rgba(120,144,24,.24);
    border-color: var(--ecf-green-soft);
    transform: translateY(-2px);
}

.hero-bottom {
    position: absolute;
    z-index: 6;

    left: 0;
    right: 0;
    bottom: 32px;

    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-location {
    color: rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.location-dot {
    display: inline-block;

    width: 7px;
    height: 7px;
    margin-right: 9px;

    border-radius: 50%;
    background: var(--ecf-green-soft);
    box-shadow: 0 0 12px rgba(158,180,58,.8);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.40);
    cursor: pointer;

    transition: width .25s ease, background .25s ease;
}

.slide-dot:hover {
    background: var(--ecf-green-light);
}

.slide-dot.is-active {
    width: 27px;
    border-radius: 6px;
    background: var(--ecf-green-soft);
}

.pause-slide {
    width: 29px;
    height: 29px;
    margin-left: 8px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(158,180,58,.45);
    border-radius: 50%;

    color: var(--ecf-green-light);
    background: rgba(0,0,0,.16);

    font-size: 9px;
    cursor: pointer;

    transition: background .2s ease, border-color .2s ease;
}

.pause-slide:hover {
    background: rgba(120,144,24,.24);
    border-color: var(--ecf-green-soft);
}

.scroll-cue {
    position: absolute;
    z-index: 6;

    right: 28px;
    bottom: 32%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.62);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-cue i {
    display: block;

    width: 1px;
    height: 54px;

    background: linear-gradient(
        to bottom,
        var(--ecf-green-light),
        transparent
    );
}

.hero-after {
    height: 1px;
    background: var(--ecf-green-deep);
}

/* ==============================
   FOOTER
============================== */

.site-footer {
    background: var(--ecf-green-deeper);
    color: rgba(255,255,255,.70);

    border-top: 1px solid rgba(120,144,24,.30);
}

.footer-inner {
    width: min(1480px, calc(100% - 64px));
    min-height: 145px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-logo {
    width: 155px;
}

.footer-links {
    margin-left: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 22px;
}

.footer-links a {
    font-size: 11px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--ecf-green-light);
}

.footer-social {
    display: flex;
    gap: 7px;
}

.footer-social a {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(120,144,24,.48);
    border-radius: 50%;

    color: var(--ecf-green-light);
    font-size: 10px;
    font-weight: 700;

    transition: background .2s ease, color .2s ease;
}

.footer-social a:hover {
    background: var(--ecf-green);
    color: #fff;
}

.footer-bottom {
    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(120,144,24,.18);

    color: rgba(255,255,255,.42);

    font-size: 9px;
    letter-spacing: .04em;
}

/* ==============================
   TABLET
============================== */

@media (max-width: 1180px) {
    .header-inner,
    .hero-content,
    .hero-bottom,
    .footer-inner,
    .footer-bottom {
        width: calc(100% - 40px);
    }

    .ecf-logo {
        width: 150px;
    }

    .main-nav > a,
    .dropdown-toggle {
        padding-inline: 8px;
        font-size: 11px;
    }

    .nav-cta {
        display: none !important;
    }

    .hero-copy {
        width: min(720px, 72vw);
    }
}

/* ==============================
   MOBILE / TABLET NAV
============================== */

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .site-header.scrolled {
        height: 70px;
    }

    .header-inner {
        width: calc(100% - 30px);
    }

    .ecf-logo {
        width: 143px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 8px);
        left: 15px;
        right: 15px;

        height: auto;
        max-height: calc(100svh - 95px);

        overflow-y: auto;

        padding: 10px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        background: rgba(16,23,4,.985);
        border: 1px solid rgba(120,144,24,.40);
        border-top: 3px solid var(--ecf-green);

        border-radius: 8px;

        box-shadow: 0 25px 60px rgba(0,0,0,.45);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a,
    .dropdown-toggle {
        width: 100%;
        height: auto;
        min-height: 46px;

        justify-content: space-between;

        padding: 12px 13px;

        font-size: 13px;
        text-align: left;
    }

    .main-nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        height: auto;
        display: block;
    }

    .dropdown-menu {
        position: static;

        display: none;

        min-width: 0;
        width: auto;

        margin: 0 7px 7px;
        padding: 4px;

        opacity: 1;
        visibility: visible;
        transform: none;

        border-top: 1px solid rgba(120,144,24,.35);
        border-radius: 5px;

        background: rgba(120,144,24,.07);
        box-shadow: none;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 11px;
        font-size: 12px;
    }

    .ministries-menu {
        min-width: 0;
    }

    .hero-content {
        padding-top: 65px;
    }

    .hero-copy {
        width: min(720px, 90vw);
    }

    .hero h1 {
        font-size: clamp(58px, 10vw, 88px);
    }

    .hero-text {
        font-size: 14px;
    }

    .scroll-cue {
        display: none;
    }

    .footer-inner {
        min-height: auto;
        padding: 40px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        margin-left: 0;
        justify-content: flex-start;
    }
}

/* ==============================
   PHONE
============================== */

@media (max-width: 600px) {
    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,14,3,.91) 0%,
                rgba(16,24,5,.70) 70%,
                rgba(10,16,4,.50) 100%
            ),
            linear-gradient(
                0deg,
                rgba(8,14,3,.82) 0%,
                transparent 45%
            );
    }

    .header-inner,
    .hero-content,
    .hero-bottom,
    .footer-inner,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    .ecf-logo {
        width: 130px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-eyebrow {
        max-width: 330px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .hero h1 {
        font-size: clamp(54px, 17vw, 76px);
        line-height: .86;
    }

    .hero-text {
        max-width: 410px;
        margin-top: 24px;

        font-size: 13px;
        line-height: 1.7;
    }

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

        width: min(100%, 330px);
        margin-top: 27px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-bottom {
        bottom: 22px;
    }

    .hero-location {
        display: none;
    }

    .slider-controls {
        margin-left: auto;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .footer-bottom {
        min-height: auto;
        padding: 16px 0;

        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==============================
   VERY SMALL PHONES
============================== */

@media (max-width: 380px) {
    .ecf-logo {
        width: 118px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .hero-text {
        font-size: 12px;
    }
}

/* ==============================
   LARGE DESKTOP / TV
============================== */

@media (min-width: 1800px) {
    :root {
        --header-height: 104px;
    }

    .header-inner,
    .hero-content,
    .hero-bottom,
    .footer-inner,
    .footer-bottom {
        width: min(1750px, calc(100% - 100px));
    }

    .ecf-logo {
        width: 205px;
    }

    .main-nav > a,
    .dropdown-toggle {
        padding-inline: 15px;
        font-size: 15px;
    }

    .hero h1 {
        font-size: clamp(90px, 7vw, 140px);
    }

    .hero-text {
        font-size: 18px;
        max-width: 700px;
    }

    .hero-eyebrow {
        font-size: 13px;
    }
}

@media (min-width: 3000px) {
    .ecf-logo {
        width: 245px;
    }

    .main-nav > a,
    .dropdown-toggle {
        font-size: 18px;
    }

    .hero-text {
        font-size: 22px;
    }
}

/* ==============================
   ACCESSIBILITY
============================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

/* =========================================================
   ECF ABOUT US SECTION
========================================================= */

.ecf-about-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: #f8f8f4;
    color: #202020;
}

/* Subtle background texture */
.ecf-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;

    background-image:
        radial-gradient(
            circle at 15% 25%,
            rgba(120, 144, 24, 0.08) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(120, 144, 24, 0.06) 1px,
            transparent 1px
        );

    background-size: 32px 32px, 45px 45px;
}


/* CONTAINER */

.ecf-about-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 80px;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.ecf-about-content {
    max-width: 600px;
}


/* Section label */

.ecf-section-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;
}

.ecf-section-label span {
    display: block;

    width: 60px;
    height: 1px;

    background: #789018;
}

.ecf-section-label p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #789018;
}


/* Heading */

.ecf-about-content h2 {
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5vw, 70px);
    line-height: 0.98;

    font-weight: 700;

    color: #202020;

    letter-spacing: -1px;
}


/* Description */

.ecf-about-description {
    max-width: 570px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 17px;
    line-height: 1.75;

    color: #555;
}


/* Bottom area */

.ecf-about-bottom {
    display: flex;
    align-items: center;

    gap: 45px;

    margin-top: 45px;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.ecf-about-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 175px;
    height: 52px;

    padding: 0 25px;

    background: #789018;
    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;

    overflow: hidden;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.ecf-about-button::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0;

    background: #52680f;

    transition: height 0.35s ease;

    z-index: 0;
}

.ecf-about-button span,
.ecf-about-button {
    isolation: isolate;
}

.ecf-about-button span {
    position: relative;
    z-index: 2;

    font-size: 18px;

    transition: transform 0.3s ease;
}

.ecf-about-button:hover::before {
    height: 100%;
}

.ecf-about-button:hover {
    transform: translateY(-3px);
}

.ecf-about-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   NEED HELP
========================================================= */

.ecf-help {
    display: flex;
    align-items: center;

    gap: 15px;
}

.ecf-help-icon {
    width: 55px;
    height: 55px;

    border: 1px solid #d6d6d6;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #789018;

    font-size: 19px;
}

.ecf-help-text {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.ecf-help-text > span {
    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #777;
}

.ecf-help-text strong {
    font-family: "DM Sans", sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: #222;
}

.ecf-help-text strong a {
    color: inherit;
    text-decoration: none;

    transition: color 0.3s ease;
}

.ecf-help-text strong a:hover {
    color: #789018;
}

.ecf-help-text small {
    font-size: 15px;
    font-weight: 400;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.ecf-about-visual {
    position: relative;

    min-height: 520px;
}


/* Images */

.ecf-about-image {
    position: absolute;

    overflow: hidden;

    background: #fff;

    border: 5px solid #fff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10);
}

.ecf-about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.ecf-about-image:hover img {
    transform: scale(1.06);
}


/* Main image */

.ecf-about-image-one {
    top: 0;
    left: 30px;

    width: 305px;
    height: 305px;

    z-index: 2;
}


/* Second image */

.ecf-about-image-two {
    right: 0;
    bottom: 0;

    width: 305px;
    height: 305px;

    z-index: 4;
}


/* =========================================================
   GREEN CHURCH ICON CARD
========================================================= */

.ecf-about-icon-card {
    position: absolute;

    width: 145px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #789018;

    color: #fff;

    z-index: 3;

    box-shadow:
        0 15px 35px rgba(70, 85, 15, 0.18);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.ecf-about-icon-card i {
    font-size: 38px;
}

.ecf-about-icon-card:hover {
    transform: translateY(-8px);
    background: #52680f;
}

.ecf-about-icon-top {
    top: 25px;
    right: 40px;
}


/* =========================================================
   ECF LOGO CARD
========================================================= */

.ecf-about-logo-card {
    position: absolute;

    left: 70px;
    bottom: 0;

    width: 145px;
    height: 145px;

    background: #fff;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    z-index: 5;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.4s ease;
}

.ecf-about-logo-card:hover {
    transform: translateY(-8px);
}

.ecf-about-logo-card i {
    margin-bottom: 12px;

    font-size: 34px;

    color: #789018;
}

.ecf-about-logo-card span {
    font-family: "DM Sans", sans-serif;

    font-size: 21px;
    font-weight: 800;

    color: #222;
}


/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

.ecf-reveal {
    opacity: 0;

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ecf-reveal-left {
    transform: translateX(-70px);
}

.ecf-reveal-right {
    transform: translateX(70px);
}

.ecf-reveal.ecf-show {
    opacity: 1;

    transform: translateX(0);
}


/* Individual visual elements */

.ecf-about-visual .ecf-about-image-one,
.ecf-about-visual .ecf-about-icon-top,
.ecf-about-visual .ecf-about-image-two,
.ecf-about-visual .ecf-about-logo-card {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ecf-about-visual.ecf-show .ecf-about-image-one {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.15s;
}

.ecf-about-visual.ecf-show .ecf-about-icon-top {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.35s;
}

.ecf-about-visual.ecf-show .ecf-about-image-two {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.5s;
}

.ecf-about-visual.ecf-show .ecf-about-logo-card {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.65s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-about-section {
        padding: 100px 0;
    }

    .ecf-about-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .ecf-about-content {
        max-width: 700px;
    }

    .ecf-about-visual {
        width: min(650px, 100%);
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-about-section {
        padding: 80px 0;
    }

    .ecf-about-container {
        width: min(100% - 35px, 520px);

        gap: 55px;
    }

    .ecf-about-content h2 {
        font-size: 44px;
        line-height: 1;
    }

    .ecf-about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .ecf-about-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 30px;
    }

    .ecf-about-visual {
        min-height: 440px;
    }

    .ecf-about-image-one {
        left: 0;

        width: 70%;
        height: 240px;
    }

    .ecf-about-image-two {
        right: 0;

        width: 70%;
        height: 240px;
    }

    .ecf-about-icon-card {
        width: 100px;
        height: 80px;

        right: 0;
        top: 15px;
    }

    .ecf-about-icon-card i {
        font-size: 27px;
    }

    .ecf-about-logo-card {
        left: 15%;
        bottom: 0;

        width: 105px;
        height: 105px;
    }

    .ecf-about-logo-card i {
        font-size: 25px;
        margin-bottom: 7px;
    }

    .ecf-about-logo-card span {
        font-size: 17px;
    }

    .ecf-reveal-left,
    .ecf-reveal-right {
        transform: translateY(45px);
    }

    .ecf-reveal.ecf-show {
        transform: translateY(0);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ecf-reveal,
    .ecf-about-image img,
    .ecf-about-button,
    .ecf-about-icon-card,
    .ecf-about-logo-card {
        transition: none !important;
    }
}

/* =========================================================
   ECF UPCOMING EVENTS
========================================================= */

.ecf-events-section {
    position: relative;

    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #eef1df 0%,
            #f7f8f1 45%,
            #e9edd7 100%
        );

    overflow: hidden;
}


/* Decorative background */

.ecf-events-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    right: -180px;

    border-radius: 50%;

    border: 1px solid rgba(120, 144, 24, 0.15);

    box-shadow:
        0 0 0 50px rgba(120, 144, 24, 0.025),
        0 0 0 100px rgba(120, 144, 24, 0.02);

    pointer-events: none;
}


.ecf-events-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -150px;
    left: -100px;

    border-radius: 50%;

    background: rgba(120, 144, 24, 0.05);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ecf-events-container {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.ecf-events-heading {
    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;
}


.ecf-events-heading .ecf-section-label {
    justify-content: center;

    margin-bottom: 20px;
}


.ecf-events-heading .ecf-section-label span {
    width: 45px;
}


.ecf-events-heading h2 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1;

    font-weight: 700;

    color: #202020;

    letter-spacing: -1px;
}


.ecf-events-heading > p {
    max-width: 570px;

    margin: 0 auto;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #666;
}


/* =========================================================
   EVENTS GRID
========================================================= */

.ecf-events-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   EVENT CARD
========================================================= */

.ecf-event-card {
    position: relative;

    background: #fff;

    overflow: hidden;

    border: 1px solid rgba(120, 144, 24, 0.10);

    box-shadow:
        0 12px 35px rgba(30, 40, 10, 0.07);

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}


.ecf-event-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 55px rgba(40, 50, 10, 0.14);
}


/* =========================================================
   EVENT IMAGE
========================================================= */

.ecf-event-image {
    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background: #dfe4c9;
}


.ecf-event-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.20)
        );

    pointer-events: none;
}


.ecf-event-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


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


/* =========================================================
   DATE BADGE
========================================================= */

.ecf-event-date {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 3;

    width: 68px;
    height: 72px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #789018;

    color: #fff;

    box-shadow:
        0 8px 20px rgba(40, 50, 10, 0.22);
}


.ecf-event-date strong {
    font-family: "Cormorant Garamond", serif;

    font-size: 31px;

    line-height: 0.85;

    font-weight: 700;
}


.ecf-event-date span {
    margin-top: 6px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENT
========================================================= */

.ecf-event-content {
    padding: 30px 28px 32px;
}


.ecf-event-content h3 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    line-height: 1.05;

    font-weight: 700;

    color: #222;

    transition: color 0.3s ease;
}


.ecf-event-card:hover .ecf-event-content h3 {
    color: #789018;
}


/* =========================================================
   EVENT META
========================================================= */

.ecf-event-meta {
    display: flex;

    flex-direction: column;

    gap: 11px;

    padding-bottom: 22px;

    margin-bottom: 20px;

    border-bottom: 1px solid #e8e8e8;
}


.ecf-event-meta-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.4;

    color: #666;
}


.ecf-event-meta-item i {
    width: 16px;

    flex-shrink: 0;

    margin-top: 2px;

    color: #789018;

    font-size: 14px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ecf-event-description {
    margin: 0 0 25px;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #777;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.ecf-event-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 7px;

    border-bottom: 1px solid #789018;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.8px;

    color: #789018;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}


.ecf-event-button span {
    font-size: 17px;

    transition:
        transform 0.3s ease;
}


.ecf-event-button:hover {
    gap: 17px;

    color: #52680f;
}


.ecf-event-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   VIEW ALL
========================================================= */

.ecf-events-bottom {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.ecf-events-all-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 28px;

    background: #789018;

    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.8px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.ecf-events-all-button span {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.ecf-events-all-button:hover {
    background: #52680f;

    transform: translateY(-3px);
}


.ecf-events-all-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.ecf-event-reveal {
    opacity: 0;

    transform: translateY(55px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: var(--event-delay, 0s);
}


.ecf-event-reveal.ecf-event-show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-events-section {
        padding: 100px 0;
    }

    .ecf-events-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-events-section {
        padding: 80px 0;
    }

    .ecf-events-container {
        width: min(100% - 35px, 520px);
    }

    .ecf-events-heading {
        margin-bottom: 45px;
    }

    .ecf-events-heading h2 {
        font-size: 45px;
    }

    .ecf-events-heading > p {
        font-size: 15px;
    }

    .ecf-events-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .ecf-event-image {
        height: 230px;
    }

    .ecf-event-content {
        padding: 26px 24px 30px;
    }

    .ecf-event-content h3 {
        font-size: 29px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ecf-event-card,
    .ecf-event-image img,
    .ecf-event-reveal,
    .ecf-event-button,
    .ecf-events-all-button {
        transition: none !important;
    }

}

/* =========================================================
   ECF - OUR PASTOR SECTION
========================================================= */

.ecf-pastor-section {
    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background: #f7f8f2;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.ecf-pastor-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(120, 144, 24, 0.12);

    box-shadow:
        0 0 0 50px rgba(120, 144, 24, 0.025),
        0 0 0 100px rgba(120, 144, 24, 0.018);

    pointer-events: none;
}


.ecf-pastor-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(120, 144, 24, 0.045);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ecf-pastor-container {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 90px;
}


/* =========================================================
   PASTOR VISUAL
========================================================= */

.ecf-pastor-visual {

    position: relative;

    min-height: 610px;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}


/* Main image background */

.ecf-pastor-image-wrapper {

    position: relative;

    width: 100%;

    max-width: 520px;

    height: 610px;

    overflow: hidden;

    background: #667d12;

    border-radius: 0 0 5px 5px;

    box-shadow:
        0 25px 60px rgba(45, 55, 10, 0.16);

    z-index: 2;
}


/* Image */

.ecf-pastor-image {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}


.ecf-pastor-image-wrapper:hover .ecf-pastor-image {

    transform: scale(1.025);
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.ecf-pastor-circle {

    position: absolute;

    width: 170px;
    height: 170px;

    left: -65px;
    top: 70px;

    border-radius: 50%;

    border: 1px solid rgba(120, 144, 24, 0.28);

    z-index: 1;
}


/* =========================================================
   BIBLE BADGE
========================================================= */

.ecf-pastor-badge {

    position: absolute;

    right: -25px;
    bottom: 60px;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #789018;

    color: #fff;

    z-index: 5;

    box-shadow:
        0 18px 40px rgba(50, 60, 10, 0.22);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.ecf-pastor-badge:hover {

    transform: translateY(-8px);

    background: #52680f;
}


.ecf-pastor-badge i {

    font-size: 32px;

    margin-bottom: 10px;
}


.ecf-pastor-badge span {

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-align: center;
}


.ecf-pastor-badge small {

    display: block;

    margin-top: 3px;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.8;
}


/* =========================================================
   CONTENT
========================================================= */

.ecf-pastor-content {

    max-width: 610px;
}


/* Section label */

.ecf-pastor-content .ecf-section-label {

    margin-bottom: 22px;
}


/* Heading */

.ecf-pastor-content h2 {

    margin: 0 0 30px;

    max-width: 570px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 5vw, 70px);

    line-height: 0.98;

    font-weight: 700;

    color: #202020;

    letter-spacing: -1px;
}


/* =========================================================
   PASTOR NAME
========================================================= */

.ecf-pastor-name {

    padding-left: 20px;

    margin-bottom: 27px;

    border-left: 3px solid #789018;
}


.ecf-pastor-name span {

    display: block;

    margin-bottom: 5px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #789018;
}


.ecf-pastor-name h3 {

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    line-height: 1.1;

    font-weight: 700;

    color: #262626;
}


/* =========================================================
   BIOGRAPHY
========================================================= */

.ecf-pastor-text {

    max-width: 580px;
}


.ecf-pastor-text p {

    margin: 0 0 18px;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #626262;
}


.ecf-pastor-text p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   BUTTON
========================================================= */

.ecf-pastor-button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 32px;

    min-height: 52px;

    padding: 0 25px;

    background: #789018;

    color: #fff;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        gap 0.3s ease;
}


.ecf-pastor-button span {

    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.ecf-pastor-button:hover {

    background: #52680f;

    transform: translateY(-3px);

    gap: 19px;
}


.ecf-pastor-button:hover span {

    transform: translateX(4px);
}


/* =========================================================
   PASTOR SCROLL ANIMATIONS
========================================================= */

.ecf-pastor-reveal-left {

    opacity: 0;

    transform: translateX(-80px);

    transition:
        opacity 1s ease,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}


.ecf-pastor-reveal-right {

    opacity: 0;

    transform: translateX(80px);

    transition:
        opacity 1s ease 0.15s,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}


.ecf-pastor-reveal-left.ecf-pastor-visible,
.ecf-pastor-reveal-right.ecf-pastor-visible {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-pastor-section {

        padding: 100px 0;
    }


    .ecf-pastor-container {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .ecf-pastor-visual {

        width: min(600px, 100%);

        margin: 0 auto;

        min-height: 580px;
    }


    .ecf-pastor-content {

        max-width: 720px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-pastor-section {

        padding: 80px 0;
    }


    .ecf-pastor-container {

        width: min(100% - 35px, 520px);

        gap: 50px;
    }


    .ecf-pastor-visual {

        min-height: 430px;

        width: 100%;
    }


    .ecf-pastor-image-wrapper {

        height: 430px;

        max-width: 100%;
    }


    .ecf-pastor-circle {

        width: 100px;
        height: 100px;

        left: -30px;
        top: 40px;
    }


    .ecf-pastor-badge {

        right: -8px;

        bottom: 25px;

        width: 105px;
        height: 105px;
    }


    .ecf-pastor-badge i {

        font-size: 24px;

        margin-bottom: 7px;
    }


    .ecf-pastor-badge span {

        font-size: 11px;
    }


    .ecf-pastor-badge small {

        font-size: 7px;
    }


    .ecf-pastor-content h2 {

        font-size: 45px;

        line-height: 1;
    }


    .ecf-pastor-name h3 {

        font-size: 27px;
    }


    .ecf-pastor-text p {

        font-size: 14px;

        line-height: 1.75;
    }


    .ecf-pastor-button {

        font-size: 10px;

        padding: 0 20px;
    }


    /* Mobile animation direction */

    .ecf-pastor-reveal-left,
    .ecf-pastor-reveal-right {

        transform: translateY(45px);
    }


    .ecf-pastor-reveal-left.ecf-pastor-visible,
    .ecf-pastor-reveal-right.ecf-pastor-visible {

        transform: translateY(0);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ecf-pastor-reveal-left,
    .ecf-pastor-reveal-right,
    .ecf-pastor-image,
    .ecf-pastor-badge,
    .ecf-pastor-button {

        transition: none !important;
    }

}

/* =========================================================
   ECF BIBLE VERSE BANNER
========================================================= */

.ecf-verse-banner {

    position: relative;

    width: 100%;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background-image:
        url("../images/prayer-background.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}


/* =========================================================
   DARK GREEN OVERLAY
========================================================= */

.ecf-verse-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 25, 10, 0.91),
            rgba(30, 55, 15, 0.86),
            rgba(8, 25, 10, 0.91)
        );

    z-index: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.ecf-verse-content {

    position: relative;

    z-index: 2;

    width: min(1100px, calc(100% - 40px));

    padding: 80px 20px;

    text-align: center;

    color: #fff;
}


/* =========================================================
   HEART
========================================================= */

.ecf-heart-wrapper {

    position: relative;

    width: 125px;

    height: 125px;

    margin: 0 auto 35px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Main circle */

.ecf-heart-circle {

    position: relative;

    width: 78px;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #789018;

    box-shadow:
        0 0 0 12px rgba(120, 144, 24, 0.35),
        0 0 0 24px rgba(120, 144, 24, 0.16);

    animation:
        ecfHeartBeat 1.8s ease-in-out infinite;
}


.ecf-heart-circle i {

    font-size: 30px;

    color: #fff;

    animation:
        ecfHeartIcon 1.8s ease-in-out infinite;
}


/* =========================================================
   PULSING RINGS
========================================================= */

.ecf-heart-ring {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 85px;

    height: 85px;

    border-radius: 50%;

    border: 1px solid rgba(120, 144, 24, 0.8);

    transform:
        translate(-50%, -50%)
        scale(0.7);

    opacity: 0;

    animation:
        ecfHeartPulse 2.5s ease-out infinite;
}


.ecf-heart-ring-2 {

    animation-delay: 1.25s;
}


/* =========================================================
   HEART ANIMATIONS
========================================================= */

@keyframes ecfHeartBeat {

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

    10% {
        transform: scale(1.08);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(1);
    }
}


@keyframes ecfHeartIcon {

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

    10% {
        transform: scale(1.12);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.12);
    }

    40% {
        transform: scale(1);
    }
}


@keyframes ecfHeartPulse {

    0% {

        transform:
            translate(-50%, -50%)
            scale(0.65);

        opacity: 0.7;
    }

    100% {

        transform:
            translate(-50%, -50%)
            scale(1.8);

        opacity: 0;
    }
}


/* =========================================================
   BIBLE VERSE
========================================================= */

.ecf-bible-verse {

    max-width: 950px;

    margin: 0 auto;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: clamp(
        30px,
        4vw,
        48px
    );

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.5px;

    color: #fff;
}


/* =========================================================
   DIVIDER
========================================================= */

.ecf-verse-divider {

    width: 55px;

    height: 3px;

    margin: 28px auto 18px;

    background: #789018;

    border-radius: 10px;
}


/* =========================================================
   BIBLE REFERENCE
========================================================= */

.ecf-bible-reference {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    font-weight: 600;

    font-style: italic;

    color: #b6ca63;
}


/* =========================================================
   SMALL SUBTITLE
========================================================= */

.ecf-verse-subtitle {

    margin: 14px 0 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.7);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-verse-banner {

        min-height: 430px;

        background-attachment: scroll;
    }


    .ecf-verse-content {

        padding: 70px 10px;
    }


    .ecf-heart-wrapper {

        margin-bottom: 28px;
    }


    .ecf-bible-verse {

        font-size: 27px;

        line-height: 1.35;
    }


    .ecf-bible-reference {

        font-size: 22px;
    }


    .ecf-verse-subtitle {

        font-size: 10px;

        letter-spacing: 1px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 651px) and (max-width: 1000px) {

    .ecf-verse-banner {

        min-height: 450px;

        background-attachment: scroll;
    }


    .ecf-bible-verse {

        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ecf-heart-circle,
    .ecf-heart-circle i,
    .ecf-heart-ring {

        animation: none;
    }

}

/* =========================================================
   ECF - OUR MINISTRIES
========================================================= */

.ecf-ministries-section {

    position: relative;

    padding: 120px 0 125px;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.ecf-ministries-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -260px;
    right: -220px;

    border-radius: 50%;

    border: 1px solid rgba(120, 144, 24, 0.10);

    box-shadow:
        0 0 0 45px rgba(120, 144, 24, 0.025),
        0 0 0 90px rgba(120, 144, 24, 0.018);

    pointer-events: none;
}


.ecf-ministries-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -170px;

    border-radius: 50%;

    background: rgba(120, 144, 24, 0.045);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ecf-ministries-container {

    position: relative;

    z-index: 2;

    width: min(1140px, calc(100% - 60px));

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.ecf-ministries-heading {

    text-align: center;

    margin-bottom: 55px;
}


.ecf-ministries-label {

    justify-content: center;

    margin-bottom: 10px;
}


.ecf-ministries-label p {

    color: #789018;
}


.ecf-ministries-heading h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(48px, 5vw, 64px);

    line-height: 1;

    font-weight: 700;

    color: #202020;

    letter-spacing: -1px;
}


/* =========================================================
   HEADING LINE
========================================================= */

.ecf-heading-line {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 25px;
}


.ecf-heading-line span {

    position: relative;

    display: block;

    width: 60px;

    height: 3px;

    background: #789018;

    border-radius: 10px;
}


.ecf-heading-line span::after {

    content: "";

    position: absolute;

    right: 50%;

    top: 50%;

    width: 7px;

    height: 7px;

    background: #789018;

    transform:
        translate(50%, -50%)
        rotate(45deg);
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.ecf-ministries-slider-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;
}


/* =========================================================
   SLIDER
========================================================= */

.ecf-ministries-slider {

    width: 100%;

    overflow: hidden;
}


.ecf-ministries-track {

    display: flex;

    gap: 30px;

    transition:
        transform 0.65s
        cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}


/* =========================================================
   CARD
========================================================= */

.ecf-ministry-card {

    flex: 0 0 calc(
        (100% - 60px) / 3
    );

    background: #ffffff;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);

    border-bottom: 4px solid #789018;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;

    display: flex;

    flex-direction: column;
}


.ecf-ministry-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 22px 50px rgba(50, 60, 15, 0.14);
}


/* =========================================================
   IMAGE
========================================================= */

.ecf-ministry-image {

    position: relative;

    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #eef1e4;
}


.ecf-ministry-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s
        cubic-bezier(0.22, 1, 0.36, 1);
}


.ecf-ministry-card:hover
.ecf-ministry-image img {

    transform: scale(1.07);
}


/* Image overlay */

.ecf-ministry-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(30, 40, 10, 0.15)
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.ecf-ministry-content {

    padding: 28px 30px 30px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


.ecf-ministry-content h3 {

    margin: 0 0 17px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;

    color: #202020;
}


.ecf-ministry-content p {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #777777;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   READ MORE
========================================================= */

.ecf-ministry-read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    padding-top: 24px;

    color: #789018;

    text-decoration: none;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.ecf-ministry-read-more span {

    font-size: 17px;

    transition:
        transform 0.3s ease;
}


.ecf-ministry-read-more:hover {

    color: #52680f;

    gap: 13px;
}


.ecf-ministry-read-more:hover span {

    transform: translateX(4px);
}


/* =========================================================
   ARROWS
========================================================= */

.ecf-ministry-arrow {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    background: #789018;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(80, 100, 15, 0.18);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}


.ecf-ministry-arrow:hover {

    background: #52680f;

    transform: translateY(-3px);
}


.ecf-ministry-arrow:disabled {

    opacity: 0.35;

    cursor: default;

    transform: none;
}


.ecf-ministry-arrow i {

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-ministries-section {

        padding: 95px 0 100px;
    }


    .ecf-ministries-container {

        width: min(900px, calc(100% - 45px));
    }


    .ecf-ministry-card {

        flex-basis: calc(
            (100% - 30px) / 2
        );
    }


    .ecf-ministry-image {

        height: 230px;
    }


    .ecf-ministries-track {

        gap: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-ministries-section {

        padding: 80px 0 85px;
    }


    .ecf-ministries-container {

        width: calc(100% - 35px);
    }


    .ecf-ministries-heading {

        margin-bottom: 38px;
    }


    .ecf-ministries-heading h2 {

        font-size: 44px;
    }


    .ecf-ministries-slider-wrapper {

        gap: 10px;
    }


    .ecf-ministry-arrow {

        position: absolute;

        top: -63px;

        z-index: 5;

        width: 42px;

        height: 42px;

        flex-basis: 42px;
    }


    .ecf-ministry-prev {

        right: 55px;
    }


    .ecf-ministry-next {

        right: 5px;
    }


    .ecf-ministry-card {

        flex: 0 0 100%;
    }


    .ecf-ministry-image {

        height: 220px;
    }


    .ecf-ministry-content {

        padding: 25px 24px 28px;
    }


    .ecf-ministry-content h3 {

        font-size: 20px;
    }


    .ecf-ministry-content p {

        font-size: 13px;

        line-height: 1.75;
    }

}

/* =========================================================
   ECF - OUR HISTORY
========================================================= */

.ecf-history-section {

    position: relative;

    padding: 115px 0 120px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #566b12 0%,
            #789018 45%,
            #657b16 100%
        );

    color: #ffffff;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.ecf-history-section::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    right: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 0 0 55px rgba(255,255,255,0.025),
        0 0 0 110px rgba(255,255,255,0.018);

    pointer-events: none;
}


.ecf-history-section::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -320px;
    left: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ecf-history-container {

    position: relative;

    z-index: 2;

    width: min(
        1140px,
        calc(100% - 60px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.ecf-history-heading {

    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}


.ecf-history-label {

    justify-content: center;

    margin-bottom: 12px;
}


.ecf-history-label span {

    background: rgba(255,255,255,0.8);
}


.ecf-history-label p {

    color: #ffffff;

    letter-spacing: 2px;
}


.ecf-history-heading h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(
        42px,
        5vw,
        62px
    );

    line-height: 1.05;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: -1px;
}


/* =========================================================
   HEADING LINE
========================================================= */

.ecf-history-line {

    margin-top: 25px;
}


.ecf-history-line span {

    background: #ffffff;
}


.ecf-history-line span::after {

    background: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.ecf-history-intro {

    max-width: 700px;

    margin: 25px auto 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(
        255,
        255,
        255,
        0.82
    );
}


/* =========================================================
   STATISTICS
========================================================= */

.ecf-history-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


/* =========================================================
   STAT CARD
========================================================= */

.ecf-history-stat {

    position: relative;

    text-align: center;

    padding: 35px 20px 32px;

    border-radius: 10px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


.ecf-history-stat:hover {

    transform: translateY(-8px);

    background:
        rgba(
            255,
            255,
            255,
            0.16
        );

    box-shadow:
        0 20px 45px
        rgba(0,0,0,0.14);
}


/* =========================================================
   ICON
========================================================= */

.ecf-history-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #789018;

    font-size: 21px;

    transition:
        transform 0.4s ease;
}


.ecf-history-stat:hover
.ecf-history-icon {

    transform:
        rotateY(180deg);
}


/* =========================================================
   NUMBER
========================================================= */

.ecf-history-number {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.ecf-history-number span {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 68px;

    line-height: 1;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: -2px;
}


/* =========================================================
   TITLE
========================================================= */

.ecf-history-stat h3 {

    margin: 13px 0 10px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 800;

    color: #ffffff;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ecf-history-stat p {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-history-section {

        padding: 95px 0 100px;
    }


    .ecf-history-container {

        width:
            min(
                900px,
                calc(100% - 45px)
            );
    }


    .ecf-history-stats {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ecf-history-section {

        padding: 80px 0 85px;
    }


    .ecf-history-container {

        width:
            calc(100% - 35px);
    }


    .ecf-history-heading {

        margin-bottom: 45px;
    }


    .ecf-history-heading h2 {

        font-size: 43px;
    }


    .ecf-history-intro {

        font-size: 14px;

        line-height: 1.75;
    }


    .ecf-history-stats {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .ecf-history-stat {

        padding: 30px 25px;
    }


    .ecf-history-number span {

        font-size: 62px;
    }

}

/* =========================================================
   ECF - GALLERY
========================================================= */

.ecf-gallery-section {

    position: relative;

    padding: 120px 0 115px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f6f8f0 0%,
            #ffffff 48%,
            #f3f6e9 100%
        );
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.ecf-gallery-section::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -400px;
    left: -300px;

    border-radius: 50%;

    border: 1px solid
        rgba(120, 144, 24, 0.08);

    box-shadow:
        0 0 0 60px
        rgba(120, 144, 24, 0.025),
        0 0 0 120px
        rgba(120, 144, 24, 0.018);

    pointer-events: none;
}


.ecf-gallery-section::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(120, 144, 24, 0.045);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.ecf-gallery-container {

    position: relative;

    z-index: 2;

    width:
        min(
            1250px,
            calc(100% - 50px)
        );

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.ecf-gallery-heading {

    text-align: center;

    max-width: 720px;

    margin:
        0 auto 55px;
}


.ecf-gallery-label {

    justify-content: center;

    margin-bottom: 10px;
}


.ecf-gallery-label p {

    color: #789018;

    letter-spacing: 2px;
}


.ecf-gallery-heading h2 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            44px,
            5vw,
            62px
        );

    line-height: 1.05;

    font-weight: 700;

    color: #202020;

    letter-spacing: -1px;
}


.ecf-gallery-intro {

    max-width: 650px;

    margin:
        24px auto 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #777777;
}


/* =========================================================
   CAROUSEL
========================================================= */

.ecf-gallery-carousel {

    position: relative;

    width: 100%;

    height: 510px;

    perspective: 1500px;

    overflow: visible;
}


.ecf-gallery-track {

    position: relative;

    width: 100%;

    height: 100%;

    transform-style: preserve-3d;
}


/* =========================================================
   SLIDES
========================================================= */

.ecf-gallery-slide {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 400px;

    height: 455px;

    border-radius: 14px;

    overflow: hidden;

    background: #dfe4d0;

    border:
        5px solid #ffffff;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.18);

    transform:
        translate(-50%, -50%)
        scale(0.72);

    opacity: 0;

    z-index: 1;

    transition:
        transform 0.75s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        opacity 0.65s ease,
        filter 0.65s ease;

    pointer-events: none;

    will-change:
        transform,
        opacity;
}


/* =========================================================
   ACTIVE CENTER
========================================================= */

.ecf-gallery-slide.active {

    transform:
        translate(-50%, -50%)
        translateX(0)
        translateZ(100px)
        scale(1);

    opacity: 1;

    filter: none;

    z-index: 5;

    pointer-events: auto;

    box-shadow:
        0 30px 70px
        rgba(40, 50, 10, 0.22);
}


/* =========================================================
   PREVIOUS
========================================================= */

.ecf-gallery-slide.prev {

    transform:
        translate(-50%, -50%)
        translateX(-315px)
        translateZ(-100px)
        rotateY(12deg)
        scale(0.78);

    opacity: 0.82;

    filter: brightness(0.78);

    z-index: 3;
}


/* =========================================================
   NEXT
========================================================= */

.ecf-gallery-slide.next {

    transform:
        translate(-50%, -50%)
        translateX(315px)
        translateZ(-100px)
        rotateY(-12deg)
        scale(0.78);

    opacity: 0.82;

    filter: brightness(0.78);

    z-index: 3;
}


/* =========================================================
   FAR PREVIOUS
========================================================= */

.ecf-gallery-slide.far-prev {

    transform:
        translate(-50%, -50%)
        translateX(-570px)
        translateZ(-250px)
        rotateY(20deg)
        scale(0.58);

    opacity: 0.38;

    filter: brightness(0.6);

    z-index: 2;
}


/* =========================================================
   FAR NEXT
========================================================= */

.ecf-gallery-slide.far-next {

    transform:
        translate(-50%, -50%)
        translateX(570px)
        translateZ(-250px)
        rotateY(-20deg)
        scale(0.58);

    opacity: 0.38;

    filter: brightness(0.6);

    z-index: 2;
}


/* =========================================================
   HIDDEN
========================================================= */

.ecf-gallery-slide.hidden {

    transform:
        translate(-50%, -50%)
        translateZ(-500px)
        scale(0.45);

    opacity: 0;

    z-index: 0;
}


/* =========================================================
   IMAGE + VIDEO
========================================================= */

.ecf-gallery-slide img,
.ecf-gallery-slide video {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================================
   VIDEO
========================================================= */

.ecf-gallery-video {

    background: #111111;
}


/* =========================================================
   VIDEO PLAY INDICATOR
========================================================= */

.ecf-gallery-video-icon {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 58px;
    height: 58px;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(120, 144, 24, 0.92);

    color: #ffffff;

    font-size: 16px;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;
}


.ecf-gallery-slide.active
.ecf-gallery-video-icon {

    opacity: 1;
}


/* =========================================================
   OVERLAY
========================================================= */

.ecf-gallery-slide-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10, 15, 5, 0.78) 0%,
            rgba(10, 15, 5, 0.10) 45%,
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   CAPTION
========================================================= */

.ecf-gallery-caption {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    color: #ffffff;

    transform:
        translateY(10px);

    opacity: 0;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;

    z-index: 3;
}


.ecf-gallery-slide.active
.ecf-gallery-caption {

    opacity: 1;

    transform:
        translateY(0);
}


.ecf-gallery-caption span {

    display: inline-block;

    margin-bottom: 7px;

    padding: 5px 9px;

    border-radius: 20px;

    background:
        #789018;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ecf-gallery-caption h3 {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 800;

    color: #ffffff;
}


/* =========================================================
   ARROWS
========================================================= */

.ecf-gallery-arrow {

    position: absolute;

    top: 50%;

    width: 50px;
    height: 50px;

    border: 1px solid
        rgba(120, 144, 24, 0.25);

    border-radius: 50%;

    background: #ffffff;

    color: #789018;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 20;

    transform:
        translateY(-50%);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.10);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.ecf-gallery-prev {

    left: 20px;
}


.ecf-gallery-next {

    right: 20px;
}


.ecf-gallery-arrow:hover {

    background: #789018;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 12px 30px
        rgba(70, 90, 10, 0.22);
}


.ecf-gallery-arrow i {

    font-size: 14px;
}


/* =========================================================
   DOTS
========================================================= */

.ecf-gallery-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 25px;
}


.ecf-gallery-dot {

    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #d2d7c4;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.ecf-gallery-dot.active {

    width: 26px;

    border-radius: 10px;

    background: #789018;
}


/* =========================================================
   COUNTER
========================================================= */

.ecf-gallery-counter {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 18px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    color: #789018;

    letter-spacing: 1px;
}


.ecf-gallery-counter-line {

    width: 35px;

    height: 1px;

    background: #cbd1bb;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ecf-gallery-section {

        padding: 95px 0 100px;
    }


    .ecf-gallery-container {

        width:
            calc(100% - 35px);
    }


    .ecf-gallery-carousel {

        height: 470px;
    }


    .ecf-gallery-slide {

        width: 340px;

        height: 420px;
    }


    .ecf-gallery-slide.prev {

        transform:
            translate(-50%, -50%)
            translateX(-260px)
            translateZ(-80px)
            rotateY(10deg)
            scale(0.76);
    }


    .ecf-gallery-slide.next {

        transform:
            translate(-50%, -50%)
            translateX(260px)
            translateZ(-80px)
            rotateY(-10deg)
            scale(0.76);
    }


    .ecf-gallery-slide.far-prev {

        opacity: 0;
    }


    .ecf-gallery-slide.far-next {

        opacity: 0;
    }


    .ecf-gallery-prev {

        left: 0;
    }


    .ecf-gallery-next {

        right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ecf-gallery-section {

        padding: 80px 0 85px;
    }


    .ecf-gallery-heading {

        margin-bottom: 35px;
    }


    .ecf-gallery-heading h2 {

        font-size: 42px;
    }


    .ecf-gallery-intro {

        font-size: 13px;

        padding: 0 10px;
    }


    .ecf-gallery-carousel {

        height: 420px;
    }


    .ecf-gallery-slide {

        width:
            min(
                300px,
                78vw
            );

        height: 380px;
    }


    .ecf-gallery-slide.prev {

        transform:
            translate(-50%, -50%)
            translateX(-190px)
            translateZ(-100px)
            rotateY(12deg)
            scale(0.72);

        opacity: 0.35;
    }


    .ecf-gallery-slide.next {

        transform:
            translate(-50%, -50%)
            translateX(190px)
            translateZ(-100px)
            rotateY(-12deg)
            scale(0.72);

        opacity: 0.35;
    }


    .ecf-gallery-slide.far-prev,
    .ecf-gallery-slide.far-next {

        opacity: 0;
    }


    .ecf-gallery-arrow {

        width: 42px;
        height: 42px;

        top: auto;

        bottom: -25px;

        transform: none;
    }


    .ecf-gallery-prev {

        left:
            calc(50% - 55px);
    }


    .ecf-gallery-next {

        right:
            calc(50% - 55px);
    }


    .ecf-gallery-arrow:hover {

        transform: scale(1.08);
    }


    .ecf-gallery-dots {

        margin-top: 55px;
    }


    .ecf-gallery-caption h3 {

        font-size: 19px;
    }

}

/* =========================================================
   ECF CONTACT SECTION
========================================================= */

.ecf-contact-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #071b0b;
    color: #ffffff;
    isolation: isolate;
}


/* BACKGROUND */

.ecf-contact-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image:
        url("../images/contact-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.ecf-contact-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 24, 8, 0.94) 0%,
            rgba(5, 28, 10, 0.88) 48%,
            rgba(4, 22, 8, 0.92) 100%
        );
}


/* MAIN CONTAINER */

.ecf-contact-container {
    position: relative;
    z-index: 5;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    min-height: 500px;

    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 70px;

    padding: 70px 0 110px;
}


/* =========================================================
   LEFT CARD
========================================================= */

.ecf-contact-card {
    position: relative;

    background: #789a10;

    min-height: 355px;

    padding: 42px 35px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 5px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.ecf-contact-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.38);
}


/* ICON */

.ecf-contact-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    color: #ffffff;

    margin-bottom: 20px;
}


.ecf-contact-card h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 30px;
    font-weight: 700;

    color: #ffffff;
}


.ecf-contact-line {
    width: 38px;
    height: 3px;

    background: #ffffff;

    margin: 18px auto 20px;
}


.ecf-contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;

    width: 100%;
}


.ecf-contact-details p {
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: rgba(255,255,255,0.95);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 14px;
    line-height: 1.5;
}


.ecf-contact-details i {
    width: 18px;
    font-size: 13px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.ecf-contact-content {
    max-width: 650px;
}


.ecf-contact-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;
}


.ecf-contact-label span {
    width: 38px;
    height: 2px;

    background: #8aaa18;

    display: block;
}


.ecf-contact-label p {
    margin: 0;

    color: #8aaa18;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}


.ecf-contact-content h2 {
    margin: 0;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;
}


.ecf-contact-content h2 span {
    display: block;
}


.ecf-contact-divider {
    width: 60px;
    height: 4px;

    margin: 22px 0 26px;

    background: #8aaa18;

    position: relative;
}


.ecf-contact-divider::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 22px;
    height: 4px;

    background: #ffffff;
}


.ecf-contact-description {
    max-width: 680px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.82);

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.9;
}


/* BUTTON */

.ecf-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 25px;

    background: #8aaa18;
    color: #ffffff;

    text-decoration: none;

    font-family:
        "Poppins",
        Arial,
        sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;

    border-radius: 3px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.ecf-contact-button span {
    font-size: 19px;

    transition:
        transform 0.3s ease;
}


.ecf-contact-button:hover {
    background: #9dbd20;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.25);
}


.ecf-contact-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   WAVES
========================================================= */

.ecf-contact-waves {
    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 145px;

    z-index: 10;

    pointer-events: none;
}


.ecf-contact-waves svg {
    width: 100%;
    height: 100%;

    display: block;
}


.ecf-contact-waves .wave-back {
    fill: rgba(255,255,255,0.45);
}


.ecf-contact-waves .wave-front {
    fill: #ffffff;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.ecf-contact-reveal-left,
.ecf-contact-reveal-right {
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}


.ecf-contact-reveal-left {
    transform: translateX(-70px);
}


.ecf-contact-reveal-right {
    transform: translateX(70px);
}


.ecf-contact-section.ecf-contact-visible
.ecf-contact-reveal-left,

.ecf-contact-section.ecf-contact-visible
.ecf-contact-reveal-right {
    opacity: 1;

    transform: translateX(0);
}


.ecf-contact-section.ecf-contact-visible
.ecf-contact-reveal-right {
    transition-delay: 0.15s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ecf-contact-container {
        grid-template-columns: 300px 1fr;

        gap: 45px;

        width: min(92%, 900px);
    }

    .ecf-contact-card {
        min-height: 330px;

        padding: 30px 25px;
    }

    .ecf-contact-content h2 {
        font-size: 36px;
    }

    .ecf-contact-description {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ecf-contact-section {
        min-height: auto;
    }

    .ecf-contact-container {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        width: calc(100% - 30px);

        gap: 35px;

        padding: 55px 0 130px;
    }


    .ecf-contact-card {
        width: 100%;

        min-height: 300px;

        padding: 35px 20px;

        box-sizing: border-box;
    }


    .ecf-contact-card h3 {
        font-size: 27px;
    }


    .ecf-contact-content {
        width: 100%;
    }


    .ecf-contact-content h2 {
        font-size: 32px;
    }


    .ecf-contact-description {
        font-size: 14px;

        line-height: 1.8;
    }


    .ecf-contact-button {
        padding: 14px 22px;
    }


    .ecf-contact-waves {
        height: 95px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ecf-contact-container {
        width: calc(100% - 24px);

        padding-top: 45px;
    }

    .ecf-contact-card {
        min-height: 285px;
    }

    .ecf-contact-content h2 {
        font-size: 29px;
    }

    .ecf-contact-label p {
        font-size: 13px;
    }

    .ecf-contact-description {
        font-size: 13px;
    }
}


/* =========================================================
   LARGE TV / 4K
========================================================= */

@media (min-width: 1800px) {

    .ecf-contact-container {
        width: min(1450px, 85%);

        grid-template-columns: 400px 1fr;

        gap: 100px;

        min-height: 600px;
    }

    .ecf-contact-card {
        min-height: 420px;
    }

    .ecf-contact-content h2 {
        font-size: 58px;
    }

    .ecf-contact-description {
        font-size: 17px;
        max-width: 780px;
    }
}

/* =========================================================
   ECF - MOBILE OPTIMIZATION
   Keep desktop/tablet design unchanged
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------
       GLOBAL
    ----------------------------- */

    html {
        scroll-padding-top: 68px;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        font-size: 14px;
    }

    /* -----------------------------
       HEADER
    ----------------------------- */

    :root {
        --header-height: 64px;
    }

    .site-header {
        height: 64px;
    }

    .site-header.scrolled {
        height: 60px;
    }

    .header-inner {
        width: calc(100% - 28px);
        padding: 0;
    }

    .ecf-logo {
        width: 105px;
        max-width: 105px;
    }

    /* -----------------------------
       HERO
    ----------------------------- */

    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content {
        width: calc(100% - 36px);
        max-width: 600px;
        padding: 90px 0 70px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 62px);
        line-height: .95;
    }

    .hero-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* -----------------------------
       ABOUT
    ----------------------------- */

    .ecf-about-section {
        padding: 70px 0;
    }

    .ecf-about-container {
        width: calc(100% - 30px);
        max-width: 620px;
        gap: 45px;
    }

    .ecf-about-content h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .ecf-about-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .ecf-about-bottom {
        gap: 25px;
    }

    .ecf-about-visual {
        width: 100%;
        min-height: 390px;
    }

    .ecf-about-image-one,
    .ecf-about-image-two {
        width: 72%;
        height: 215px;
    }

    /* -----------------------------
       EVENTS
    ----------------------------- */

    .ecf-events-section {
        padding: 70px 0 75px;
    }

    .ecf-events-container {
        width: calc(100% - 30px);
        max-width: 620px;
    }

    .ecf-events-heading {
        margin-bottom: 32px;
    }

    .ecf-events-heading h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .ecf-events-heading > p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        line-height: 1.7;
    }

    .ecf-events-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ecf-event-card {
        width: 100%;
    }

    .ecf-event-image {
        height: 210px;
    }

    .ecf-event-content {
        padding: 22px 20px 25px;
    }

    .ecf-event-content h3 {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .ecf-event-date {
        left: 15px;
        bottom: 15px;
        width: 62px;
        height: 66px;
    }

    .ecf-event-date strong {
        font-size: 27px;
    }

    .ecf-event-date span {
        font-size: 10px;
    }

    /* -----------------------------
       PASTOR
    ----------------------------- */

    .ecf-pastor-section {
        padding: 70px 0;
    }

    .ecf-pastor-container {
        width: calc(100% - 30px);
        max-width: 620px;
        gap: 40px;
    }

    .ecf-pastor-visual {
        width: 100%;
        min-height: 420px;
    }

    .ecf-pastor-image-wrapper {
        width: 100%;
        height: 420px;
        max-width: 100%;
    }

    .ecf-pastor-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .ecf-pastor-content h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .ecf-pastor-name h3 {
        font-size: 25px;
        line-height: 1.15;
    }

    .ecf-pastor-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* -----------------------------
       BIBLE VERSE BANNER
    ----------------------------- */

    .ecf-verse-banner {
        min-height: 400px;
        padding: 70px 20px;
    }

    .ecf-verse-content {
        width: 100%;
        max-width: 620px;
    }

    .ecf-verse-content h2 {
        font-size: clamp(25px, 7vw, 38px);
        line-height: 1.2;
    }

    /* -----------------------------
       MINISTRIES
    ----------------------------- */

    .ecf-ministries-section {
        padding: 70px 0 75px;
    }

    .ecf-ministries-container {
        width: calc(100% - 30px);
        max-width: 620px;
    }

    .ecf-ministries-heading {
        margin-bottom: 35px;
    }

    .ecf-ministries-heading h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .ecf-ministry-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .ecf-ministry-image {
        height: 205px;
    }

    .ecf-ministry-content {
        padding: 22px 20px 25px;
    }

    .ecf-ministry-content h3 {
        font-size: 25px;
        line-height: 1.15;
    }

    /* -----------------------------
       HISTORY
    ----------------------------- */

    .ecf-history-section {
        padding: 75px 0;
    }

    .ecf-history-container {
        width: calc(100% - 30px);
        max-width: 620px;
    }

    .ecf-history-heading h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .ecf-history-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .ecf-history-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ecf-history-card {
        min-height: 210px;
        padding: 25px 20px;
    }

    .ecf-history-number {
        font-size: 48px;
    }

    /* -----------------------------
       GALLERY
    ----------------------------- */

    .ecf-gallery-section {
        padding: 70px 0 75px;
    }

    .ecf-gallery-container {
        width: calc(100% - 20px);
        max-width: 650px;
    }

    .ecf-gallery-heading {
        margin-bottom: 25px;
    }

    .ecf-gallery-heading h2 {
        font-size: clamp(32px, 8.5vw, 46px);
        line-height: 1.05;
    }

    .ecf-gallery-intro {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-size: 13px;
        line-height: 1.7;
    }

    .ecf-gallery-carousel {
        height: 400px;
        width: 100%;
    }

    .ecf-gallery-slide {
        width: min(280px, 74vw);
        height: 360px;
    }

    .ecf-gallery-slide.prev {
        transform:
            translate(-50%, -50%)
            translateX(-190px)
            translateZ(-90px)
            rotateY(10deg)
            scale(.72);
    }

    .ecf-gallery-slide.next {
        transform:
            translate(-50%, -50%)
            translateX(190px)
            translateZ(-90px)
            rotateY(-10deg)
            scale(.72);
    }

    .ecf-gallery-slide.far-prev,
    .ecf-gallery-slide.far-next {
        opacity: 0;
    }

    .ecf-gallery-prev,
    .ecf-gallery-next {
        width: 38px;
        height: 38px;
    }

    .ecf-gallery-prev {
        left: 2px;
    }

    .ecf-gallery-next {
        right: 2px;
    }

    .ecf-gallery-dots {
        margin-top: 18px;
    }

    .ecf-gallery-counter {
        margin-top: 12px;
    }

    /* -----------------------------
       CONTACT
    ----------------------------- */

    .ecf-contact-container {
        width: calc(100% - 30px);
        max-width: 620px;
        padding-top: 50px;
        padding-bottom: 120px;
        gap: 28px;
    }

    .ecf-contact-card {
        width: 100%;
        min-height: 280px;
        padding: 32px 22px;
    }

    .ecf-contact-content h2 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.08;
    }

    .ecf-contact-description {
        font-size: 13px;
        line-height: 1.75;
    }

    /* -----------------------------
       FOOTER
    ----------------------------- */

    .ecf-footer-container {
        width: calc(100% - 30px);
        max-width: 620px;
    }

    .ecf-footer-main {
        padding: 60px 0 45px;
    }

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

    .ecf-footer-logo img {
        width: 145px;
    }

    .ecf-footer-about p {
        font-size: 13px;
        line-height: 1.75;
    }

    .ecf-footer-heading {
        font-size: 20px;
    }

    .ecf-footer-links a,
    .ecf-contact-item p,
    .ecf-contact-item a {
        font-size: 13px;
    }

    .ecf-footer-bottom-container {
        width: calc(100% - 30px);
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .header-inner {
        width: calc(100% - 22px);
    }

    .ecf-logo {
        width: 98px;
    }

    .hero-content {
        width: calc(100% - 28px);
    }

    .ecf-events-container,
    .ecf-about-container,
    .ecf-pastor-container,
    .ecf-ministries-container,
    .ecf-history-container,
    .ecf-contact-container {
        width: calc(100% - 24px);
    }

    .ecf-event-image {
        height: 195px;
    }

    .ecf-event-content {
        padding: 20px 17px 23px;
    }

    .ecf-event-content h3 {
        font-size: 24px;
    }

    .ecf-gallery-container {
        width: calc(100% - 12px);
    }

    .ecf-gallery-carousel {
        height: 375px;
    }

    .ecf-gallery-slide {
        width: 270px;
        height: 345px;
    }

    .ecf-gallery-slide.prev {
        transform:
            translate(-50%, -50%)
            translateX(-175px)
            translateZ(-80px)
            rotateY(9deg)
            scale(.68);
    }

    .ecf-gallery-slide.next {
        transform:
            translate(-50%, -50%)
            translateX(175px)
            translateZ(-80px)
            rotateY(-9deg)
            scale(.68);
    }

    .ecf-pastor-visual {
        min-height: 380px;
    }

    .ecf-pastor-image-wrapper {
        height: 380px;
    }

}