/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* ===================== ABOUT PAGE TITLE ===================== */
.page-title-about {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-title-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}
.page-title-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
}
.page-title-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
    text-align: right;
}
.page-title-subtitle {
    display: inline-block;
    color: #d4a84b;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 6px 18px;
    border: 1px solid rgba(212, 168, 75, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(4px);
    background: rgba(212, 168, 75, 0.1);
    letter-spacing: 0.5px;
}
.page-title-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}
.page-title-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}
.page-title-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-title-breadcrumb a:hover {
    color: #d4a84b;
}
.page-title-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}
.page-title-breadcrumb > span:last-child {
    color: #d4a84b;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .page-title-about {
        min-height: 300px;
    }
    .page-title-content {
        padding: 100px 0 50px;
    }
    .page-title-content h1 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .page-title-about {
        min-height: 250px;
    }
    .page-title-content {
        padding: 90px 0 40px;
    }
    .page-title-content h1 {
        font-size: 28px;
    }
    .page-title-subtitle {
        font-size: 13px;
    }
}

/* ===================== ABOUT ZIGZAG ===================== */
.about-zigzag-section {
    background: #fafafa;
}

.zigzag-row {
    margin-bottom: 60px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.zigzag-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.zigzag-image-box:hover img {
    transform: scale(1.03);
}

.zigzag-text-box {
    padding: 20px 30px;
}

.zigzag-text-box p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.zigzag-text-box .sec-title h2 {
    font-size: 32px;
}

.zigzag-text-box .sec-title span i {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .zigzag-row .zigzag-image-col {
        margin-bottom: 30px;
    }

    .zigzag-row-reverse .order-lg-1 {
        order: 2 !important;
    }

    .zigzag-row-reverse .order-lg-2 {
        order: 1 !important;
    }

    .zigzag-text-box {
        padding: 10px 15px;
    }
}

/* ================================================================
   HOMEPAGE REDESIGN
================================================================ */

/* --- Section Badge (reusable) --- */
.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #616b76;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.section-badge i {
    margin-left: 6px;
}
.section-badge-light {
    color: rgba(255,255,255,0.85);
}
.section-badge-light i {
    margin-left: 6px;
}
.section-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.5;
    color: #2a2a2a;
    margin-bottom: 10px;
}

/* ===================== HERO ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
    max-width: 700px;
}
.hero-tagline {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.08);
}
.hero-tagline i {
    margin-left: 8px;
    color: #d4a84b;
}
.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-buttons .theme-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hero-buttons .theme-btn i {
    margin-right: 8px;
}
.btn-hero-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
}
.btn-hero-outline:hover {
    background: #fff !important;
    color: #2a2a2a !important;
    border-color: #fff !important;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-down-link {
    display: block;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 14px;
    position: relative;
}
.scroll-dot {
    display: block;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50%      { top: 24px; opacity: 0.3; }
}

/* ===================== INTRO CARDS ===================== */
.intro-cards-section {
    background: #f8f9fb;
    margin-top: -80px;
    position: relative;
    z-index: 4;
    padding: 40px 0 100px;
}
.intro-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 35px 35px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #616b76, #8a9199);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.intro-card:hover::before {
    transform: scaleX(1);
}
.intro-card-featured {
    background: #616b76;
    border-color: #616b76;
}
.intro-card-featured .intro-card-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.intro-card-featured .intro-card-title {
    color: #fff;
}
.intro-card-featured .intro-card-text {
    color: rgba(255,255,255,0.85);
}
.intro-card-featured .intro-card-link {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.4);
}
.intro-card-featured .intro-card-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}
.intro-card-featured::before {
    background: linear-gradient(90deg, #d4a84b, #e6c97a);
}
.intro-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(97,107,118,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #616b76;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}
.intro-card:hover .intro-card-icon {
    transform: scale(1.1);
}
.intro-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 14px;
}
.intro-card-text {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}
.intro-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #616b76;
    border-bottom: 2px solid rgba(97,107,118,0.3);
    padding-bottom: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.intro-card-link:hover {
    color: #2a2a2a;
    border-bottom-color: #2a2a2a;
}
.intro-card-link i {
    margin-right: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.intro-card-link:hover i {
    transform: translateX(-4px);
}

/* ===================== ABOUT PREVIEW ===================== */
.home-about-section {
    padding: 100px 0;
    background: #fff;
}
.home-about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.home-about-image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #616b76;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(97,107,118,0.3);
}
.about-image-badge i {
    font-size: 22px;
    color: #d4a84b;
}
.home-about-content {
    padding-right: 40px;
}
.home-about-content .section-heading {
    margin-bottom: 20px;
}
.home-about-content > p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}
.about-features {
    margin-bottom: 35px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}
.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(97,107,118,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #616b76;
    transition: all 0.3s ease;
}
.about-feature-item:hover .feature-icon {
    background: #616b76;
    color: #fff;
}
.about-feature-item h5 {
    font-size: 17px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 4px;
    text-align: right;
}
.about-feature-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: right;
}

/* ===================== VERSE BANNER ===================== */
.verse-banner-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.verse-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.verse-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.verse-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}
.verse-icon {
    font-size: 40px;
    color: #d4a84b;
    margin-bottom: 25px;
}
.verse-text {
    font-size: 26px;
    line-height: 2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px;
    border: none;
    padding: 0;
}
.verse-ref {
    font-size: 16px;
    color: #d4a84b;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===================== TOPIC CARDS ===================== */
.home-topics-section {
    background: #f8f9fb;
    padding: 100px 0;
}
.topic-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.topic-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.topic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.topic-card:hover .topic-card-image img {
    transform: scale(1.1);
}
.topic-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(97,107,118,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.topic-card:hover .topic-card-overlay {
    opacity: 1;
}
.topic-card-overlay a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #616b76;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: scale(0.7);
}
.topic-card:hover .topic-card-overlay a {
    transform: scale(1);
}
.topic-card-body {
    padding: 25px;
}
.topic-tag {
    display: inline-block;
    background: rgba(97,107,118,0.08);
    color: #616b76;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.topic-card-body h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}
.topic-card-body h4 a {
    color: #2a2a2a;
    transition: color 0.3s ease;
    text-decoration: none;
}
.topic-card-body h4 a:hover {
    color: #616b76;
}
.topic-card-body > p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}

/* ===================== CTA BIBLE ===================== */
.cta-bible-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bible-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cta-bible-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(97,107,118,0.88) 0%, rgba(42,42,42,0.85) 100%);
}
.cta-bible-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}
.cta-bible-icon {
    font-size: 50px;
    color: #d4a84b;
    margin-bottom: 25px;
}
.cta-bible-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.5;
}
.cta-bible-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 35px;
}
.btn-cta-light {
    background: #fff !important;
    color: #2a2a2a !important;
    padding: 15px 35px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.btn-cta-light:hover {
    background: #d4a84b !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-cta-light i {
    margin-right: 8px;
}

/* ===================== COACHING (homepage) ===================== */
.home-coaching-section {
    background: #fff;
    padding: 100px 0;
}
.rtl .coaching-block-one .inner-box .text {
    padding-right: 30px;
    padding-left: 30px;
}
.rtl .coaching-block-one .inner-box .overlay-content {
    padding-right: 30px;
    padding-left: 30px;
}

/* ===================== WORSHIP BANNER ===================== */
.worship-banner-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.worship-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.worship-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}
.worship-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.worship-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.5;
}
.worship-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: justify;
}

/* ===================== STATS ===================== */
.stats-section {
    background: #f8f9fb;
    padding: 80px 0;
}
.stat-item {
    padding: 35px 20px;
    transition: all 0.3s ease;
}
.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(97,107,118,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #616b76;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}
.stat-item:hover .stat-icon {
    background: #616b76;
    color: #fff;
    transform: scale(1.1);
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 6px;
}
.stat-item p {
    font-size: 15px;
    color: #777;
    margin: 0;
    font-weight: 500;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
    .hero-title { font-size: 46px; }
    .hero-desc { font-size: 18px; }
    .home-about-content { padding-right: 20px; }
}
@media (max-width: 991px) {
    .hero-content { padding: 140px 0 100px; }
    .hero-title { font-size: 38px; }
    .intro-cards-section { margin-top: -50px; }
    .home-about-section { padding: 70px 0; }
    .home-about-content { padding-right: 0; margin-top: 40px; }
    .verse-banner-section { padding: 80px 0; }
    .verse-text { font-size: 22px; }
    .worship-content { max-width: 100%; }
    .cta-bible-content h2 { font-size: 28px; }
}
@media (max-width: 767px) {
    .hero-section { min-height: 85vh; }
    .hero-content { padding: 120px 0 80px; max-width: 100%; }
    .hero-title { font-size: 30px; }
    .hero-desc { font-size: 16px; }
    .hero-tagline { font-size: 14px; }
    .intro-cards-section { margin-top: -40px; }
    .intro-card { padding: 30px 25px 25px; }
    .section-heading { font-size: 28px; }
    .verse-text { font-size: 18px; }
    .verse-banner-section,
    .worship-banner-section,
    .cta-bible-section { padding: 70px 0; }
    .stats-section { padding: 50px 0; }
    .stat-item { padding: 20px 15px; }
    .stat-number { font-size: 28px; }
}

