/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #2D87B4;
    --light-gray: #EAEAEA;
    --dark-text: #2B2B2B;
    --white: #ffffff;

    /* Additional Complementary Colors */
    --accent-blue: #4A9BC7;
    --deep-blue: #1E5F7F;
    --soft-blue: #E8F4F8;
    --warm-gray: #F5F5F5;
    --medium-gray: #666666;
    --success-green: #28A745;
    --warning-orange: #FFA726;
    --gradient-primary: linear-gradient(135deg, #2D87B4, #4A9BC7);
    --gradient-secondary: linear-gradient(135deg, #E8F4F8, #F5F5F5);
    --shadow-light: 0 4px 12px rgba(45, 135, 180, 0.15);
    --shadow-medium: 0 8px 25px rgba(45, 135, 180, 0.2);
    --shadow-heavy: 0 15px 35px rgba(45, 135, 180, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bold-text {
    font-weight: bold;
}



.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Centered button containers */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 2rem auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.88) 30%,
        rgba(255, 255, 255, 0.90) 70%,
        rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at top,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0.8;
}

.header.scrolled {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.88) 30%,
        rgba(255, 255, 255, 0.90) 70%,
        rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(45, 135, 180, 0.25);
    padding: 0.25rem 0;
}

.header.scrolled::before {
    opacity: 0.8;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.3) 100%);
}

.header.scrolled::after {
    opacity: 0.9;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.header.scrolled .logo {
    height: 50px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.scrolled .brand-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--deep-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2B2B2B;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right,
            rgba(45, 135, 180, 0.2) 0%,
            rgba(232, 244, 248, 0.7) 30%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 70%,
            rgba(255, 255, 255, 0.1) 85%,
            rgba(255, 255, 255, 0) 100%),
        url('Hero.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: none;
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.hero-background::after {
    content: none;
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.8;
    transform: rotate(25deg);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

/* Hero content: left-aligned title, centered buttons within column */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-content .btn-container {
    align-self: flex-start;
}


.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Standardized Section Titles */
.section-title, .psalm-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}





/* Psalm Section */
.psalm-section {
    padding: 5rem 0;
    background:
        radial-gradient(1000px 600px at 85% 15%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
        linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
}

.psalm-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.psalm-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #2B2B2B;
    font-style: italic;
    border-left: 4px solid #2D87B4;
    padding: 2rem 2rem 1rem 2rem;
    text-align: left;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.psalm-ref {
    margin-top: 0.5rem;
    color: #2D87B4;
    font-weight: 600;
    text-align: right;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background:
        radial-gradient(800px 400px at 10% 10%, rgba(45, 135, 180, 0.08), transparent 60%),
        repeating-linear-gradient(135deg, rgba(45, 135, 180, 0.03) 0px, rgba(45, 135, 180, 0.03) 2px, transparent 2px, transparent 6px),
        linear-gradient(135deg, #FFFFFF 0%, #EAEAEA 100%);
}

.welcome-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2B2B2B;
}

.welcome-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block; /* center the group inside centered welcome-content */
}

.welcome-list li {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #2B2B2B;
}

.welcome-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D87B4;
    font-weight: bold;
    font-size: 1.3rem;
}

.welcome-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    font-style: italic;
}

/* Welcome intro spacing under the first line */
.welcome-content .section-title + .section-title.welcome-intro {
    margin-top: 0.75rem;
}

/* Program Section */
.program-section {
    padding: 5rem 0;
    background: var(--gradient-secondary);
}

.program-header {
    text-align: center;
    margin-bottom: 4rem;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid var(--primary-blue);
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.feature-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.feature-header:hover {
    background: var(--soft-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature-content p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.feature-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.feature-toggle:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.feature-toggle i {
    transition: transform 0.3s ease;
}

.feature-card.active .feature-toggle i {
    transform: rotate(180deg);
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--soft-blue);
}

.feature-card.active .feature-details {
    max-height: 1000px;
}

.feature-details-content {
    padding: 2rem;
    border-top: 1px solid var(--light-gray);
}

.feature-details h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.feature-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.feature-details li {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.program-cta {
    display: block;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 350px;
}



/* Facilitator Section */
.facilitator-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 500px at 20% 30%, rgba(45, 135, 180, 0.12), transparent 60%),
        linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
}

.facilitator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Full-width facilitator highlight below image and bio */
.facilitator-highlight {
    grid-column: 1 / -1;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #E8F4F8 100%);
    border: 2px solid rgba(45, 135, 180, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px rgba(45, 135, 180, 0.12);
    text-align: center;
}

.facilitator-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: #1E5F7F;
}

@media (max-width: 768px) {
    .facilitator-highlight {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1rem 1.25rem;
    }
}

.facilitator-image {
    text-align: center;
}

.jim-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facilitator-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2B2B2B;
}

.facilitator-text em {
    color: #666;
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background:
        radial-gradient(800px 400px at 10% 10%, rgba(45, 135, 180, 0.08), transparent 60%),
        repeating-linear-gradient(135deg, rgba(45, 135, 180, 0.03) 0px, rgba(45, 135, 180, 0.03) 2px, transparent 2px, transparent 6px),
        linear-gradient(135deg, #FFFFFF 0%, #EAEAEA 100%);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--dark-text) 100%);
}

/* Upcoming Cohorts Section */
.upcoming-cohorts-section {
    padding: 5rem 0;
    background:
        radial-gradient(800px 400px at 10% 10%, rgba(45, 135, 180, 0.08), transparent 60%),
        repeating-linear-gradient(135deg, rgba(45, 135, 180, 0.03) 0px, rgba(45, 135, 180, 0.03) 2px, transparent 2px, transparent 6px),
        linear-gradient(135deg, #FFFFFF 0%, #EAEAEA 100%);
}

.cohorts-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cohort-status {
    margin-bottom: 2.5rem;
}

.cohort-sold-out {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cohort-enrolling {
    font-size: 1.2rem;
    color: var(--dark-text);
    font-weight: 500;
}

.session-dates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.session-date {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.session-date:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.session-date h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.session-date p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .session-dates {
        gap: 1rem;
    }
    
    .session-date {
        padding: 1.25rem;
    }
    
    .session-date h4 {
        font-size: 1.1rem;
    }
    
    .session-date p {
        font-size: 0.95rem;
    }
    
    .cohort-sold-out {
        font-size: 1.2rem;
    }
    
    .cohort-enrolling {
        font-size: 1.1rem;
    }
}

/* Organizations Section */
.organizations-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(45, 135, 180, 0.08), transparent 60%),
        linear-gradient(135deg, #FFFFFF 0%, #F4FBFF 100%);
}

.organizations-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.organizations-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.pricing-title {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.org-pricing-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.org-pricing-list li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 2rem;
}

.org-pricing-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.pricing-highlight {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(45, 135, 180, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.contact-prompt {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
    margin-top: 2rem;
}

.contact-prompt a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-prompt a:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .organizations-intro {
        font-size: 1.1rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .org-pricing-list li {
        font-size: 1rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .pricing-highlight {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .contact-prompt {
        font-size: 1rem;
    }
}

.video-wrapper {
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
}

/* Maintain 1:1 space then center 80% inner video box */
.video-aspect {
    position: relative;
    padding: 0; /* allow the inner box to define size */
}

.video-inner {
    position: relative;
    width: calc(90% * 9 / 16); /* match previous 16:9@90% height while staying 1:1 */
    margin: 0 auto; /* center */
    aspect-ratio: 1 / 1; /* square */
    background: var(--white);
    border-radius: 14px;
    border: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    will-change: transform;
    gap: 2rem;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-image {
    margin-bottom: 1.5rem;
}

.review-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    box-shadow: var(--shadow-light);
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.review-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.review-content h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.review-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.2rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--deep-blue);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(45, 135, 180, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: var(--shadow-light);
}

/* Investment Section */
.investment-section {
    padding: 5rem 0;
    background:
        radial-gradient(1200px 700px at 15% 20%, rgba(45, 135, 180, 0.08), transparent 60%),
        linear-gradient(135deg, #FFFFFF 0%, #F4FBFF 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #2D87B4;
}

.sale-banner {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Elegant corner ribbon with realistic curved appearance */
.corner-ribbon {
    position: absolute;
    top: 15px;
    right: -40px;
    width: 120px;
    height: 30px;
    background: linear-gradient(135deg, #28a745 0%, #34ce57 50%, #28a745 100%);
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow:
        0 3px 10px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 2px;
    pointer-events: none;
}

.corner-ribbon::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 5px 15px 0;
    border-color: transparent #1e7e34 transparent transparent;
}

.corner-ribbon::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 5px;
    border-color: transparent transparent transparent #1e7e34;
}

.pricing-logo {
    height: 120px;
    margin-bottom: 1.25rem;
    width: auto;
    max-width: 100%;
}

.card-header h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.card-header p {
    color: #666;
    margin-bottom: 2rem;
}

.pricing {
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.sale-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2D87B4;
}


/* Note under pricing button */
.pricing-note {
    color: #999; /* match original-price color ($1,500) */
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.monthly-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2D87B4;
}

.payment-term {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.investment-details {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.time-investment h4,
.whats-included h4 {
    color: #2D87B4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.time-investment ul,
.whats-included ul {
    list-style: none;
}

.time-investment li {
    padding: 0.5rem 0;
    color: #2B2B2B;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #2B2B2B;
}

.included-list li > *:not(i) {
    flex: 1;
}

.included-list i {
    color: #2D87B4;
    font-size: 1.1rem;
}

/* Reduce gap specifically between What's included and the value summary */
.whats-included + .value-summary {
    margin-top: -0.75rem;
}

/* Value Summary below Time Investment */
.value-summary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ffffff 0%, #E8F4F8 100%);
    border: 2px solid rgba(45, 135, 180, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px rgba(45, 135, 180, 0.12);
}

.value-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.value-row + .value-row {
    margin-top: 0.5rem;
}

.value-summary .label {
    color: #2B2B2B;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.value-summary .value.total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E5F7F;
}

.value-summary .value.price {
    font-size: 1.7rem;
    font-weight: 900;
    color: #2D87B4;
}

.value-summary .note {
    color: #555;
    font-style: italic;
}

@media (max-width: 768px) {
    .value-summary {
        padding: 1rem 1.25rem;
    }
    .value-summary .value.total {
        font-size: 1.25rem;
    }
    .value-summary .value.price {
        font-size: 1.4rem;
    }
}

/* Countdown area below pricing cards */
.pricing-callout {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.countdown {
    display: inline-flex;
    gap: 0.75rem;
    align-items: baseline;
    background: rgba(45, 135, 180, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(45, 135, 180, 0.2);
}

.countdown .label {
    color: #2B2B2B;
    font-weight: 700;
    font-size: 0.95rem;
}

.countdown .time {
    color: #2D87B4;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Q&A Section */
.qa-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 1rem;
}

.qa-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2B2B2B;
    transition: color 0.3s ease;
}

.qa-question:hover {
    color: #2D87B4;
}

.qa-question i {
    transition: transform 0.3s ease;
    color: #2D87B4;
}

.qa-item.active .qa-question {
    color: #2D87B4;
}

.qa-item.active .qa-question i {
    transform: rotate(180deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 0;
}

.qa-item.active .qa-answer {
    max-height: 1000px;
    padding: 0 0 1.5rem 0;
}

.qa-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.qa-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.qa-answer li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(45, 135, 180, 0.08), transparent 60%),
        linear-gradient(135deg, #FFFFFF 0%, #EEF2F5 100%);
}

.contact-email {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-email p {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin: 0;
}

.contact-email a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Center the submit button in the contact form */
.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2B2B2B;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #EAEAEA;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D87B4;
}

.contact-cta {
    display: block;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 250px;
}

/* Footer */
.footer {
    background-color: #2B2B2B;
    background: linear-gradient(180deg, #2B2B2B 0%, var(--medium-gray) 100%);
    color: white;
    padding: 2rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: start;
}

.footer-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-description {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-blue);
}

.footer-description.no-divider {
    border-bottom: none;
    padding-bottom: 0;
}


.footer-description h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-description p {
    font-size: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    align-self: flex-start;
    height: fit-content;
}

.footer-logo .logo {
    width: 90%;
    height: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: left top;
    align-self: flex-start;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2D87B4;
}

/* Footer contact links styling */
.footer-section p a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}

/* Footer divider line for mid column */
.footer-divider {
    border-top: 2px solid var(--primary-blue);
    margin: 1rem 0;
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #2D87B4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4a9bc7;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Footer external link style: Department of Doing Good */
.dodg-link {
    color: var(--primary-blue);
    text-decoration: none;
}
.dodg-link:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--deep-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #EAEAEA;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }



    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .brand-name {
        font-size: 1rem;
    }

    /* Hero Mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* Center hero content and its buttons on mobile */
    .hero-content {
        align-items: center;
    }

    .hero-content .btn-container {
        align-self: center;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .section-title, .psalm-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }



    /* Program Features Mobile */
    .program-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Facilitator Mobile */
    .facilitator-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .facilitator-text {
        text-align: center;
    }

    /* Reviews Mobile */
    .review-track {
        gap: 1rem;
    }

    .review-card {
        flex: 0 0 calc(50% - 0.5rem);
        min-height: 280px;
        padding: 2rem;
    }

    .carousel-controls {
        display: flex;
        margin-top: 2rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Investment Mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .investment-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Video Mobile: increase container size by ~1/3 */
    .video-inner {
        width: 67.5%;
    }

    /* Center the value summary rows on mobile */
    .value-summary {
        text-align: center;
    }

    .value-row {
        justify-content: center;
        display: block;
    }

    .value-summary .label,
    .value-summary .value,
    .value-summary .note {
        display: block;
    }

    .value-summary .value { margin-top: 0.25rem; }
    .value-summary .note { margin-top: 0.25rem; }

    /* Contact Mobile */
    .contact-form {
        padding: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
    }

    .footer-logo .logo {
        align-self: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title, .section-title, .psalm-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }



    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .psalm-text {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 250px;
        padding: 1.5rem;
        min-height: 250px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Lock body scroll when mobile nav is open */
body.no-scroll {
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}
