/* =========================================================
   EVERGREEN LIFE EMBASSY
   GLOBAL DESIGN SYSTEM
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    /* Brand Colors */
    --navy: #1f2a44;
    --navy-dark: #151d31;
    --navy-light: #2a3a5c;
    --cream: #e8dcc8;
    --cream-light: #f5efe5;
    --gold: #c6a75e;
    --gold-light: #d4b96a;

    /* Supporting Colors */
    --white: #ffffff;
    --black: #111111;
    --muted: #6d7280;
    --light-bg: #f8f6f1;
    --border: rgba(31, 42, 68, 0.12);

    /* Typography */
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 90px;

    /* Effects */
    --radius: 12px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 5px 20px rgba(31, 42, 68, 0.06);
    --shadow-md: 0 15px 40px rgba(31, 42, 68, 0.10);

    --transition: all 0.3s ease;
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}


/* =========================================================
   PAGE LOADER - FIXED
   ========================================================= */

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.loader-content img {
    width: 130px;
    max-height: 90px;
    object-fit: contain;
}

.loader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(232, 220, 200, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}


/* =========================================================
   CONTAINER - FIXED
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================================
   SECTION UTILITIES
   ========================================================= */

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title span {
    color: var(--gold);
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
}

.section-heading-centered {
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-heading-centered p {
    color: var(--muted);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 1px solid var(--gold);
    color: var(--navy);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}


/* =========================================================
   EMPTY STATES
   ========================================================= */

.empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--muted);
    margin: 0;
}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    position: fixed;
    width: 90%;
    margin: 3% auto;
    margin-left: 5%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(31, 42, 68, 0.08);
    
}

.site-header .navbar {
    min-height: 86px;
    padding: 1.5px 0;
    
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 145px;
    max-height: 65px;
    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.site-header .navbar-nav {
    gap: 10px;
}

.site-header .nav-link {
    position: relative;
    padding: 12px 13px !important;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 5px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-header .nav-link:hover {
    color: var(--gold);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
}

.site-header .nav-link.active {
    color: var(--gold);
}


/* =========================================================
   NAV CTA
   ========================================================= */

.nav-cta {
    margin-left: 12px;
}

.nav-cta .btn {
    padding: 10px 20px;
}


/* =========================================================
   MOBILE TOGGLER
   ========================================================= */

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(31, 42, 68, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-image: none !important;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    border-top: 2px solid var(--navy);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: 5px;
}

.navbar-toggler-icon::after {
    top: 11px;
}


/* =========================================================
   MOBILE OFFCANVAS
   ========================================================= */

.mobile-menu {
    width: min(390px, 90vw);
    background: var(--navy);
    border-left: 2px solid var(--gold);
}

.mobile-menu .offcanvas-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(232, 220, 200, 0.1);
}

.mobile-menu-logo img {
    width: 125px;
    max-height: 60px;
    object-fit: contain;
}

.mobile-menu .btn-close {
    filter: invert(1);
    opacity: 0.8;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu .btn-close:focus {
    box-shadow: none;
}

.mobile-menu .offcanvas-body {
    padding: 0;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
}

.mobile-menu-label {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


/* =========================================================
   MOBILE LINKS
   ========================================================= */

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(232, 220, 200, 0.08);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    color: rgba(232, 220, 200, 0.75);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.mobile-nav a span {
    width: 25px;
    color: rgba(198, 167, 94, 0.6);
    font-size: 0.65rem;
    font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav a.active span {
    color: var(--gold);
}


/* =========================================================
   MOBILE CTA
   ========================================================= */

.mobile-menu-cta {
    margin-top: 30px;
}

.mobile-menu-cta .btn {
    padding: 13px 20px;
}

.mobile-menu-cta i {
    margin-left: 7px;
}


/* =========================================================
   MOBILE MENU FOOTER
   ========================================================= */

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(232, 220, 200, 0.1);
}

.mobile-menu-footer p {
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0 0 3px;
}

.mobile-menu-footer small {
    color: rgba(232, 220, 200, 0.5);
    font-size: 0.72rem;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70), rgba(31, 42, 68, .30)), url('../images/hero.JPG') center/cover no-repeat;
    color: var(--cream);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%, rgba(198, 167, 94, .12), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: var(--cream);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    max-width: 580px;
    color: rgba(232, 220, 200, .82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-actions .btn i {
    margin-left: 8px;
}

.hero-outline-btn {
    border: 1px solid rgba(232, 220, 200, .5);
    color: var(--cream);
    background: transparent;
}

.hero-outline-btn:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--navy);
}

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(232, 220, 200, .65);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

.hero-scroll i {
    color: var(--gold);
}


/* =========================================================
   WELCOME SECTION
   ========================================================= */

.welcome-section {
    background: var(--white);
}

.welcome-image {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.welcome-image img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.image-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.image-badge span {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.image-badge strong {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
    margin: 5px 0;
}

.image-badge small {
    font-size: .58rem;
    font-weight: 600;
    max-width: 100px;
}

.welcome-content {
    padding-left: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.text-link i {
    color: var(--gold);
    transition: transform .25s ease;
}

.text-link:hover {
    color: var(--gold);
}

.text-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SERVICE TIMES
   ========================================================= */

.service-times-section {
    background: var(--navy);
    padding: 55px 0;
    color: var(--cream);
}

.service-times-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-intro {
    max-width: 320px;
}

.service-intro .section-label {
    margin-bottom: 8px;
}

.service-intro h2 {
    color: var(--cream);
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-intro p {
    color: rgba(232, 220, 200, .65);
    margin: 0;
}

.service-schedule {
    display: flex;
    flex: 1;
    gap: 20px;
}

.service-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    border-left: 1px solid rgba(198, 167, 94, .4);
}

.service-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(198, 167, 94, .12);
    color: var(--gold);
}

.service-day {
    display: block;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.service-card h3 {
    color: var(--cream);
    font-size: 1rem;
    margin: 3px 0;
}

.service-card p {
    color: rgba(232, 220, 200, .55);
    font-size: .78rem;
    margin: 0;
}


/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-section {
    background: var(--light-bg);
}

.leadership-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.leadership-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(198, 167, 94, .4);
    border-radius: var(--radius-md);
    transform: translate(12px, 12px);
    pointer-events: none;
}

.leadership-image img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.leadership-content {
    max-width: 600px;
}

.leadership-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 3px solid var(--gold);
    background: rgba(198, 167, 94, .08);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.7;
}

.leader-name strong {
    display: block;
    color: var(--navy);
    font-size: .95rem;
}

.leader-name span {
    display: block;
    color: var(--gold);
    font-size: .75rem;
    margin-top: 3px;
}


/* =========================================================
   SECTION HEADING ROW
   ========================================================= */

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}


/* =========================================================
   MINISTRY PREVIEW
   ========================================================= */

.ministries-preview {
    background: var(--white);
}

.ministry-preview-card {
    position: relative;
    min-height: 290px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.ministry-preview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 167, 94, .5);
    box-shadow: var(--shadow-md);
}

.ministry-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(31, 42, 68, .18);
    font-size: .75rem;
    font-weight: 800;
}

.ministry-preview-card>i {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
}

.ministry-preview-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.ministry-preview-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0;
}


/* =========================================================
   EVENTS
   ========================================================= */

.events-preview-section {
    background: var(--light-bg);
}

.event-preview-card {
    display: flex;
    min-height: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.event-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.event-preview-date {
    width: 90px;
    flex: 0 0 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cream);
}

.event-preview-date span {
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.event-preview-date strong {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    line-height: 1;
}

.event-preview-content {
    padding: 30px 25px;
}

.card-label {
    display: inline-block;
    color: var(--gold);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.event-preview-content h3 {
    font-size: 1.25rem;
    margin: 7px 0;
}

.event-preview-content p {
    color: var(--muted);
    font-size: .8rem;
    margin-bottom: 20px;
}

.event-preview-content a {
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.event-preview-content a i {
    color: var(--gold);
    margin-left: 5px;
}


/* =========================================================
   SERMON CTA
   ========================================================= */

.sermon-cta-section {
    min-height: 460px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(31, 42, 68, .9), rgba(31, 42, 68, .9)), url('../images/sermon-bg.jpg') center/cover no-repeat;
    color: var(--cream);
}

.sermon-cta-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.sermon-cta-content h2 {
    color: var(--cream);
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin-bottom: 18px;
}

.sermon-cta-content h2 span {
    color: var(--gold);
}

.sermon-cta-content p {
    color: rgba(232, 220, 200, .7);
    max-width: 550px;
    margin-bottom: 30px;
}


/* =========================================================
   BRANCHES
   ========================================================= */

.branches-section {
    background: var(--white);
}

.branch-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.branch-card:hover {
    border-color: rgba(198, 167, 94, .5);
    box-shadow: var(--shadow-sm);
}

.branch-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--navy);
    border-radius: 50%;
}

.branch-card h3 {
    font-size: 1.2rem;
    margin: 5px 0;
}

.branch-card p {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 15px;
}

.branch-card a {
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.branch-card a i {
    color: var(--gold);
    margin-left: 5px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta-section {
    padding: 90px 0;
    background: var(--cream);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: auto;
}

.final-cta-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 15px;
}

.final-cta-content h2 span {
    color: var(--gold);
}

.final-cta-content p {
    color: rgba(31, 42, 68, .65);
    margin-bottom: 28px;
}


/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.inner-page-hero {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70)), url('../images/page-hero.jpg') center/cover no-repeat;
    color: var(--cream);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(198, 167, 94, .12), transparent 35%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 70px 0;
}

.inner-hero-content h1 {
    color: var(--cream);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    margin-bottom: 18px;
}

.inner-hero-content h1 span {
    color: var(--gold);
}

.inner-hero-content p {
    color: rgba(232, 220, 200, .72);
    max-width: 600px;
    margin: 0;
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-image-wrapper {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-image-wrapper img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
}

.about-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 65%;
    background: var(--gold);
    border-radius: var(--radius-md);
}

.about-mission-section {
    background: var(--light-bg);
}

.mission-card {
    position: relative;
    height: 100%;
    padding: 45px;
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mission-card-dark {
    background: var(--navy);
}

.mission-card-dark h2 {
    color: var(--cream);
}

.mission-card-dark p {
    color: rgba(232, 220, 200, .65);
}

.mission-number {
    position: absolute;
    right: 30px;
    top: 25px;
    color: rgba(31, 42, 68, .12);
    font-size: 2rem;
    font-weight: 800;
}

.mission-card-dark .mission-number {
    color: rgba(232, 220, 200, .08);
}

.mission-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    margin-bottom: 30px;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: rgba(31, 42, 68, .65);
    margin: 0;
}

.value-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(198, 167, 94, .4);
}

.value-card>span {
    color: rgba(31, 42, 68, .2);
    font-size: .7rem;
    font-weight: 800;
}

.value-card>i {
    display: block;
    color: var(--gold);
    font-size: 1.8rem;
    margin: 25px 0 18px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: .82rem;
    margin: 0;
}

.value-card.dark {
    background: var(--navy);
    border-color: var(--navy);
}

.value-card.dark h2 {
    color: var(--white);
}

.value-card.dark p {
    color: rgba(255, 255, 255, 0.68);
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(31, 42, 68, 0.10);
}

.leader-image {
    height: 420px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-content {
    padding: 25px;
}

.leader-content h3 {
    margin-top: 8px;
    font-size: 1.35rem;
}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.large-service-card {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

.large-service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(198, 167, 94, .4);
}

.service-card-highlight {
    background: var(--light-bg);
}

.service-day-block {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--navy);
    color: var(--cream);
    border-radius: var(--radius-md);
}

.service-day-block span {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-day-block strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.large-service-info h2 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.large-service-info p {
    color: var(--muted);
    font-size: .85rem;
    max-width: 650px;
    margin-bottom: 15px;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-meta span {
    color: var(--navy);
    font-size: .75rem;
    font-weight: 600;
}

.service-meta i {
    color: var(--gold);
    margin-right: 5px;
}


/* =========================================================
   SERMONS PAGE
   ========================================================= */

.featured-sermon {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--navy);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--cream);
}

.featured-sermon-image {
    position: relative;
    min-height: 450px;
}

.featured-sermon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-sermon-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 68, .25);
}

.play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 1.1rem;
}

.featured-sermon-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.featured-sermon-content h2 {
    color: var(--cream);
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.featured-sermon-content p {
    color: rgba(232, 220, 200, .65);
    font-size: .9rem;
    margin-bottom: 25px;
}

.sermon-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.sermon-meta span {
    color: rgba(232, 220, 200, .7);
    font-size: .72rem;
}

.sermon-meta i {
    color: var(--gold);
    margin-right: 7px;
}

.sermon-library-section {
    background: var(--light-bg);
}

.sermon-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sermon-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sermon-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.04);
}

.sermon-play {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: .75rem;
}

.sermon-card-content {
    padding: 25px;
}

.sermon-card-content h3 {
    font-size: 1.25rem;
    margin: 8px 0;
}

.sermon-card-content p {
    color: var(--muted);
    font-size: .75rem;
    margin-bottom: 18px;
}

.sermon-card-content a {
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.sermon-card-content a i {
    color: var(--gold);
    margin-left: 5px;
}


/* =========================================================
   EVENTS PAGE
   ========================================================= */

.events-page-hero {
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70)), url('../images/events-hero.jpg') center/cover no-repeat;
}

.event-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.event-date {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cream);
}

.event-date span {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.event-date strong {
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
}

.event-card-body {
    padding: 30px;
}

.event-card-body h3 {
    font-size: 1.35rem;
    margin: 8px 0 12px;
}

.event-card-body p {
    color: var(--muted);
    font-size: .82rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
}

.event-meta span {
    color: var(--muted);
    font-size: .72rem;
}

.event-meta i {
    width: 18px;
    color: var(--gold);
}

.event-card-dark {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

.event-card-dark h3 {
    color: var(--cream);
}

.event-card-dark p {
    color: rgba(232, 220, 200, .65);
}


/* =========================================================
   MINISTRIES PAGE
   ========================================================= */

.ministries-page-hero {
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70)), url('../images/ministries-hero.jpg') center/cover no-repeat;
}

.ministries-section {
    background: var(--light-bg);
}

.ministry-card {
    position: relative;
    height: 100%;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(198, 167, 94, .45);
}

.ministry-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    margin-bottom: 25px;
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(31, 42, 68, .12);
    font-size: .9rem;
    font-weight: 800;
}

.ministry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.ministry-card p {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 22px;
}

.ministry-card a {
    color: var(--navy);
    text-decoration: none;
    font-size: .75rem;
    font-weight: 700;
}

.ministry-card a i {
    color: var(--gold);
    margin-left: 5px;
}


/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-page-hero {
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70)), url('../images/gallery-hero.jpg') center/cover no-repeat;
}

.gallery-section {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 22px;
    opacity: 0;
    background: linear-gradient(transparent 35%, rgba(31, 42, 68, .85));
    color: var(--cream);
    transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: .75rem;
    font-weight: 700;
}

.gallery-overlay i {
    color: var(--gold);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 18px 16px;
    background: linear-gradient(transparent, rgba(31, 42, 68, .9));
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page-hero {
    background: linear-gradient(90deg, rgba(31, 42, 68, .94), rgba(31, 42, 68, .70)), url('../images/contact-hero.jpg') center/cover no-repeat;
}

.contact-section {
    background: var(--light-bg);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
}

.contact-info-item span {
    display: block;
    color: var(--gold);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item strong {
    display: block;
    color: var(--navy);
    font-size: .85rem;
}

.contact-socials {
    margin-top: 40px;
}

.contact-socials>span {
    display: block;
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.contact-socials>div {
    display: flex;
    gap: 10px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--cream);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.contact-form-card {
    padding: 45px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.contact-form-card h2 span {
    color: var(--gold);
}

.contact-form-card>p {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    color: var(--navy);
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.contact-form .form-control {
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--cream);
    color: var(--navy);
    font-size: .8rem;
    box-shadow: none;
    width: 100%;
    padding: 10px 15px;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, .12);
    outline: none;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cream);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.contact-detail strong {
    display: block;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-detail p {
    margin: 0;
    color: var(--muted);
}


/* =========================================================
   CTA SECTIONS
   ========================================================= */

.events-cta,
.ministries-cta,
.gallery-cta,
.contact-bottom-section {
    padding: 75px 0;
    background: var(--navy);
    color: var(--cream);
}

.events-cta-inner,
.gallery-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.events-cta h2,
.gallery-cta h2,
.ministries-cta h2,
.contact-bottom-section h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 10px 0 12px;
}

.events-cta h2 span,
.gallery-cta h2 span,
.ministries-cta h2 span,
.contact-bottom-section h2 span {
    color: var(--gold);
}

.events-cta p {
    color: rgba(232, 220, 200, .65);
    max-width: 650px;
    margin: 0;
}

.ministries-cta p {
    color: rgba(232, 220, 200, .65);
    max-width: 650px;
    margin: 0;
}

.contact-bottom-section {
    text-align: center;
}

.contact-bottom-inner {
    max-width: 750px;
    margin: auto;
}

.contact-bottom-section p {
    color: rgba(232, 220, 200, .65);
    max-width: 600px;
    margin: 0 auto 25px;
}

.about-leadership-cta,
.branch-map-section,
.first-visit-section,
.sermon-bottom-cta {
    padding: 70px 0;
    background: var(--navy);
    color: var(--cream);
}

.about-leadership-cta h2,
.branch-map-section h2,
.first-visit-section h2,
.sermon-bottom-cta h2 {
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.about-leadership-cta p,
.branch-map-section p,
.first-visit-section p,
.sermon-bottom-cta p {
    color: rgba(232, 220, 200, .65);
    max-width: 650px;
    margin: 0;
}


/* =========================================================
   BRANCHES PAGE
   ========================================================= */

.branches-list-section {
    background: var(--light-bg);
}

.full-branch-card {
    height: 100%;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.full-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.branch-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.branch-card-top>i {
    color: var(--gold);
    font-size: 1.4rem;
}

.branch-status {
    color: var(--gold);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.full-branch-card h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.branch-location {
    color: var(--muted);
    font-size: .9rem;
}

.branch-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.branch-details>div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.branch-details i {
    color: var(--gold);
    margin-top: 3px;
}

.branch-details span {
    color: var(--muted);
    font-size: .75rem;
}

.branch-details strong {
    color: var(--navy);
    font-size: .8rem;
}

.branch-map-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
    .site-header .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .site-header .nav-link::after {
        left: 9px;
        right: 9px;
    }

    .nav-cta {
        margin-left: 5px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 70px;
    }

    .site-header .navbar {
        min-height: 75px;
    }

    .site-logo img {
        width: 130px;
        max-height: 58px;
    }

    .hero-section {
        min-height: 600px;
    }

    .service-times-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-intro {
        max-width: 600px;
    }

    .service-schedule {
        width: 100%;
    }

    .welcome-content {
        padding-left: 0;
    }

    .featured-sermon {
        grid-template-columns: 1fr;
    }

    .featured-sermon-image {
        min-height: 350px;
    }

    .large-service-card {
        grid-template-columns: 90px 1fr;
    }

    .service-action {
        grid-column: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .events-cta-inner,
    .gallery-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        padding: 65px 0 55px;
    }

    .footer-brand {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .section-heading-centered {
        margin-bottom: 40px;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: .92rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }

    .welcome-image img {
        min-height: 380px;
    }

    .image-badge {
        width: 130px;
        height: 130px;
    }

    .image-badge strong {
        font-size: 2rem;
    }

    .service-schedule {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .leadership-image img {
        min-height: 400px;
    }

    .inner-page-hero {
        min-height: 360px;
    }

    .inner-hero-content {
        padding: 55px 0;
    }

    .about-image-wrapper img {
        min-height: 350px;
    }

    .mission-card {
        padding: 30px;
    }

    .branch-details {
        grid-template-columns: 1fr;
    }

    .branch-map-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .large-service-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .service-action {
        grid-column: auto;
    }

    .featured-sermon-content {
        padding: 35px 25px;
    }

    .featured-sermon-content h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item-large {
        grid-row: span 1;
    }

    .contact-form-card {
        padding: 30px 22px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .welcome-image {
        padding-right: 15px;
        padding-bottom: 20px;
    }

    .welcome-image img {
        min-height: 330px;
    }

    .image-badge {
        width: 110px;
        height: 110px;
    }

    .image-badge strong {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 18px 15px;
    }

    .ministry-preview-card {
        min-height: auto;
        padding: 28px;
    }

    .event-preview-card {
        min-height: 180px;
    }

    .event-preview-date {
        width: 75px;
        flex-basis: 75px;
    }

    .inner-page-hero {
        min-height: 330px;
    }

    .full-branch-card {
        padding: 25px;
    }

    .service-day-block {
        width: 75px;
        height: 75px;
    }

    .service-day-block strong {
        font-size: 1.6rem;
    }

    .large-service-info h2 {
        font-size: 1.3rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-card-body,
    .ministry-card {
        padding: 25px;
    }
}

/* =========================================================
   FOOTER - Namecheap Style
   ========================================================= */

.site-footer {
    background: #1a2332;
    color: #e8dcc8;
    position: relative;
}

/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    padding: 70px 0 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================================
   FOOTER GRID - Side by Side Layout
   ========================================================= */

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 -15px;
}

.footer-col {
    padding: 0 15px;
    box-sizing: border-box;
}

/* Column Widths - Side by Side */
.footer-col-brand {
    flex: 0 0 28%;
    max-width: 25%;
}

.footer-col-links {
    flex: 0 0 18%;
    max-width: 18%;
}

.footer-col-worship {
    flex: 0 0 24%;
    max-width: 24%;
}

.footer-col-contact {
    flex: 0 0 24%;
    max-width: 24%;
}

/* =========================================================
   BRAND COLUMN
   ========================================================= */

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer-description {
    color: rgba(232, 220, 200, 0.7);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 320px;
}

/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(198, 167, 94, 0.25);
    border-radius: 50%;
    color: #e8dcc8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-socials a:hover {
    background: #c6a75e;
    border-color: #c6a75e;
    color: #1a2332;
    transform: translateY(-3px);
}

/* =========================================================
   COLUMN HEADINGS
   ========================================================= */

.footer-col h4 {
    color: #e8dcc8;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 0.3px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #c6a75e;
}

/* =========================================================
   QUICK LINKS
   ========================================================= */

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(232, 220, 200, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #c6a75e;
    transform: translateX(4px);
}

/* =========================================================
   WORSHIP SERVICES
   ========================================================= */

.footer-service {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid rgba(232, 220, 200, 0.06);
}

.footer-service:last-of-type {
    border-bottom: none;
}

.footer-service .service-day {
    color: #c6a75e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.footer-service .service-name {
    color: rgba(232, 220, 200, 0.75);
    font-size: 0.85rem;
}

.footer-location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #e8dcc8;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-location-link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.footer-location-link:hover {
    color: #c6a75e;
}

.footer-location-link:hover i {
    transform: translateX(4px);
}

/* =========================================================
   CONTACT ITEMS
   ========================================================= */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .contact-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 167, 94, 0.1);
    color: #c6a75e;
    border-radius: 50%;
    font-size: 0.75rem;
}

.footer-contact-item span:last-child,
.footer-contact-item a {
    color: rgba(232, 220, 200, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: #c6a75e;
}

/* =========================================================
   FOOTER ACCENT
   ========================================================= */

.footer-accent {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 167, 94, 0.3), transparent);
}

/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(232, 220, 200, 0.5);
    font-size: 0.78rem;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.developer-credit a {
    color: #c6a75e;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}

.developer-credit a:hover {
    color: #e8dcc8;
}

.developer-divider {
    color: rgba(232, 220, 200, 0.2);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet - 768px to 991px */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 35px;
    }

    .footer-col-brand {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-col-links,
    .footer-col-worship,
    .footer-col-contact {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-logo img {
        width: 150px;
    }
}

/* Mobile - below 767px */
@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-col-brand,
    .footer-col-links,
    .footer-col-worship,
    .footer-col-contact {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .developer-credit {
        justify-content: center;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-description {
        font-size: 0.85rem;
    }
}

/* Extra Small - below 575px */
@media (max-width: 575px) {
    .footer-socials a {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .footer-contact-item .contact-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 0.7rem;
    }

    .footer-contact-item span:last-child,
    .footer-contact-item a {
        font-size: 0.8rem;
    }
}
