/* ==========================================================================
   CSS VARIABLE SYSTEM & DESIGN TOKENS
   ========================================================================== */
:root {
    --primary-blue: #2439D8;
    --primary-green: #0B6B3A;
    --secondary-green: #1E8F55;
    --bg-light: #F8FAFC;
    --dark-neutral: #111827;
    --light-neutral: #FFFFFF;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    --border-color: #E5E7EB;
    
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
    --shadow-premium: 0 20px 40px rgba(17, 24, 39, 0.05);
    --shadow-hover: 0 30px 60px rgba(36, 57, 216, 0.1);
}

/* ==========================================================================
   RESET & STRUCTURAL CORE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--dark-neutral);
    font-family: var(--font-main);
    background-color: var(--bg-light);
}

body {
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 140px 0;
}

/* TYPOGRAPHY HELPER CLASSES */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-neutral);
}

.section-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    display: inline-block;
    margin-bottom: 15px;
}

.section-tagline.light {
    color: #38BDF8;
}

.section-title {
    font-size: 42px;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.section-title.light {
    color: var(--light-neutral);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 40px;
}

.section-desc.center {
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-white { color: var(--light-neutral); }
.text-light { color: #E5E7EB; }

/* UTILITY GRID SYSTEMS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.align-center {
    align-items: center;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--light-neutral);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 107, 58, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--light-neutral);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--light-neutral);
    color: var(--dark-neutral);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--light-neutral);
    transform: translateY(-3px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--light-neutral);
    transition: var(--transition-fast);
}

.main-header.scrolled .logo-text {
    color: var(--dark-neutral);
}

.accent-text {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--light-neutral);
}

.main-header.scrolled .nav-link {
    color: var(--text-muted);
}

.main-header.scrolled .nav-link:hover {
    color: var(--primary-blue);
}

.cta-nav-btn {
    text-decoration: none;
    background-color: var(--primary-blue);
    color: var(--light-neutral);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cta-nav-btn:hover {
    background-color: #1d2da3;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-neutral);
    font-size: 24px;
    cursor: pointer;
}

.main-header.scrolled .mobile-toggle {
    color: var(--dark-neutral);
}

/* ==========================================================================
   SECTION 1: HERO CONTAINER
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9) 30%, rgba(17, 24, 39, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.hero-title {
    font-size: 58px;
    color: var(--light-neutral);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.highlight-green {
    color: #22C55E;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Scripture Frame Box */
.hero-scripture-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    backdrop-filter: blur(15px);
    border-radius: 0 8px 8px 0;
    max-width: 400px;
    justify-self: end;
}

.scripture-text {
    font-style: italic;
    color: #E5E7EB;
    font-size: 15px;
    margin-bottom: 15px;
}

.scripture-reference {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    color: #22C55E;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid var(--light-neutral);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--light-neutral);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

.scroll-text {
    font-size: 11px;
    color: var(--light-neutral);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollAnimation {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   SECTION 2: ABOUT FOUNDATION
   ========================================================================== */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.image-border-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-blue);
    border-radius: 8px;
    z-index: 1;
}

.about-img {
    position: relative;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
    box-shadow: var(--shadow-premium);
}

.floating-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: var(--light-neutral);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.floating-badge i {
    font-size: 28px;
    color: #DC2626;
}

.floating-badge span {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-neutral);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(36, 57, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 600;
}

/* ==========================================================================
   SECTION 3: IMPACT STATS (COUNTERS)
   ========================================================================== */
.impact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.impact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.impact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 107, 58, 0.92); /* Rich Green overlay */
    z-index: 2;
}

.impact-section .container {
    position: relative;
    z-index: 3;
}

.impact-counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.counter-card {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.counter-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.12);
}

.counter-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--light-neutral);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION 4: FEATURED PROGRAMS
   ========================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background-color: var(--light-neutral);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.program-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 19px;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-btn-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.card-btn-link:hover {
    color: var(--primary-green);
}

/* Special Spanning Grid Option for the 5th card to maintain balance */
.program-card.long-card {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
}

.program-card.long-card .card-img-wrapper {
    height: 100%;
}

/* ==========================================================================
   SECTION 5: DOCUMENTATION & YOUTUBE SHOWCASE
   ========================================================================== */
.youtube-section {
    background-color: var(--dark-neutral);
}

.grid-large-video {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--light-neutral);
    color: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 0 50px rgba(255,255,255,0.4);
    transition: var(--transition-smooth);
    z-index: 2;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #FF0000;
    color: var(--light-neutral);
}

.video-badge-live {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--primary-blue);
    color: var(--light-neutral);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.featured-video-info {
    margin-top: 25px;
}

.featured-video-info h3 {
    color: var(--light-neutral);
    font-size: 24px;
    margin-bottom: 15px;
}

.featured-video-info p {
    color: #9CA3AF;
    font-size: 16px;
}

/* Playlist Sidebar */
.video-playlist-sidebar {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-header h4 {
    color: var(--light-neutral);
    font-size: 18px;
}

.playlist-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: var(--transition-fast);
}

.playlist-item:hover, .playlist-item.active {
    background-color: rgba(255, 255, 255, 0.08);
}

.p-thumb {
    position: relative;
    width: 110px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.p-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-play-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-neutral);
    font-size: 12px;
}

.p-info h5 {
    color: var(--light-neutral);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.p-info span {
    font-size: 11px;
    color: #9CA3AF;
}

.btn-youtube {
    background-color: #FF0000;
    color: var(--light-neutral);
    margin-top: 20px;
}

.btn-youtube:hover {
    background-color: #CC0000;
    transform: translateY(-3px);
}

/* ==========================================================================
   SECTION 6: STORYTELLING PARALLAX
   ========================================================================== */
.storytelling-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.story-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1469571486040-7530d6775dd4?q=80&w=1920');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.75);
    z-index: 2;
}

.story-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.story-box {
    background-color: rgba(255, 255, 255, 0.98);
    max-width: 750px;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
}

.story-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.story-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.story-quote {
    font-size: 18px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sig-line {
    width: 40px;
    height: 20px;
    border-bottom: 2px solid var(--dark-neutral);
}

.sig-name {
    font-weight: 700;
    font-size: 14px;
}

/* ==========================================================================
   SECTION 7: SUPPORT & PARTNERSHIP
   ========================================================================== */
.partnership-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-box h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.pillar-box p {
    font-size: 14px;
    color: var(--text-muted);
}

.part-actions {
    display: flex;
    gap: 20px;
}

.graphics-collage {
    position: relative;
    width: 100%;
    height: 450px;
}

.col-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.col-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 8px solid var(--bg-light);
}

/* ==========================================================================
   SECTION 8: STTEFATA ACADEMIC LINK
   ========================================================================== */
.sttefata-section {
    background-color: #F1F5F9;
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sttefata-wrapper {
    background-color: var(--light-neutral);
    border-radius: 8px;
    padding: 50px;
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.academic-icon-shield {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    color: var(--light-neutral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto;
}

.academic-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.sttefata-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sttefata-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-white-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white-link:hover {
    color: var(--primary-green);
}

/* ==========================================================================
   SECTION 9: FINAL CTA
   ========================================================================== */
.final-cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(36, 57, 216, 0.8) 100%);
    z-index: 2;
}

.cta-inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 46px;
    color: var(--light-neutral);
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 45px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-large {
    padding: 18px 44px;
    font-size: 16px;
}

/* ==========================================================================
   FOOTER COMPONENT
   ========================================================================== */
.main-footer {
    background-color: #0B0F19;
    padding: 90px 0 0 0;
    color: #9CA3AF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-col h4 {
    color: var(--light-neutral);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.05);
    color: var(--light-neutral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links-col h5, .footer-contact-col h5 {
    color: var(--light-neutral);
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--light-neutral);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-info-list li i {
    color: var(--primary-green);
    margin-top: 4px;
}

.contact-info-list li a {
    color: #9CA3AF;
    text-decoration: none;
}

.contact-info-list li a:hover {
    color: var(--light-neutral);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 46px; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .program-card.long-card { grid-column: span 2; }
}

@media (max-width: 992px) {
    .grid-2, .grid-large-video { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { grid-template-columns: 1fr; margin-top: 200px;}
    .hero-scripture-box { justify-self: start; max-width: 100%; }
    .impact-counters-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .program-card.long-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 32px; }
    
    .hero-title { font-size: 36px; }
    .nav-menu { display: none; } /* In production, activate side draw drawer */
    .mobile-toggle { display: block; }
    .impact-counters-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .bottom-flex { flex-direction: column; gap: 15px; text-align: center; }
    .hero-actions, .part-actions { flex-direction: column; }
    .sttefata-wrapper { grid-template-columns: 1fr; text-align: center; }
}