/* ======================================================
   PAGE-SPECIFIC BANNER IMAGES
   ====================================================== */

/* Programs main page */
.banner-mission {
    background-image: url('../img/banners/mission.webp');
}

/* Fine-tuned focal points */
.banner-mission {
    background-position: center 15%;
}

/* ===========================================
   Mission & Vision Banner
=========================================== */
.lis-mv-banner-content h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.lis-mv-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-size: cover;

}

.lis-mv-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(122, 105, 189, 0.65),
            rgba(46, 115, 185, 0.65));
}

.lis-mv-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.lis-mv-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.35));
    z-index: 1;
}

@media (max-width: 768px) {
    .lis-mv-banner {
        height: 220px;
        background-position: center 30%;
    }
}


/* ================================
   MISSION – VISION – MOTTO SECTION
=================================== */
/* Container for all cards */
/* ==========================
   PREMIUM HORIZONTAL SPLIT CARDS
=========================== */

/* Container */
.lis-hsplit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Card base */
.lis-hcard.premium {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 300px;
    padding: 25px 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.lis-hcard.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* Icon */
.lis-hicon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4a90e2, #2e73b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.35s ease;
}

.lis-hcard.premium:hover .lis-hicon {
    transform: scale(1.12);
    background: linear-gradient(135deg, #2e73b9, #4a90e2);
}

/* Text */
.lis-htext {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lis-htext h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #2e73b9;
    margin: 0 0 6px 0;
    position: relative;
}

.lis-htext h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #2e73b9;
    margin-top: 6px;
    border-radius: 2px;
}

.lis-htext p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
}

.lis-mv-motto {
    font-style: italic;
    font-weight: 600;
    color: #2e73b9;
}

/* Responsive */
@media (max-width: 992px) {
    .lis-hcard.premium {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .lis-hcard.premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lis-hicon {
        margin-bottom: 12px;
    }
}

/* ==========================
   ESLRs ZIGZAG WITH IMAGES
=========================== */

.lis-eslrs-section {
    padding: 60px 0;
    background: #f3f6fb;
}

.lis-eslrs-section h2 {
    font-size: 2rem;
    color: #2e73b9;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.lis-eslrs-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #2e73b9;
    margin: 8px auto 0;
    border-radius: 2px;
}

.lis-eslrs-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 50px;
}

/* Zigzag item */
.lis-eslr-item.zigzag {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.lis-eslr-item.zigzag.reverse {
    flex-direction: row-reverse;
}

/* Content */
.lis-eslr-content {
    flex: 1;
}

.lis-eslr-content h3 {
    font-size: 1.4rem;
    color: #2e73b9;
    font-weight: 600;
    margin-bottom: 12px;
}

.lis-eslr-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
    font-size: 1rem;
    line-height: 1.65;
}

.lis-eslr-content ul li {
    margin-bottom: 6px;
}

/* Image */
.lis-eslr-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lis-eslr-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.lis-eslr-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {

    .lis-eslr-item.zigzag,
    .lis-eslr-item.zigzag.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lis-eslr-image {
        margin-top: 20px;
    }

    .lis-eslr-content ul {
        padding-left: 0;
        list-style-position: inside;
    }
}

/* -------------------- Statement of Faith -------------------- */

.faith-grid .col-12 {
    display: flex;
}

/* Faith Box */
.faith-box {
    flex: 1;
    min-height: 270px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faith-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg,
            rgba(46, 115, 185, 0.08),
            rgba(46, 115, 185, 0.02));
}

/* Text */
.faith-box p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

/* -------------------- Faith Icons (FIXED) -------------------- */

.faith-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Bible */
.faith-icon.bible {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="%232e73b9" d="M4 3h13a3 3 0 013 3v15a1 1 0 01-1 1H6a2 2 0 01-2-2V3z"/%3E%3Crect x="11" y="7" width="2" height="8" fill="%23ffffff"/%3E%3Crect x="8" y="10" width="8" height="2" fill="%23ffffff"/%3E%3C/svg%3E');
}

/* Trinity */
.faith-icon.trinity {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232e73b9" stroke-width="2"%3E%3Cpath d="M12 2l9 18H3L12 2z"/%3E%3C/svg%3E');
}

/* Cross */
.faith-icon.cross {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e73b9"%3E%3Cpath d="M11 2h2v6h6v2h-6v12h-2V10H5V8h6z"/%3E%3C/svg%3E');
}

/* Heart */
.faith-icon.heart {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e73b9"%3E%3Cpath d="M12 21s-7-4.35-7-10a4 4 0 018-1 4 4 0 018 1c0 5.65-7 10-7 10z"/%3E%3C/svg%3E');
}

/* Gift */
.faith-icon.gift {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e73b9"%3E%3Cpath d="M20 7h-2a3 3 0 10-6 0 3 3 0 10-6 0H4v4h16V7z"/%3E%3C/svg%3E');
}

/* Dove */
.faith-icon.dove {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e73b9"%3E%3Cpath d="M2 12c6-1 10-5 12-9 2 6-1 12-6 15-2 1-4 1-6-1z"/%3E%3C/svg%3E');
}

/* Resurrection */
.faith-icon.resurrection {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="%232e73b9" d="M3 20h18v2H3v-2z"/%3E%3Cpath fill="%232e73b9" d="M6 6h8c3 0 5 2 5 5v7H6V6z"/%3E%3Cpath fill="%23ffffff" d="M8 10h6v6H8z"/%3E%3Ccircle cx="17" cy="14" r="2" fill="%232e73b9"/%3E%3C/svg%3E');
}

/* Church */
.faith-icon.church {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e73b9"%3E%3Cpath d="M11 2h2v3h2v2h-2v3h-2V7H9V5h2V2zm-6 8l7-5 7 5v11H5V10zm6 5h2v6h-2v-6z"/%3E%3C/svg%3E');
}


/* Responsive tuning */
@media (max-width: 992px) {
    .faith-box {
        min-height: 240px;
    }
}

/* -------------------- About Page -------------------- */

/* Highlight blocks */
.about-highlight {
    background: linear-gradient(180deg,
            rgba(46, 115, 185, 0.08),
            rgba(46, 115, 185, 0.02));
    border-left: 4px solid #2e73b9;
    padding: 2rem;
    border-radius: 10px;
}

/* Profile items */
.profile-item {
    padding: 2rem 1.5rem;
}

.profile-item h3 {
    color: #2e73b9;
    font-size: 2rem;
}

.profile-item p {
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* CTA box */
.about-cta {
    width: 70%;
    background: #f4f7fb;
    border-radius: 14px;
    padding: 3rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .about-cta {
        width: 100%;
    }
}