:root {
    --primary-accent: #ffffff;
    --soft-gray: #f9f9f9;
    --dark-gray: #111111;
    --accent-gold: #c5a059;
    --primary-gold: #c5a059;
    --blue-1: #029df6;
    --blue-2: #68bff1;
    --dark-charcoal: #1a1a1a;
    --soft-white: #f4f5f7;
    --soft-border: rgba(255,255,255,0.1);
    --form-bg: #141414;
            --sky-blue: #029df6;
            --azure-light: #e0f2fe;
            --electric-blue: #38bdf8;
            --slate-900: #0f172a;
            --slate-800: #1e293b;
            --glass-white: rgba(255, 255, 255, 0.85);
            --light-primary: #f1f5f9;
            --cta-primary-bg: #050505;
            --cta-accent-gold: #e2b86d;
            --cta-accent-blue: #38bdf8;
            --cta-text-main: #ffffff;
            --cta-text-muted: #cbd5e1;
            --cta-glass-border: rgba(255, 255, 255, 0.12);
    
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 120%;
    width: 100%;
    /* background: var(--azure-light); */
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}
.heading-fs-1{
    font-size: clamp(42px, 8vw, 100px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    margin: 0;
    color: var(--slate-900);
}

.big-heading-1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 900;
    /* text-transform: uppercase; */
    letter-spacing: -0.04em;
}


.text-blue-1{
    color: var(--blue-1) !important;
}
.text-blue-2{
    color: var(--blue-2) !important;
}
.text-light-primary{
    color: var(--azure-light) !important;
}
.bg-light-primary{
    background-color: var(--azure-light);
}
/* INDEPENDENT CONTAINER */
.jt-slider-viewport {
    position: relative;
    width: 100%;
    /* Increased base height slightly to compensate for the menu offset */
    height: 700px; 
    max-height: 95vh;
    overflow: hidden;
    background: var(--slate-900);
    touch-action: pan-y;
}

/* TRACK */
.jt-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--jt-transition-speed) var(--jt-ease);
    will-change: transform;
}

/* INDIVIDUAL SLIDE */
.jt-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /* Added padding-top to create safe space for your 90px menu */
    padding-top: calc(var(--jt-menu-height) + 2rem); 
    overflow: hidden;
}

/* BACKGROUNDS - These still start at top: 0 to bleed behind the menu */
.jt-slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.jt-slide-media img, .jt-slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jt-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 41, 59,0.2) 0%, rgba(30, 41, 59,0.7) 100%),
                linear-gradient(to bottom, rgba(30, 41, 59,0.3), rgba(30, 41, 59,0.5));
    z-index: 2;
}

/* CONTENT BLOCK */
.jt-slide-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    max-width: 900px;
    width: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.8s var(--jt-ease) 0.2s;
    padding-top: 150px;
}

.jt-slide.jt-active .jt-slide-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* TYPOGRAPHY */
.jt-tagline {
    display: block;
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.jt-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.jt-description {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    color: rgba(255,255,255,0.8);
    padding: 0 1rem;
}

/* BUTTONS */
.jt-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jt-btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.jt-btn-primary {
    background: white;
    color: black;
}

.jt-btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.jt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: var(--jt-accent-color);
    color: white;
    border-color: var(--jt-accent-color);
}

/* NAVIGATION */
.jt-nav-arrows {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 100;
}

.jt-nav-btn {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.jt-nav-btn:hover {
    background: white;
    color: black;
}

.jt-pagination {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.jt-page-dot {
    width: clamp(20px, 5vw, 40px);
    height: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.jt-page-dot.jt-active {
    background: white;
    width: clamp(40px, 10vw, 80px);
}

/* SECTION BELOW */
.jt-content-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    color: #333;
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 640px) {
    .jt-slider-viewport { height: 550px; }
    .jt-nav-arrows {
        right: 50%;
        transform: translateX(50%);
        bottom: 1.5rem;
    }
    .jt-pagination { display: none; }
    /* Adjusted padding for mobile to keep space balanced */
    .jt-slide { padding-top: calc(var(--jt-menu-height) + 1rem); }
    .jt-slide-content { padding-bottom: 4rem; }
}

/* hero styles */
/* High-End Hero - Responsive Height & Padding */
.hero-visual {
    position: relative;
    min-height: 60vh;
    height: auto;
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.75)), 
                url('../images/banner/c3-kabalagala-stage.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Better for mobile performance */
    display: flex;
    align-items: center;
    clip-path: ellipse(180% 100% at 50% 0%);
}

@media (min-width: 992px) {
    .hero-visual {
        height: 75vh;
        background-attachment: fixed;
        clip-path: ellipse(150% 100% at 50% 0%);
    }
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(10px);
    color: var(--electric-blue);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    line-height: 1.1;
}
/* Kinetic Hero2 Section */
.hero2 {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0f141a;
}
.hero2.mini-hero{
     height: 30vh;
     padding-top: 100px;
}

.hero2-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero2-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
}

.hero2-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: white;
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero2-subtitle {
    color: var(--blue-2); /* Gold */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 0 0 0;
    background: white;
}

.identity-card {
    border-left: 1px solid #eee;
    padding: 40px;
    height: 100%;
    transition: 0.3s;
}

.identity-card:hover {
    background: #fcfaf7;
}

/* Global Movement Callout with Video Trigger */
.global-callout {
    background: #0f141a;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(15, 20, 26, 0.5), rgba(15, 20, 26, 0.5)), url('../images/banner/c3-church-global-conference.webp');
    background-size: cover;
    background-position: center;
}

.play-btn-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.play-btn-circle {
    width: 100px;
    height: 100px;
    background: var(--blue-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.play-btn-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
    background: white;
    color: var(--blue-2);
}

.play-pulse {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--blue-2);
    opacity: 0.6;
    z-index: 1;
    animation: pulse-gold 2s infinite;
}

.global-callout-video{
    border: 1px solid white;
    padding: 60px 30px;
    border-radius: 25px;
}

.global-callout-video h5{
    color: var(--blue-2);
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Responsive Video Modal Styles */
.dynamic-video-modal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

.dynamic-video-modal .modal-content {
    background: transparent;
    border: none;
}

.dynamic-video-modal .modal-header { 
    border: none; 
    padding: 0 0 10px 0; 
    justify-content: flex-end; 
}

.dynamic-video-modal .btn-close { 
    filter: invert(1); 
    opacity: 1; 
    background-color: var(--blue-2);
    padding: 0.8rem;
    border-radius: 50%;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: var(--slate-900);
    border-radius: 4px;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
@media(max-width:767.98px){

}

/* --- CHURCH SERVICES SECTION ---font-size */
.jt-church-service-section {
    /* padding: 50px 11%; */
    color: #000000;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .jt-church-service-section { 
        /* padding: 140px 5%;  */
    }
}

.jt-church-service-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.jt-church-service-header {
    margin-bottom: 60px;
    /* border-bottom: 1px solid #eaeaea; */
    /* padding-bottom: 40px; */
    text-align: center;
}

.jt-church-service-headline-lg {
    font-size: clamp(42px, 8vw, 100px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    margin: 0;
    color: var(--slate-900);
}

.jt-church-service-subtext {
    max-width: 600px;
    line-height: 1.6;
    color: var(--slate-900);
    margin: 20px auto 0;
}

.jt-church-service-media-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    background: var(--slate-900);
}

@media (min-width: 1024px) {
    .jt-church-service-media-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 0px;
    }
}

.jt-church-service-hero-img-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    flex: 1.4;
}

@media (min-width: 1024px) {
    .jt-church-service-hero-img-wrap { height: auto; min-height: 500px; }
}

.jt-church-service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jt-church-service-schedule-wrap {
    background: var(--slate-900);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 40px 30px;
    width: 100%;
    z-index: 15;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
    /* border: 1px solid rgba(255,255,255,0.05); */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jt-church-service-schedule-title {
    margin-top: 0;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.jt-church-service-schedule-title::after {
    content: ''; height: 1px; flex-grow: 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
}

.jt-church-service-schedule-grid {
    display: grid; grid-template-columns: 1fr; gap: 30px;
}

.jt-church-service-time-slot {
    display: flex; flex-direction: column; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1);
}

.jt-church-service-time-slot:last-child { border-bottom: none; padding-bottom: 0; }

.jt-church-service-slot-day {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-bottom: 8px;
}

.jt-church-service-slot-name { font-size: 18px; font-weight: 800; color: var(--electric-blue); margin-bottom: 12px; }

.jt-church-service-slot-range {
    font-size: 15px; font-weight: 400; color: #fff; background: rgba(255,255,255,0.05); padding: 8px 12px; display: inline-block; border-radius: 4px; width: fit-content;
}

.jt-church-service-details {
    display: grid; grid-template-columns: 1fr; gap: 60px; padding-top: 20px;
}

@media (min-width: 1024px) {
    .jt-church-service-details { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

.jt-church-service-info-step { position: relative; }

.jt-church-service-step-num { font-size: 14px; font-weight: 800; color: var(--blue-2); margin-bottom: 15px; display: block; letter-spacing: 2px; }

.jt-church-service-info-title {  font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; }

.jt-church-service-info-text { color: #666; line-height: 1.7;}

.jt-church-service-actions {
    margin-top: 80px; display: flex; flex-direction: column; gap: 20px; justify-content: center; align-items: center;
}

@media (min-width: 640px) {
    .jt-church-service-actions { flex-direction: row; gap: 40px; }
}

.jt-church-service-btn-primary {
    background: var(--slate-900); color: #fff; padding: 22px 50px; text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 3px; transition: transform 0.3s, background 0.3s;
}

.jt-church-service-btn-primary:hover { transform: translateY(-5px); background: #222; }

/* --- PASTOR MESSAGE SECTION --- */
.lead-pastor-info {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Decor */
.lead-pastor-info .bg-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(179, 139, 89, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Image Styling with Fixed Aspect Ratio */
.lead-pastor-info  .image-card {
    position: relative;
    z-index: 2;
}

.lead-pastor-info .image-aspect-box {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 Aspect Ratio */
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lead-pastor-info .image-aspect-box:hover {
    transform: translateY(-10px);
}

.lead-pastor-info .image-aspect-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.lead-pastor-info .welcome-badge {
    position: absolute;
    left: -1rem;
    bottom: 1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.lead-pastor-info .welcome-badge i {
    color: var(--brand-accent);
    font-size: 1.5rem;
}

/* Text Content Styling */
.lead-pastor-info .section-tag {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blue-1);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.lead-pastor-info .headline {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 5px solid var(--blue-1);
    padding-left: 15px;
}

.lead-pastor-info .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--brand-accent);
    padding-left: 1.5rem;
}

.lead-pastor-info .signature-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lead-pastor-info .signature-text h3 {
    /* font-family: 'Playfair Display', serif; */
    font-weight: 700;
    margin: 0;
    color: var(--brand-primary);
}

.lead-pastor-info .signature-text span {
    color: var(--brand-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Custom Social Icons */
.lead-pastor-info .social-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.lead-pastor-info .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lead-pastor-info .social-link:hover {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
}

/* Responsive Logic */
@media (max-width: 991.98px) {
    .lead-pastor-info {
        padding: 4rem 0;
    }
    .lead-pastor-info .headline {
        text-align: center;
    }
    .lead-pastor-info .lead-text {
        border-left: none;
        border-bottom: 2px solid var(--brand-accent);
        padding-left: 0;
        padding-bottom: 1.5rem;
        text-align: center;
    }
    .lead-pastor-info .signature-block {
        justify-content: center;
        text-align: center;
    }
    .lead-pastor-info .welcome-badge {
        left: 1rem;
    }
}
/* --- MODERN PRAYER SECTION --- */
.jt-prayer-section {
    padding: 120px 5%;
    background: var(--slate-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Abstract Glow */
.jt-prayer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.jt-prayer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .jt-prayer-container {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }
}

.jt-prayer-content-side {
    max-width: 650px;
}

.jt-prayer-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-bottom: 30px;
}

.jt-prayer-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #4ade80;
}

.jt-prayer-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.jt-prayer-headline {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 40px;
}

.jt-prayer-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 60px;
    font-weight: 300;
}

/* Floating Prayer Form */
.jt-prayer-form-card {
    background: var(--form-bg);
    padding: 60px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.jt-prayer-form-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 45px;
    color: var(--accent-gold);
    text-align: center;
}

/* Highly Responsive Fullwidth Section */
        .prayer-cta-fullwidth {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 1rem; /* Better mobile spacing */
            
            /* Background Optimization */
            background-color: var(--deep-navy);
            background-image: 
                linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.95)),
                url('../images/banner/way-to-church.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax on desktop */
        }

        /* Disable fixed background on mobile for better performance/rendering */
        @media (hover: none) and (pointer: coarse) {
            .prayer-cta-fullwidth {
                background-attachment: scroll;
            }
        }

        .cta-content-wrapper {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1100px;
            padding: clamp(2.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
            text-align: center;
            
            /* Modern Glassmorphism */
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: clamp(24px, 5vw, 60px);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            margin: 0 auto;
        }

        .scripture-subtitle {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--electric-blue);
            font-size: clamp(0.9rem, 2.5vw, 1.25rem);
            margin-bottom: 1.5rem;
            display: block;
            letter-spacing: 1px;
        }

        .cta-headline {
            /* Fluid typography for large titles */
            font-size: clamp(2rem, 7vw, 5.2rem);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 720px;
            margin: 0 auto clamp(2rem, 5vw, 3.5rem) auto;
            line-height: 1.7;
        }

        /* Responsive Button Styling */
        .prayer-trigger-btn {
            background: white;
            color: var(--deep-navy);
            border: none;
            padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 5vw, 4rem);
            font-size: clamp(0.8rem, 1.5vw, 0.95rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .prayer-trigger-btn:hover, .prayer-trigger-btn:active {
            transform: translateY(-5px);
            background: var(--electric-blue);
            color: white;
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3);
        }

        .prayer-trigger-btn i {
            margin-left: 10px;
            font-size: 1.2em;
        }

/* Modern Input Handling */
.jt-form-field {
    position: relative;
    margin-bottom: 40px;
}

.jt-form-field input, .jt-form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    outline: none;
    transition: all 0.4s;
}

.jt-form-field label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: all 0.4s;
}

/* Floating Label Effect */
.jt-form-field input:focus ~ label,
.jt-form-field input:not(:placeholder-shown) ~ label,
.jt-form-field textarea:focus ~ label,
.jt-form-field textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.jt-form-field input:focus, .jt-form-field textarea:focus {
    border-bottom-color: var(--accent-gold);
}

.jt-form-field textarea {
    height: 120px;
    resize: none;
}

.jt-btn-submit {
    width: 100%;
    height: 70px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jt-btn-submit:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.jt-form-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* Prayer Wall Ticker */
.jt-prayer-wall {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    overflow: hidden;
}

.jt-ticker-wrap {
    display: flex;
    gap: 50px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jt-prayer-item {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.jt-prayer-item b {
    color: var(--accent-gold);
}

@media (max-width: 640px) {
    .jt-prayer-form-card {
        padding: 40px 25px;
    }
    .jt-prayer-desc {
        font-size: 17px;
        margin-bottom: 40px;
    }
}


/* giving slider styles */
.jt-circular-slider {
    margin: 0;
    /* background-color: var(--slate-900); */
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* color: #ffffff; */
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(135, 206, 235, 0.08) 0%, transparent 40%); */
}

.jt-circular-slider .slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.jt-circular-slider .giving-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.jt-circular-slider .visual-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jt-circular-slider .circle-wrapper {
    position: relative;
    width: clamp(280px, 40vw, 550px);
    height: clamp(280px, 40vw, 550px);
    border-radius: 50%;
    padding: 15px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.jt-circular-slider .main-circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.jt-circular-slider .orbit-element {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--slate-800);
    z-index: 1;
}

.jt-circular-slider .orbit-1 { 
    width: 110%; 
    height: 110%; 
    top: -5%; 
    left: -5%; 
    animation: jt-rotate 25s linear infinite;
    border-color: rgba(56, 189, 248, 0.5); 
}

.jt-circular-slider .orbit-2 { 
    width: 125%; 
    height: 125%; 
    top: -12.5%; 
    left: -12.5%; 
    animation: jt-rotate 40s linear reverse infinite; 
    opacity: 0.4;
    border-color: rgba(135, 206, 235, 0.5);
}

.jt-circular-slider .content-column {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.jt-circular-slider .slide-content {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.6s ease;
}

.jt-circular-slider .slide-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.jt-circular-slider .slide-tag {
    color: var(--electric-blue);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.jt-circular-slider .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.jt-circular-slider .slide-title .highlight {
    color: var(--electric-blue);
}

.jt-circular-slider .slide-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: var(--slate-900);
}

.jt-circular-slider .give-btn {
    display: inline-flex;
    align-items: center;
    background: var(--slate-800);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--electric-blue);
}

.jt-circular-slider .give-btn:hover {
    background: transparent;
    color: var(--electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

.jt-circular-slider .btn-icon {
    margin-left: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.jt-circular-slider .give-btn:hover .btn-icon {
    transform: translateX(8px);
}

.jt-circular-slider .nav-controls {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.jt-circular-slider .nav-dot {
    width: 40px;
    height: 4px;
    background: var(--slate-800);
    cursor: pointer;
    transition: 0.4s;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.05);
}

.jt-circular-slider .nav-dot.active {
    background: var(--sky-blue);
    width: 80px;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.4);
}

@media (max-width: 991px) {
    .jt-circular-slider .giving-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .jt-circular-slider .content-column {
        align-items: center;
        min-height: auto;
        height: auto;
    }
    .jt-circular-slider .slide-desc { 
        margin-left: auto; 
        margin-right: auto; 
    }
    .jt-circular-slider .nav-controls { 
        justify-content: center; 
    }
}

@keyframes jt-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Image Card Styling - Responsive Heights */
.img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .img-card { height: 400px; border-radius: 32px; }
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.img-card:hover img {
    transform: scale(1.05);
}

.img-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
    color: white;
}

@media (min-width: 768px) {
    .img-card-overlay { padding: 2.5rem; }
}

/* Advice Card Responsive Spacing */
.advice-card {
    background: white;
    border-radius: 24px;
    border: none;
    padding: 2rem;
    height: 100%;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

@media (min-width: 992px) {
    .advice-card { border-radius: 32px; padding: 3rem; }
}

.advice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.step-circle {
    width: 36px;
    height: 36px;
    background: var(--slate-900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Form Card Mobile Padding */
.card-premium {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card-premium { border-radius: 32px; padding: 2.5rem; }
}

.text-accent { color: var(--electric-blue); }

.btn-intercede {
    background: var(--slate-900);
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-intercede { padding: 16px 36px; border-radius: 16px; width: auto; }
}

.btn-intercede:hover { background: var(--slate-800); transform: translateY(-2px); color: white; }

/* Typography Responsive */
.scripture-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    border-left: 3px solid var(--electric-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: clamp(1.1rem, 4vw, 1.75rem);
}

.parallax-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('../images/banner/intercession-1.webp');
    background-size: cover;
    background-attachment: scroll;
    padding: 60px 20px;
    color: white;
    /* border-radius: 30px; */
    margin: 40px 0;
}

@media (min-width: 992px) {
    .parallax-section {
        background-attachment: fixed;
        padding: 100px 0;
        /* border-radius: 60px; */
        margin: 80px 0;
    }
}

.method-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    display: block;
}

/* --- about styles --- */
/* Who We Are */
.about-1 {
            padding: 100px 0;
            background-color: var(--soft-white);
        }

        /* Responsive Row Logic */
        .about-1 .responsive-row {
            display: flex;
            flex-direction: column-reverse;
        }

        @media (min-width: 992px) {
            .about-1 .responsive-row {
                flex-direction: row;
            }
        }

        /* --- IMAGE STYLING --- */
        .about-1 .image-wrapper {
            position: relative;
            padding: 20px;
        }

        .about-1 .main-img-container {
            position: relative;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            z-index: 1;
        }

        .about-1 .main-img-container img {
            width: 100%;
            height: 550px;
            object-fit: cover;
        }

        /* Floating Info Card */
        .about-1 .floating-info-card {
            position: absolute;
            bottom: -10px;
            right: -10px;
            background: white;
            padding: 1.5rem;
            border-radius: 1.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            z-index: 10;
            max-width: 240px;
            border-left: 6px solid var(--blue-1);
            /* Attention-grabbing CSS-only bounce */
            animation: float-bounce 4s ease-in-out infinite;
        }

        /* @keyframes float-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        } */

        /* --- CONTENT STYLING --- */
        .about-1 .badge-styled {
            background: rgba(37, 99, 235, 0.1);
            color: var(--blue-1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .about-1 .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .about-1 .feature-item {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: white;
            border-radius: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .about-1 .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-color: var(--blue-1);
        }

        .about-1 .icon-box {
            min-width: 54px;
            height: 54px;
            background: var(--soft-white);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-800);
            font-size: 1.5rem;
        }

        /* Dots Decor */
        .about-1 .dots-decor {
            position: absolute;
            top: -20px;
            left: -20px;
            z-index: 0;
            opacity: 0.3;
        }

        @media(max-width:991.98px){
            .about-1 .floating-info-card {
                left: 0;
                right: 0;
            }

            .about-1 .dots-decor {
                top: -20px;
                left: 0px;
            }
        }
        
/* Mission & Vision Cards */
.jt-about-mv-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 2.5rem;
    padding: 3.5rem;
    height: 100%;
    transition: all 0.4s ease;
}

.jt-about-mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--sky-blue);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.1);
}

.jt-about-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--jt-about-azure-light);
    color: var(--jt-about-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Generic Utilities */
.jt-about-text-sky { color: var(--jt-about-sky-blue); }
.jt-about-title-line {
    height: 5px; width: 50px;
    background: var(--jt-about-sky-blue);
    border-radius: 10px;
    margin: 1.5rem 0;
}

@media (max-width: 991px) {
    .jt-about-global-bg { border-radius: 2rem; margin: 1rem; }
    .jt-about-image-stack { margin-bottom: 3rem; }
}
/* minimal about */
.jt-about-minimal-section {
    padding: clamp(6rem, 15vh, 10rem) clamp(1.5rem, 5vw, 4rem);
    padding-top: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--slate-900);
}

.jt-about-minimal-container {
    max-width: var(--container-max);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: center;
}

/* --- Responsive Clutter Grid --- */
.jt-about-minimal-image-clutter {
    position: relative;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    aspect-ratio: 4/5;
    width: 100%;
}

.jt-about-minimal-clutter-item {
    position: relative;
    overflow: hidden;
    border-radius: clamp(8px, 2vw, 16px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.jt-about-minimal-clutter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jt-about-minimal-item-1 { grid-area: 1 / 1 / 8 / 8; z-index: 1; }
.jt-about-minimal-item-2 { grid-area: 4 / 5 / 10 / 11; z-index: 2; border: 4px solid var(--slate-900); }
.jt-about-minimal-item-3 { grid-area: 7 / 2 / 11 / 6; z-index: 3; border: 4px solid var(--slate-900); }

/* --- Content Styling --- */
.jt-about-minimal-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jt-about-minimal-label {
    color: var(--electric-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
}

.jt-about-minimal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
}

.jt-about-minimal-title em { color: var(--sky-blue); }

.jt-about-minimal-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--azure-light);
    opacity: 0.75;
    max-width: 520px;
}

/* --- Footer Stats & CTA Flex --- */
.jt-about-minimal-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 2rem;
    flex-wrap: wrap;
}

.jt-about-minimal-stats {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
}

.jt-about-minimal-stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
}

.jt-about-minimal-stat p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-blue);
    opacity: 0.8;
}

/* --- Action Button --- */
.jt-about-minimal-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.jt-about-minimal-action-btn:hover {
    background: #fff;
    color: var(--slate-900);
    border-color: #fff;
}

/* --- Tablet & Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .jt-about-minimal-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5rem;
    }
    .jt-about-minimal-info-content { align-items: center; }
    .jt-about-minimal-image-clutter {
        max-width: 600px;
        margin: 0 auto;
    }
    .jt-about-minimal-stats-wrapper { 
        justify-content: center; 
        width: 100%; 
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .jt-about-minimal-section { padding-top: 8rem; }
    .jt-about-minimal-stats { flex-direction: column; gap: 2rem; align-items: center; }
}

/* salvation styles */
.salvation-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background-color: var(--cta-primary-bg);
    color: var(--cta-text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.salvation-cta.light-bg{
    background-color: #ffffff;
}

.salvation-cta .cta-container {
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.salvation-cta .cta-header-section {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(40px);
}

.salvation-cta .label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--cta-accent-gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.salvation-cta h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--cta-text-main);
}

.salvation-cta h1 em {
    font-style: italic;
    color: var(--cta-accent-blue);
    font-weight: 400;
}

.salvation-cta .action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.salvation-cta .action-card {
    opacity: 0;
    transform: translateY(60px);
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--cta-glass-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background-color: #111;
}

.salvation-cta .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
    filter: brightness(0.7) contrast(1.1);
}

.salvation-cta .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.3) 50%, 
        transparent 100%);
    z-index: -1;
}

.salvation-cta #card-left .card-bg { background-image: url('../images/banner/the-new-life.webp'); }
.salvation-cta #card-right .card-bg { background-image: url('../images/banner/c3-church-kabalagala-church-service.webp'); }

.salvation-cta .action-card:hover .card-bg { transform: scale(1.1); }

.salvation-cta .icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.salvation-cta .card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0 0 0.8rem 0;
    color: #fff;
}

.salvation-cta .card-content p {
    color: var(--cta-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.salvation-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.salvation-cta .btn-primary { background: #fff; color: #000; }
.salvation-cta .btn-primary:hover { background: var(--cta-accent-blue); color: #fff; transform: translateY(-3px); }

.salvation-cta .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
.salvation-cta .btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); }

.salvation-cta .toast-notification {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    z-index: 1000;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

@media (max-width: 850px) {
    .salvation-cta .action-grid { grid-template-columns: 1fr; }
    .salvation-cta .action-card { height: 450px; }
    .salvation-cta h1 { font-size: 2.2rem; }
}

/* life at church styles */
.life-at-church {
    --lc-primary: #121212;
    --lc-accent: #d4af37;
    --lc-white: #ffffff;
    --lc-bg: #fdfdfd;
    --lc-text-muted: #666;
    --lc-radius: 24px;
    --lc-gap: 16px;
    --lc-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    background-color: var(--lc-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--lc-primary);
    padding: clamp(40px, 8vw, 100px) 5%;
    display: block;
    overflow-x: hidden;
    line-height: 1.5;
}

.life-at-church .lc-container {
    max-width: 1400px;
    margin: 0 auto;
}

.life-at-church .lc-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.life-at-church .lc-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.life-at-church .lc-header p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--lc-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive Grid Logic */
.life-at-church .lc-grid {
    display: grid;
    gap: var(--lc-gap);
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
}

/* Card Styling */
.life-at-church .lc-card {
    position: relative;
    border-radius: var(--lc-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--lc-white);
    background: #222;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--lc-transition);
}

.life-at-church .lc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.life-at-church .lc-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--lc-transition);
    opacity: 0.9;
}

.life-at-church .lc-card:hover .lc-card-img {
    transform: scale(1.1);
    opacity: 1;
}

.life-at-church .lc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.4) 40%, 
        transparent 100%);
    z-index: 2;
}

.life-at-church .lc-content {
    position: relative;
    z-index: 3;
    padding: clamp(24px, 4vw, 36px);
}

.life-at-church .lc-tag {
    display: inline-block;
    background: var(--lc-accent);
    color: var(--lc-primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.life-at-church .lc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-bottom: 10px;
    line-height: 1.2;
}

.life-at-church .lc-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 90%;
    font-weight: 300;
}

/* CTA Card */
.life-at-church .lc-card-cta {
    background: var(--lc-primary);
    color: var(--lc-white);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.life-at-church .lc-cta-btn {
    margin-top: 24px;
    background: var(--lc-white);
    color: var(--lc-primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--lc-transition);
    display: inline-block;
    text-decoration: none;
    border: 2px solid transparent;
}

.life-at-church .lc-cta-btn:hover {
    background: transparent;
    color: var(--lc-white);
    border-color: var(--lc-white);
}

/* Desktop Breakpoint (Large screens) */
@media (min-width: 1024px) {
    .life-at-church .lc-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 300px;
        gap: 24px;
    }

    .life-at-church .lc-span-2 { grid-column: span 2; }
    .life-at-church .lc-row-2 { grid-row: span 2; }
}

/* Tablet Breakpoint */
@media (min-width: 641px) and (max-width: 1023px) {
    .life-at-church .lc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .life-at-church .lc-tablet-full { grid-column: span 2; }
}

/* Mobile specific tweaks */
@media (max-width: 640px) {
    .life-at-church .lc-card {
        min-height: 380px;
    }
    .life-at-church {
        padding: 60px 20px;
    }
}

/* giving styles */
.jt-giving-text-sky { color: var(--sky-blue) !important; }
        .jt-giving-bg-azure-light { background-color: var(--azure-light) !important; }

        .jt-giving-navbar {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
            padding: 1.2rem 2rem;
            transition: all 0.3s ease;
        }

        .jt-giving-navbar .navbar-brand {
            letter-spacing: -0.02em;
            font-size: 1.4rem;
        }

        .jt-giving-hero-section {
            min-height: 70vh;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 100%),
                        url('../images/banner/about-hero-bg.PNG');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
        }

        .jt-giving-hero-badge {
            background: var(--azure-light);
            color: var(--sky-blue);
            padding: 8px 20px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .jt-giving-btn-premium {
            background: linear-gradient(135deg, var(--sky-blue) 0%, #0284d1 100%);
            color: white;
            border: none;
            padding: 1.1rem 3rem;
            border-radius: 16px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 25px -5px rgba(2, 157, 246, 0.4);
        }

        .jt-giving-btn-premium:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 35px -8px rgba(2, 157, 246, 0.5);
            color: white;
        }

        .jt-giving-method-card {
            background-color: var(--white);
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 2.5rem;
            padding: 3rem;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.03);
        }

        .jt-giving-method-card:hover {
            border-color: rgba(2, 157, 246, 0.3);
            box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.08);
        }

        .jt-giving-icon-box {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--azure-light) 0%, #d0e8ff 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            color: var(--sky-blue);
        }

        /* Improved Form Elements */
        .jt-giving-form-label {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--slate-800);
            margin-bottom: 0.6rem;
            display: block;
        }

        .jt-giving-form-control {
            background-color: var(--off-white);
            border: 2px solid transparent;
            color: var(--slate-900);
            border-radius: 16px;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .jt-giving-form-control:focus {
            background-color: var(--white);
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 4px rgba(2, 157, 246, 0.08);
            outline: none;
        }

        .jt-giving-payment-option-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 1rem;
        }

        .jt-giving-payment-radio {
            display: none;
        }

        .jt-giving-payment-label {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 1.2rem;
            background: var(--off-white);
            border-radius: 18px;
            border: 2px solid rgba(2, 157, 246, 0.15);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .jt-giving-payment-label i, .jt-giving-payment-label img {
            transition: transform 0.3s ease;
            width: 24px;
        }

        .jt-giving-payment-radio:checked + .jt-giving-payment-label {
            border-color: var(--sky-blue);
            background: white;
            box-shadow: 0 10px 20px -5px rgba(2, 157, 246, 0.15);
            
        }

        .jt-giving-payment-radio:checked + .jt-giving-payment-label i {
            color: var(--sky-blue);
            transform: scale(1.1);
        }

        .jt-giving-payment-logo {
            width: 50px;
            object-fit: contain;
        }

        .jt-giving-offline-detail-box {
            background-color: var(--off-white);
            border-radius: 20px;
            padding: 1.75rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(15, 23, 42, 0.03);
            transition: transform 0.3s ease;
        }
        
        .jt-giving-offline-detail-box:hover {
            transform: scale(1.02);
            background-color: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
        }

        /* Initiative Cards */
        .jt-giving-initiative-card {
            height: 440px;
            border-radius: 2.5rem;
            overflow: hidden;
            position: relative;
            background-size: cover;
            background-position: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .jt-giving-initiative-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
        }

        .jt-giving-initiative-card:hover {
            transform: translateY(-15px);
        }

        .jt-giving-initiative-card:hover .jt-giving-initiative-overlay {
            background: linear-gradient(to top, var(--sky-blue) 0%, rgba(2, 157, 246, 0.6) 100%);
        }

        /* Section Styling */
        .jt-giving-section-header {
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .jt-giving-section-title-line {
            height: 6px;
            width: 40px;
            background-color: var(--sky-blue);
            border-radius: 10px;
            margin: 1.5rem auto;
        }

        .jt-giving-merchant-code {
            font-family: 'Inter', sans-serif;
            background: #e2e8f0;
            padding: 4px 12px;
            border-radius: 8px;
            color: var(--slate-900);
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        .jt-giving-faq-item {
            background-color: var(--off-white);
            border-radius: 20px;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(15, 23, 42, 0.04);
            overflow: hidden;
        }

        .jt-giving-accordion-button {
            padding: 1.8rem;
            font-weight: 700;
            font-size: 1.1rem;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .jt-giving-accordion-button:after {
            content: '\2b';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .jt-giving-accordion-button:not(.collapsed):after {
            content: '\2212';
            transform: rotate(180deg);
        }

        .jt-giving-input-group-text {
            background-color: transparent !important;
            border: none;
            padding-right: 0;
            font-weight: 400;
            font-size: 26px;
            color: var(--slate-400);
        }

        @media (max-width: 768px) {
            .jt-giving-method-card { padding: 2rem; }
            .jt-giving-hero-section { min-height: 80vh; }
            .jt-giving-payment-option-grid { grid-template-columns: 1fr; }
        }

/* Utility classes */
.font-playfair { font-family: 'Playfair Display', serif; }
.fw-800 { font-weight: 800; }