/* ============================ 
   CSS Variables
============================ */
:root {
    /* Faith for Life Color Palette */
    --primary: #1A2024;       /* Deep Charcoal - Foundation & Strength */
    --secondary: #1e545a;     /* Teal - Depth & Wisdom */
    --accent: #C0B283;        /* Muted Gold - Timeless Truth */
    --light: #F8F9FA;         /* Off-White - Clarity */
    --medium: #DCD7CB;        /* Stone - Solidity */
    --dark: #0A0C0F;          /* Near Black - Depth */
   
    /* Typography */
    --serif: 'Garamond', 'Times New Roman', serif;
    --sans: 'Helvetica Neue', Arial, sans-serif;
   
    /* Transitions & Effects */
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
   
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 60px;
    --border-radius: 0; /* Changed to 0 for rectangular design */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--serif);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin: 1rem auto 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ============================ 
   Button Styles
============================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--light);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

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

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--primary);
    font-weight: 600;
    border: none;
    position: relative;
}

.btn-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--accent);
}

.btn-text:hover:after {
    width: 100%;
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ============================ 
   Header & Navigation
============================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary) !important; /* ADD !important to force dark background */
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: var(--header-height);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    content: url('../images/logo-white.png');
}

nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white; /* CHANGE from var(--light) to white */
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list li a {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: white; /* CHANGE from var(--light) to white */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 3px;
    position: relative;
}

.nav-list li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--accent);
}

.nav-list li a:hover:after,
.nav-list li a.active:after {
    width: 100%;
}

.nav-list li a.nav-donate {
    background-color: var(--accent);
    color: var(--light);
    padding: 8px 15px;
    border-radius: var(--border-radius);
}

.nav-list li a.nav-donate:hover {
    background-color: var(--light);
    color: var(--primary);
}

.nav-list li a.nav-donate:after {
    display: none;
}

.social-icons {
    display: flex;
    margin-left: 30px;
}

.social-icons a {
    color: white; /* CHANGE from var(--light) to white */
    font-size: 1.2rem;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* ============================ 
   Dropdown Menu
============================ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary);
    min-width: 220px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 10px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000; /* Higher z-index to ensure visibility */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: white; /* CHANGE from var(--light) to white */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.dropdown-menu li a:after {
    display: none;
}

/* Header scroll behavior */
header.scrolled {
    /* Any styling for scrolled state, but keep the dark background */
    background-color: var(--primary) !important;
    height: var(--header-height-scrolled);
}

/* ============================ 
   Hero Section - Home Page
============================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 32, 36, 0.7), rgba(26, 32, 36, 0.3)); /* CHANGE from gray values to primary color RGB */
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.tagline {
    font-family: var(--sans);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--light);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================ 
   Subpage Banner
============================ */
.subpage-banner {
    position: relative;
    height: 350px;
    margin-top: 80px;
    background: url('../images/sub-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.subpage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 32, 36, 0.7), rgba(26, 32, 36, 0.3)); /* CHANGE from gray values to primary color RGB */
}

.subpage-content {
    position: relative;
    z-index: 1;
    color: var(--light);
    padding: 0 20px;
}

.subpage-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.subpage-content p {
    font-family: var(--sans);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent);
    max-width: 700px;
    margin: 0 auto;
}


/* ============================ 
   Introduction Section
============================ */
.introduction {
    background-color: var(--light);
    padding: 80px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-image {
    flex: 0 0 40%;
}

.intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.portrait-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portrait-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portrait-container:hover img {
    transform: scale(1.03);
}

.social-connect {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.social-connect a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-connect a:hover {
    background-color: var(--accent);
    color: var(--light);
    transform: translateY(-3px);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--medium);
}

.intro-text .lead {
    font-size: 1.25rem;
    font-family: var(--sans);
    font-style: italic;
    color: var(--medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.intro-text .btn {
    margin-top: 10px;
}

/* ============================ 
   Featured Series Section
============================ */
.featured-series {
    background-color: var(--light);
    padding: 80px 0;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.series-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.series-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.series-card:hover .series-image img {
    transform: scale(1.05);
}

.series-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 32, 36, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.series-card:hover .series-hover-overlay {
    opacity: 1;
}

.series-icon {
    color: white;
    font-size: 3rem;
}

.series-content {
    padding: 25px;
    text-align: center;
}

.series-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.series-content p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}


/* ============================ 
   Latest Content Tabs Section
============================ */
.latest-content {
    background-color: white;
    padding: 80px 0;
}

.latest-content-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--medium);
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.content-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-card:hover .content-thumbnail img {
    transform: scale(1.05);
}

.content-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(26, 32, 36, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.content-card:hover .play-icon {
    opacity: 1;
    background-color: var(--accent);
}

.content-thumbnail.podcast .play-icon {
    background-color: rgba(192, 178, 131, 0.8);
}

.content-thumbnail.podcast .play-icon i {
    color: var(--primary);
}

.article-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.article-tag span {
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
}

.content-details {
    padding: 25px;
}

.content-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary);
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: var(--sans);
    font-size: 0.85rem;
}

.content-meta span {
    margin-right: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.content-meta span i {
    margin-right: 5px;
    color: var(--accent);
}

.content-details p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.see-all {
    text-align: center;
    margin-top: 40px;
}


/* ============================ 
   Testimonials Section
============================ */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title:after {
    background-color: var(--accent);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.testimonials-slider {
    margin-bottom: 30px;
}

.testimonial {
    padding: 10px;
    outline: none;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 200px;
}

.testimonial-content:hover {
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--accent);
}

/* Slick slider controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.slick-dots {
    display: flex !important;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: var(--accent);
    width: 12px;
    height: 12px;
}

.slick-dots li button:hover {
    background-color: var(--accent);
}

/* Hide slider while loading */
.testimonials-slider:not(.slick-initialized) {
    display: none;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.testimonials-slider {
    visibility: hidden;
}

.testimonials-slider.slick-initialized {
    visibility: visible;
}

/* ============================ 
   Newsletter Section
============================ */
.newsletter {
    padding: 80px 0;
    background-color: var(--light);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.newsletter-icon {
    font-size: 5rem;
    color: var(--accent);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.newsletter-text p {
    margin-bottom: 25px;
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 200px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--sans);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(192, 178, 131, 0.2);
}

.newsletter-form button {
    min-width: 150px;
}

/* ============================ 
   Footer Section
============================ */
footer {
    background-color: #2A2A2A;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    font-family: var(--sans);
}

.footer-content {
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    margin-right: 15px;
    filter: brightness(0) invert(1);
    content: url('../images/logo-white.png');
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--accent);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 0.9rem;
    min-width: 16px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent);
}

.footer-newsletter p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: none;
    border: none;
    color: white;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-submit {
    padding: 12px 20px;
    background-color: var(--accent);
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background-color: #D4C299;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav,
    .footer-contact,
    .footer-newsletter {
        text-align: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
}

/* ============================ 
   Typography Enhancements
============================ */
body {
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(2rem, 4vw, 2.5rem); 
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 1.8rem); 
    line-height: 1.3;
}

a {
    text-underline-offset: 3px;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

.btn {
    letter-spacing: 0.5px;
}


/* ============================ 
   About Dr. Carter Page
============================ */
.about-dr-carter {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-image {
    flex: 0 0 300px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.portrait {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.portrait:hover {
    transform: scale(1.03);
}

.credentials {
    margin-top: 20px;
    background-color: var(--primary);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.credentials h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.credentials .title {
    color: white;
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.background-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.highlight i {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.highlight h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.highlight ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.highlight ul li {
    margin-bottom: 8px;
    color: var(--secondary);
}

.cta-box {
    background-color: var(--primary);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.cta-box h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cta-box p {
    margin-bottom: 20px;
}

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

.cta-buttons .btn {
    min-width: 160px;
}

/* ============================ 
   About Ministry Page
============================ */
.about-ministry {
    padding: 60px 0;
}

.ministry-logo-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates a square */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--primary);
}

.ministry-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.ministry-logo:hover {
    transform: scale(1.05);
}

.ministry-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.stat {
    flex: 1;
    min-width: calc(33.333% - 10px);
    background-color: var(--light);
    padding: 15px 10px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat .number {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    line-height: 1;
}

.stat .label {
    display: block;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 5px;
    font-weight: 600;
}

.content-offerings {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offering-item {
    display: flex;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.offering-icon {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--accent);
    font-size: 2.5rem;
}

.offering-content {
    flex: 1;
    padding: 20px 25px;
}

.offering-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.offering-content p {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-text h3 {
    margin-top: 40px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}


/* ============================ 
   Videos Page
============================ */
.video-categories {
    background-color: var(--light);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    background: white;
    border: 2px solid var(--primary);
    padding: 8px 15px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: white;
}

.featured-video {
    padding: 60px 0;
    background-color: white;
}

.featured-video-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    margin-top: 40px;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-details {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.featured-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: var(--sans);
    font-size: 0.9rem;
}

.featured-meta span {
    margin-right: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.featured-meta span i {
    margin-right: 5px;
    color: var(--accent);
}

.featured-description {
    margin-bottom: 20px;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background-color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.share-buttons {
    margin-top: 20px;
}

.share-buttons h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.share-buttons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: var(--primary);
    color: white;
    margin-right: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.video-section {
    padding: 60px 0;
}

.video-section:nth-child(odd) {
    background-color: white;
}

.video-section:nth-child(even) {
    background-color: var(--light);
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header h2 {
    margin-bottom: 15px;
    color: var(--primary);
}

.video-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 0.8rem;
}

.video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(26, 32, 36, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.video-card:hover .play-icon {
    background-color: var(--accent);
    opacity: 1;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary);
}

.video-meta {
    display: flex;
    margin-bottom: 15px;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--secondary);
}

.video-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.video-meta span i {
    margin-right: 5px;
}

.video-description {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.series-link {
    text-align: center;
}

.youtube-cta {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.youtube-cta .cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.youtube-cta .cta-icon {
    font-size: 5rem;
    color: var(--accent);
}

.youtube-cta .cta-text {
    max-width: 600px;
}

.youtube-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.youtube-cta p {
    margin-bottom: 25px;
    color: var(--light);
}

/* ============================ 
   Podcast Page
============================ */
.podcast-platforms {
    background-color: var(--primary);
    padding: 40px 0;
    text-align: center;
}

.platform-title {
    color: white;
    margin-bottom: 30px;
}

.platforms-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.platform-link {
    display: flex;
    align-items: center;
    background-color: white;
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: var(--sans);
    font-weight: 600;
}

.platform-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.platform-link:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.featured-episode {
    padding: 60px 0;
    background-color: white;
}

.featured-episode-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.episode-cover {
    position: relative;
}

.episode-cover img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.episode-cover img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.episode-details {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.episode-number {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.episode-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.episode-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: var(--sans);
    font-size: 0.9rem;
}

.episode-meta span {
    margin-right: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.episode-meta span i {
    margin-right: 5px;
    color: var(--accent);
}

.episode-description {
    margin-bottom: 25px;
}

.episode-description p {
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.episode-player {
    margin-bottom: 25px;
}

.episode-player audio {
    width: 100%;
    height: 40px;
}

.episode-actions {
    display: flex;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.episode-list {
    padding: 60px 0;
    background-color: var(--light);
}

.episode-card {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.episode-card-cover {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.episode-card-cover img {
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.episode-card-cover .episode-number {
    position: absolute;
    top: 30px;
    left: 30px;
}

.episode-card-content {
    padding: 30px;
}

.episode-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.podcast-topics {
    padding: 60px 0;
    background-color: white;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.topic-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.topic-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.topic-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.subscribe-cta {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.subscribe-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.subscribe-cta .cta-icon {
    font-size: 5rem;
    color: var(--accent);
}

.subscribe-cta .cta-text {
    max-width: 600px;
}

.subscribe-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.subscribe-cta p {
    margin-bottom: 25px;
    color: var(--light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.suggestion-text {
    font-size: 0.9rem;
    color: var(--light);
}

.suggestion-text a {
    color: var(--accent);
    text-decoration: underline;
}

.suggestion-text a:hover {
    text-decoration: none;
}


/* ============================ 
   Blog Page
============================ */
.blog-categories {
    background-color: var(--light);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    background: white;
    border: 2px solid var(--primary);
    padding: 8px 15px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary);
    color: white;
}

.featured-articles {
    padding: 60px 0;
    background-color: white;
}

.featured-articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-article.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.featured-article.reverse .article-content {
    direction: ltr;
}

.article-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 40px;
}

.article-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.article-meta {
    display: flex;
    margin-bottom: 20px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--secondary);
}

.article-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.article-meta span i {
    margin-right: 5px;
    color: var(--accent);
}

.article-excerpt {
    margin-bottom: 25px;
}

.article-excerpt p {
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1.7;
}

.recent-articles {
    padding: 60px 0;
    background-color: var(--light);
}


/* ============================ 
   Donate/Support Page
============================ */
.support-intro {
    padding: 60px 0;
    background-color: white;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.support-benefits {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.benefit-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--secondary);
}

.support-message {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    text-align: center;
    margin-top: 40px;
}

.ways-to-support {
    padding: 60px 0;
    background-color: var(--light);
}

.support-option {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--primary);
    color: white;
    padding: 20px 30px;
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.option-header h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.option-content {
    padding: 30px;
}

.option-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.donation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.donation-btn {
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.donation-btn:hover,
.donation-btn.active {
    background-color: var(--primary);
    color: white;
}

.donation-btn.custom {
    background-color: white;
    border: 2px dashed var(--primary);
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.payment-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.patreon-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tier {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.tier h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.tier ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.tier ul li {
    margin-bottom: 10px;
    color: var(--secondary);
}

.merch-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.merch-item {
    text-align: center;
    background-color: var(--light);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.merch-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.merch-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.merch-item p {
    font-family: var(--sans);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
}

.other-support {
    padding: 60px 0;
    background-color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.support-card p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-card-image {
    position: relative;
    height: 200px;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 25px;
}

.article-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-card-content h3 a {
    color: var(--primary);
    transition: var(--transition);
}

.article-card-content h3 a:hover {
    color: var(--accent);
}

.article-card .article-excerpt {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    font-family: var(--sans);
}

.current-page {
    color: var(--secondary);
}

.page-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-links a,
.page-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: var(--border-radius);
    color: var(--primary);
    transition: var(--transition);
}

.page-links span.current {
    background-color: var(--primary);
    color: white;
}

.page-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.page-links a.next {
    width: auto;
    padding: 0 15px;
}

.page-links a.next i {
    margin-left: 5px;
}

.blog-topics {
    padding: 60px 0;
    background-color: white;
}

.topics-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.topic-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--light);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.topic-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--primary);
}

.topic-link:hover .topic-icon {
    background-color: var(--accent);
    color: var(--primary);
}

.topic-link:hover h3 {
    color: white;
}

.topic-link:hover .topic-count {
    color: var(--accent);
}

.topic-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--accent);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.topic-link h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
    transition: var(--transition);
}

.topic-count {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.topic-link.view-all {
    background-color: var(--primary);
}

.topic-link.view-all .topic-icon {
    background-color: var(--accent);
    color: var(--primary);
}

.topic-link.view-all h3 {
    color: white;
}

.subscribe-section {
    background-color: var(--primary);
    color: white;
    padding: 50px 0;
}

.subscribe-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.subscribe-text h2 {
    color: white;
    margin-bottom: 15px;
}

.subscribe-text p {
    color: var(--light);
}

.subscribe-form {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 1rem;
}

.subscribe-form input:focus {
    outline: none;
}


/* ============================ 
   Donate/Support Page (Continued)
============================ */
.supporters {
    padding: 60px 0;
    background-color: var(--light);
    text-align: center;
}

.gratitude-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--secondary);
}

.supporters-quote {
    max-width: 600px;
    margin: 0 auto;
}

.supporters-quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    padding: 0 40px;
}

.supporters-quote blockquote:before,
.supporters-quote blockquote:after {
    content: '"';
    position: absolute;
    color: var(--accent);
    font-size: 4rem;
    line-height: 1;
    font-family: var(--serif);
}

.supporters-quote blockquote:before {
    top: -20px;
    left: 0;
}

.supporters-quote blockquote:after {
    bottom: -40px;
    right: 0;
}

.supporters-quote cite {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 1rem;
    color: var(--secondary);
    margin-top: 20px;
}

.donation-faq {
    padding: 60px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: var(--light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--accent);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--primary);
}

.toggle-icon {
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 20px 30px;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    color: var(--secondary);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.donate-cta {
    padding: 60px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.donate-cta h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.donate-cta p {
    color: var(--light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}


/* ============================ 
   Contact Page
============================ */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

.info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-card p {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.info-link {
    display: block;
    color: var(--primary);
    font-family: var(--sans);
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--accent);
}

.info-address {
    font-style: normal;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.contact-form-section {
    padding: 60px 0;
    background-color: var(--light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.form-header p {
    color: var(--secondary);
    font-size: 1.05rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--sans);
    font-weight: 600;
    color: var(--primary);
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(192, 178, 131, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.contact-faq {
    padding: 60px 0;
    background-color: white;
}

.prayer-request {
    padding: 60px 0;
    background-color: var(--primary);
    color: white;
}

.prayer-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.prayer-icon {
    font-size: 5rem;
    color: var(--accent);
}


.prayer-text h2 {
    color: white;
    margin-bottom: 15px;
}

.prayer-text p {
    color: var(--light);
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.prayer-note {
    font-style: italic;
    font-size: 0.95rem !important;
    opacity: 0.9;
}

/* ============================ 
   Responsive Styles
============================ */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    /* General Responsive */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Hero Section Responsive */
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Introduction Section Responsive */
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .intro-text {
        text-align: center;
    }
    
    /* About Page Responsive */
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .highlight h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Videos Page Responsive */
    .featured-video-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-player {
        margin-bottom: 20px;
    }
    
    .youtube-cta .cta-content,
    .subscribe-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Ministry Page Responsive */
    .offering-item {
        flex-direction: column;
    }
    
    .offering-icon {
        height: 100px;
        width: 100%;
    }
    
    .about-text h3 {
        text-align: center;
    }
    
    .about-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offering-content {
        text-align: center;
    }
    
    /* Podcast Page Responsive */
    .featured-episode-wrapper {
        grid-template-columns: 1fr;
    }
    
    .episode-cover {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .episode-card {
        grid-template-columns: 1fr;
    }
    
    .episode-card-cover {
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Blog Page Responsive */
    .featured-article,
    .featured-article.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .article-image {
        min-height: 250px;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
    
    /* Donate/Support Page Responsive */
    .patreon-tiers,
    .merch-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
    }
    
    /* Contact Page Responsive */
    .prayer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .info-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Newsletter Responsive */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* General Responsive */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Header/Navigation Responsive */
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 99;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .social-icons {
        margin-left: 15px;
    }
    
    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 10px 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-menu li a {
        padding: 10px 0;
    }
    
    .dropdown-menu li a:hover {
        background-color: transparent;
    }
    
    /* Hero Section Responsive */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Video Categories Responsive */
    .video-categories,
    .blog-categories {
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .categories-nav {
        width: max-content;
        padding-bottom: 5px;
    }
    
    /* Video Grid Responsive */
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Podcast Page Responsive */
    .platforms-list {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-link {
        width: 80%;
    }
    
    .episode-actions {
        flex-direction: column;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Blog Page Responsive */
    .topics-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    /* Donate/Support Page Responsive */
    .donation-buttons,
    .payment-options {
        flex-direction: column;
    }
    
    .donation-btn,
    .payment-btn {
        width: 100%;
    }
    
    .option-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .option-content {
        padding: 20px;
    }
    
    /* Contact Page Responsive */
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .info-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter Form Responsive */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        width: 100%;
    }
    
    /* Tabs Responsive */
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    /* Ministry Stats Responsive */
    .ministry-stats {
        justify-content: center;
    }
    
    .stat {
        min-width: calc(50% - 10px);
    }
    
    /* Subpage Banner Responsive */
    .subpage-banner {
        height: 280px;
    }
    
    .subpage-content h1 {
        font-size: 2.5rem;
    }
    
    .subpage-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    /* General Responsive */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title:after {
        width: 60px;
    }
    
    /* Hero Buttons Responsive */
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* About Page Responsive */
    .background-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Video Grid Responsive */
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-meta span {
        margin-right: 0;
    }
    
    /* Blog Page Responsive */
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-meta span {
        margin-right: 0;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Podcast Page Responsive */
    .episode-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .episode-meta span {
        margin-right: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Ministry Stats Responsive */
    .stat {
        min-width: 100%;
    }
    
    /* Supporters Quotes Responsive */
    .supporters-quote blockquote {
        font-size: 1.2rem;
        padding: 0 30px;
    }
    
    .supporters-quote blockquote:before,
    .supporters-quote blockquote:after {
        font-size: 3rem;
    }
    
    /* Contact Page Responsive */
    .social-links {
        flex-wrap: wrap;
    }
    
    /* Subpage Banner Responsive */
    .subpage-banner {
        height: 250px;
    }
    
    .subpage-content h1 {
        font-size: 2rem;
    }
    
    .subpage-content p {
        font-size: 1rem;
    }
    
    /* Newsletter Form Responsive */
    .newsletter-form button {
        width: 100%;
    }
}
/* ============================ 
   Call to Action Section
============================ */
.cta-section {
    background-color: var(--secondary); /* Teal color */
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent); /* Gold accent line */
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 30px;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: white;
    color: var(--secondary);
    padding: 14px 35px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .btn-cta {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Ensure footer has no top margin to connect seamlessly */
footer {
    margin-top: 0;
}/* ============================ 
   Homepage Specific Styles
============================ */

/* Section Dividers */
.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px auto 30px;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px 0 30px;
}

/* Life GPS Section */
.life-gps {
    padding: 80px 0;
    background-color: white;
}

.life-gps .lead {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

.gps-features {
    margin-top: 50px;
}

.feature-card.gps-card {
    background-color: var(--light);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.gps-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    background-color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Introduction Section Enhanced */
.introduction {
    position: relative;
}

.credentials-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.credentials-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.credentials-badge .text {
    font-size: 0.8rem;
    color: var(--primary);
    text-align: center;
    line-height: 1.2;
}

.intro-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid var(--medium);
    border-bottom: 1px solid var(--medium);
}

.intro-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--secondary);
}

.intro-stats .stat i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Real Solutions Section */
.real-solutions {
    background-color: var(--light);
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.solution-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.solution-header i {
    font-size: 2rem;
    color: var(--accent);
}

.solution-header h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.solution-list {
    padding: 30px;
    margin: 0;
    list-style: none;
}

.solution-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--secondary);
    font-style: italic;
}

.solution-list li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-link {
    display: block;
    padding: 20px;
    background-color: var(--light);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid var(--medium);
}

.solution-link:hover {
    background-color: var(--accent);
    color: var(--primary);
    padding-left: 30px;
}

.solution-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* Latest Resources Section */
.latest-resources {
    padding: 80px 0;
    background-color: white;
}

.resource-video {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.resource-video img {
    width: 100%;
    transition: transform 0.3s ease;
}

.resource-video:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.play-button:hover {
    background-color: white;
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.resource-type {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.resource-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.resource-info p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.mini-resource {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mini-resource:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
    background-color: white;
}

.mini-resource h4 {
    color: var(--primary);
    margin: 15px 0;
    font-size: 1.2rem;
}

.mini-resource p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--primary);
}

.resource-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-content {
        text-align: center;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .credentials-badge {
        position: static;
        margin: 20px auto;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-divider-left {
        margin: 20px auto 30px;
    }
}

/* Fix Introduction Section Text Colors */
.intro-text p {
    color: var(--primary) !important; /* Change from light gray to dark charcoal */
    line-height: 1.7;
}

.intro-text .lead {
    color: var(--secondary) !important; /* Teal for emphasis */
    font-size: 1.25rem;
    font-weight: 500;
}

.intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Ensure proper image spacing */
.intro-image {
    position: relative;
}

.portrait-container {
    border: 8px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .intro-content {
        text-align: center;
    }
    
    .intro-image {
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .credentials-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
    }
}

/* ============================ 
   About Page Specific Styles
============================ */

/* About Hero Section */
.about-hero {
    background-image: url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Personal Story Section */
.personal-story {
    padding: 80px 0;
    background-color: white;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.portrait-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.portrait {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quick-facts {
    background-color: var(--light);
    border-left: 4px solid var(--accent);
    padding: 30px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.quick-facts h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li {
    padding: 8px 0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-facts i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.story-text h2 {
    color: var(--primary);
    margin-bottom: 25px;
}

.story-text h3 {
    color: var(--primary);
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.story-text p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text .lead {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

.story-text strong {
    color: var(--primary);
}

/* Credentials Section */
.credentials-experience {
    background-color: var(--light);
    padding: 80px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credential-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent);
}

.credential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.credential-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.credential-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.credential-card li {
    padding: 8px 0;
    color: var(--secondary);
    border-bottom: 1px solid var(--medium);
}

.credential-card li:last-child {
    border-bottom: none;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: white;
}

.vm-card {
    background-color: var(--light);
    padding: 40px;
    height: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.vm-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.vm-card .lead {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card li {
    padding: 8px 0;
    color: var(--secondary);
    padding-left: 20px;
    position: relative;
}

.vm-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Personal Touch Section */
.personal-touch {
    background-color: var(--light);
    padding: 80px 0;
}

.personal-touch img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.personal-touch h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.personal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.personal-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--secondary);
}

.personal-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent);
    font-size: 1.5rem;
}

.personal-touch em {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    padding: 20px;
    background-color: white;
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

/* Why It Matters Section */
.why-it-matters {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.why-it-matters .section-title {
    color: white;
}

.why-it-matters .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.matter-stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background-color: white;
}

.cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-wrapper p {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    padding: 80px 0;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    position: relative;
    opacity: 1;
}

.testimonial-content {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-text p {
    color: var(--secondary);
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .quick-facts {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
    
    .matters-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .vm-card {
        padding: 25px;
    }
    
    .credential-card {
        padding: 25px;
    }
}
/* ============================ 
   Resources Page Specific Styles
============================ */

/* Resources Hero */
.resources-hero {
    background-image: url('../images/resources-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Resource Hub Navigation */
.resource-hub-nav {
    background-color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.hub-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hub-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--secondary);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hub-nav-item:hover {
    color: var(--primary);
    background-color: var(--light);
}

.hub-nav-item.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
    background-color: var(--light);
}

.hub-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hub-nav-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Featured Resource Section */
.featured-resource {
    background-color: var(--light);
    padding: 60px 0;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-wrapper {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.featured-media {
    position: relative;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.featured-media:hover .video-thumbnail img {
    transform: scale(1.05);
}

.featured-media:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-info {
    padding: 40px;
}

.featured-info h2 {
    color: var(--primary);
    margin: 15px 0 20px;
    font-size: 2rem;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    color: var(--secondary);
    font-size: 0.9rem;
}

.featured-meta i {
    margin-right: 5px;
}

.featured-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Resource Sections */
.resource-section {
    padding: 80px 0;
}

.resource-section.alt-bg {
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.section-header p {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Video Section */
.resource-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid var(--medium);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.category-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.video-card .video-thumbnail {
    position: relative;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    opacity: 0.9;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-info p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.85rem;
}

/* Podcast Section */
.podcast-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: white;
    border: 2px solid var(--medium);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.platform-link i {
    font-size: 1.2rem;
}

.podcast-episodes {
    max-width: 800px;
    margin: 0 auto 50px;
}

.episode-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.episode-card:hover {
    box-shadow: var(--shadow-hover);
}

.episode-number {
    background-color: var(--accent);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.episode-content {
    flex: 1;
}

.episode-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.episode-content p {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.episode-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.85rem;
}

.episode-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-play {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-icon {
    background-color: transparent;
    border: 2px solid var(--medium);
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Articles Section */
.article-topics {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.topic-tag {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid var(--medium);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topic-tag:hover,
.topic-tag.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: var(--accent);
}

.article-content p {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.85rem;
}

/* Free Guides Section */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.guide-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

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

.guide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.guide-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.guide-card p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.guide-features li {
    padding: 8px 0;
    color: var(--secondary);
    padding-left: 20px;
    position: relative;
}

.guide-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn-block {
    width: 100%;
}

/* Online Courses Section */
.courses-preview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.course-card.featured-course {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.course-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.course-content p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.course-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
}

.course-features i {
    color: var(--accent);
    font-size: 1.2rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--medium);
}

.course-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.coming-soon-courses {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.coming-soon-courses h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.course-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.course-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium);
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list i {
    color: var(--accent);
    font-size: 1.5rem;
    width: 30px;
}

.course-list h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.course-list p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Resource CTA */
.resource-cta {
    background-color: var(--light);
    padding: 80px 0;
}

.resource-cta h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.resource-cta p {
    color: var(--secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}



/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hub-nav-wrapper {
        justify-content: flex-start;
    }
    
    .hub-nav-item {
        padding: 15px 20px;
    }
    
    .featured-wrapper .row {
        flex-direction: column;
    }
    
    .video-grid,
    .articles-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .episode-card {
        flex-direction: column;
        text-align: center;
    }
    
    .episode-actions {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .resource-categories,
    .article-topics {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .category-btn,
    .topic-tag {
        white-space: nowrap;
    }
    
    .course-features {
        grid-template-columns: 1fr;
    }
}

.coming-soon-section {
    background-color: var(--ivory);
    padding: 100px 20px;
    text-align: center;
}

.coming-soon-section h2 {
    font-family: var(--header-font);
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.coming-soon-section p.lead {
    font-size: 1.25rem;
    color: var(--cool-gray);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-section img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.coming-soon-preview img {
    transition: transform 0.3s ease;
}

.coming-soon-preview img:hover {
    transform: scale(1.02);
}


.privacy-note {
    font-size: 0.85rem;
    color: var(--medium);
    margin-top: 15px;
}/* Newsletter Refined */
.newsletter {
    background-color: var(--primary);
    color: var(--light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
}

.newsletter-icon i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.newsletter-text h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light);
}

.newsletter-text p {
    color: var(--medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    background-color: var(--light);
    color: var(--dark);
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: var(--sans);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 280px;
}

.newsletter-form button {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: bold;
    padding: 12px 28px;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--medium);
    color: var(--primary);
}

.privacy-note {
    color: var(--medium);
    font-size: 0.9rem;
    margin-top: 10px;
}
/* ============================ 
   Counseling Page Specific Styles
============================ */

/* Counseling Hero */
.counseling-hero {
    background-image: url('../images/counseling-hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Counseling Introduction */
.counseling-intro {
    padding: 80px 0;
    background-color: white;
}

.counseling-intro h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.counseling-intro .lead {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.counseling-intro p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.counseling-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--medium);
}

.counseling-stats .stat {
    text-align: center;
}

.counseling-stats .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.counseling-stats .label {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counseling-image {
    position: relative;
}

.primary-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-badge i {
    font-size: 1.2rem;
}

/* What I Help With Section */
.counseling-areas {
    background-color: var(--light);
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.area-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent);
}

.area-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.area-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.area-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--secondary);
}

.area-card li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent);
    font-weight: bold;
}

/* My Approach Section */
.counseling-approach {
    padding: 80px 0;
    background-color: white;
}

.approach-box {
    background-color: var(--light);
    padding: 35px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
    margin-bottom: 30px;
}

.approach-box:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.approach-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.approach-box h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.approach-box p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.counseling-process {
    background-color: var(--light);
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-connector {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 2px;
    background-color: var(--medium);
    z-index: 1;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.counseling-testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-card cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* Practical Information Section */
.counseling-info {
    background-color: var(--light);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.info-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.info-card p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

.insurance-note {
    background-color: rgba(192, 178, 131, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
}

.insurance-note p {
    color: var(--secondary);
    margin: 0;
}

/* FAQ Section */
.counseling-faq {
    background-color: white;
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.counseling-cta {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.counseling-cta .cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.counseling-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.counseling-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.availability-note {
    color: var(--accent);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Contact Form Section */
.counseling-contact {
    background-color: var(--light);
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.counseling-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(192, 178, 131, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.counseling-form .btn-lg {
    margin-top: 20px;
    padding: 15px 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .counseling-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .counseling-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .counseling-stats .number {
        font-size: 2.5rem;
    }
    
    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .area-card {
        padding: 30px 20px;
    }
}


.section-title {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 0.75rem auto 0;
}
.impact-story {
    background-color: var(--light);
    padding: 80px 0;
}

.impact-quote {
    font-family: var(--serif);
    font-style: italic;
    color: var(--secondary);
    font-size: 1.25rem;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 20px 0;
}

.impact-message {
    color: var(--primary);
    font-size: 1.1rem;
}
.support-impact {
    background-color: var(--light);
    padding: 80px 0;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background-color: var(--white);
    border: 1px solid var(--medium);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.impact-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.impact-stat .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.impact-stat .label {
    font-size: 0.9rem;
    color: var(--cool-gray);
}
.giving-options {
    background-color: var(--ivory);
    padding: 80px 0;
}

.tier-card {
    border: 1px solid var(--medium);
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tier-card.featured {
    border-left: 6px solid var(--accent);
}

.tier-badge {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.amount-btn {
    background-color: var(--light);
    color: var(--primary);
    border: 1px solid var(--medium);
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn.active,
.amount-btn:hover {
    background-color: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}
/* Annual Report Box */
.transparency {
  background-color: var(--light);
  padding: 80px 0;
  border-top: 1px solid var(--medium);
  border-bottom: 1px solid var(--medium);
}

.report-download {
  background-color: var(--white);
  border: 1px solid var(--medium);
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}

.report-download h3 {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.report-download p {
  font-size: 0.95rem;
  color: var(--cool-gray);
  margin-bottom: 20px;
}

.report-download .btn {
  background-color: var(--accent);
  color: var(--dark);
  padding: 12px 24px;
  font-weight: bold;
  transition: var(--transition);
}

.report-download .btn:hover {
  background-color: var(--medium);
  color: var(--primary);
}


/* FAQ Accordion Style */
.support-faq {
  background-color: var(--white);
  padding: 80px 0;
}

.faq-item {
  background-color: var(--light);
  border: 1px solid var(--medium);
  margin-bottom: 10px;
  padding: 20px;
  font-family: var(--sans);
  color: var(--primary);
  transition: var(--transition);
}

.faq-item:hover {
  background-color: var(--medium);
  color: var(--dark);
}

.faq-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}


/* Heart Message Section */
.heart-message {
  background-color: var(--light);
  padding: 60px 0;
  text-align: center;
}

.heart-message blockquote {
  font-style: italic;
  color: var(--primary);
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 20px;
  font-family: var(--serif);
}

.heart-message cite {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--cool-gray);
}

/* Update the Counseling CTA Section to match newsletter style */
.counseling-cta {
    background-color: #2A2A2A; /* Dark charcoal like footer */
    color: white;
    padding: 100px 0;
    position: relative;
}

.counseling-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 84, 90, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.counseling-cta .cta-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counseling-cta h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.counseling-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.counseling-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.counseling-cta .btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.counseling-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.counseling-cta .btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.counseling-cta .btn-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.availability-note {
    color: rgba(192, 178, 131, 0.9);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Update the Contact Form Section for better visibility */
.counseling-contact {
    background-color: #f8f8f8; /* Very light gray background for the section */
    padding: 80px 0;
}

.counseling-form {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0; /* Subtle border for definition */
}

/* Alternative: Make the form itself have a gray background */
.counseling-form.gray-form {
    background-color: #c0c0c0; /* Light gray form background */
    border: 1px solid #ddd;
}

.counseling-form .form-control {
    background-color: white;
    border: 2px solid #e0e0e0;
}

.counseling-form .form-control:focus {
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(192, 178, 131, 0.1);
}

/* Make the section title and divider more prominent */
.counseling-contact .section-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.counseling-contact .section-divider {
    background-color: var(--accent);
    height: 4px;
    width: 80px;
    margin: 0 auto 30px;
}

/* Fix Testimonials Section Visibility */
.testimonials {
    background-color: #c0c0c0; /* Light gray background as requested */
    padding: 80px 0;
}

/* Make the testimonial cards stand out */
.testimonial-content {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Alternative: Dark testimonial cards on light background */
.testimonials.dark-cards {
    background-color: #c2c2c29c; /* Very light background */
}

.testimonials.dark-cards .testimonial-content {
    background-color: #c4c4c4; /* Darker gray cards */
    border: none;
}

.testimonials.dark-cards .testimonial-text p {
    color: #333;
}

.testimonials.dark-cards .testimonial-author p {
    color: var(--primary);
}

/* Ensure quote icon is visible */
.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Make sure text has good contrast */
.testimonial-text p {
    color: var(--secondary);
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Style the control buttons */
.testimonial-controls {
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background-color: white;
    border: 2px solid var(--medium);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Style the dots */
.testimonial-dots {
    display: inline-flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Add subtle animation when testimonials change */
.testimonial {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
}

/* ============================ 
   Support Page Specific Styles
============================ */



/* Impact Story Section */
.impact-story {
    padding: 80px 0;
    background-color: white;
}

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

.impact-quote {
    background-color: var(--light);
    padding: 40px 50px;
    border-left: 5px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    position: relative;
}

.impact-quote:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: var(--accent);
    opacity: 0.2;
    font-family: var(--serif);
}

.impact-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.impact-quote cite {
    display: block;
    text-align: right;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

.impact-message {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 30px;
}

/* Support Impact Section */
.support-impact {
    background-color: var(--light);
    padding: 80px 0;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.impact-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.impact-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.impact-card p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.impact-stat {
    border-top: 1px solid var(--medium);
    padding-top: 20px;
    margin-top: auto;
}

.impact-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.impact-stat .label {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Giving Options Section */
.giving-options {
    padding: 80px 0;
    background-color: white;
}

.giving-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tier-card {
    background-color: white;
    border: 2px solid var(--medium);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.tier-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-header h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.tier-subtitle {
    color: var(--secondary);
    margin-bottom: 30px;
}

.tier-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.amount-btn {
    flex: 1;
    min-width: 70px;
    padding: 10px 15px;
    background-color: white;
    border: 2px solid var(--medium);
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover {
    border-color: var(--accent);
}

.amount-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.tier-benefits h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.tier-benefits li {
    padding: 8px 0;
    color: var(--secondary);
    line-height: 1.6;
}

.partner-perks {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.partner-perks h5 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legacy-quote {
    font-style: italic;
    color: var(--accent);
    margin: 20px 0;
    font-size: 1.1rem;
}

/* Other Ways to Support */
.other-support {
    background-color: var(--light);
    padding: 80px 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.option-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.option-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.option-card p {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.option-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.option-link:hover {
    color: var(--primary);
}

/* Financial Transparency Section */
.transparency {
    background-color: white;
    padding: 80px 0;
}

.transparency-content h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.transparency-content p {
    color: var(--secondary);
    margin-bottom: 30px;
}

.fund-allocation h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.allocation-bar {
    display: flex;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.allocation-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.allocation-segment.programs {
    background-color: var(--accent);
}

.allocation-segment.admin {
    background-color: var(--secondary);
}

.allocation-segment.fundraising {
    background-color: var(--primary);
}

.transparency-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.transparency-badges img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.transparency-badges img:hover {
    opacity: 1;
}

.annual-report-cta {
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.annual-report-cta i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* FAQ Section Fixes */
.support-faq {
    background-color: var(--light);
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active h3:after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--secondary);
    line-height: 1.7;
    margin-top: 15px;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Partner Thanks Section */
.partner-thanks {
    background-color: white;
    padding: 80px 0;
}

.thanks-content h2 {
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.personal-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.signature-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.personal-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.personal-message .signature {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
    font-size: 1.3rem;
}

/* Final CTA Section */
.support-final-cta {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.support-final-cta .cta-box h2 {
    color: white;
    margin-bottom: 20px;
}

.support-final-cta .cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.support-final-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.security-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.security-note i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .giving-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: scale(1);
    }
    
    .allocation-segment span {
        font-size: 0.8rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================ 
   Connect Page Specific Styles
============================ */


/* Connection Options Section */
.connect-options {
    padding: 80px 0;
    background-color: rgb(220, 220, 220); /* Keep background white */
}

.options-intro h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.options-intro .lead {
    color: var(--secondary);
    font-size: 1.2rem;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.connect-card {
    background-color: #f5f5f5; /* Gray cards for contrast */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background-color: #ebebeb;
    border-color: var(--accent);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.connect-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.connect-card p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info {
    background-color: var(--light);
    padding: 80px 0;
}

.info-wrapper {
    margin-top: 50px;
}

.info-card {
    background-color: rgb(222, 220, 220);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.info-link {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary);
}

.info-card p {
    color: var(--secondary);
    margin-top: 10px;
}

.info-card address {
    font-style: normal;
    color: var(--secondary);
    line-height: 1.6;
}

/* Social Media Hub */
.social-hub {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.social-hub h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.social-hub p {
    color: var(--secondary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link.facebook { color: #1877f2; }
.social-link.instagram { color: #e1306c; }
.social-link.tiktok { color: #000000; }
.social-link.twitter { color: #1da1f2; }
.social-link.youtube { color: #ff0000; }

.social-link:hover {
    transform: translateY(-2px);
    border-color: currentColor;
    background-color: white;
}

/* Form Sections */
.contact-form-section,
.speaking-form-section,
.prayer-form-section {
    padding: 80px 0;
    background-color: rgba(229, 229, 229, 0.904);
}

.speaking-form-section {
    background-color: var(--light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #d4d3d3; /* Light gray form backgrounds */
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
}

.form-wrapper h2 {
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
}

/* Prayer Form Special Styling */
.prayer-header {
    margin-bottom: 40px;
}

.prayer-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.prayer-verse {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.prayer-verse .verse {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 10px;
}

.prayer-verse .reference {
    color: var(--primary);
    font-weight: 600;
}

/* Form Controls */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(192, 178, 131, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 8px;
}

/* Partnership Section */
.partner-section {
    background-color: white;
    padding: 80px 0;
}

.partner-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.partner-card {
    background-color: #f5f5f5; /* Gray cards */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background-color: #ebebeb;
    border-color: var(--accent);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.partner-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

.partner-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.partner-card p {
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.partner-card li {
    padding: 8px 0;
    color: var(--secondary);
    padding-left: 20px;
    position: relative;
}

.partner-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.partner-note {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

/* Newsletter Section for Connect Page */
.connect-page .newsletter {
    background-color: var(--secondary); /* Teal background */
    color: white;
    padding: 80px 0;
}

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

.newsletter-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 30px;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .partner-options {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        width: 100%;
    }
}


/* Social Media Hub - Fixed */
.social-hub {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.social-hub h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.social-hub p {
    color: var(--secondary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual social link styling */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.social-link i {
    font-size: 1.3rem;
}

.social-link span {
    font-size: 0.95rem;
}

/* Brand colors for each platform */
.social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
    background-color: white;
}

.social-link.instagram:hover {
    border-color: #e1306c;
    color: #e1306c;
    background-color: white;
}

.social-link.tiktok:hover {
    border-color: #000000;
    color: #000000;
    background-color: white;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
    background-color: white;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
    background-color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* If you want circular icon-only buttons instead */
.social-links-circular {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.social-icon-circle i {
    font-size: 1.4rem;
}

.social-icon-circle.facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-icon-circle.instagram:hover {
    background-color: #e1306c;
    color: white;
    border-color: #e1306c;
}

.social-icon-circle.tiktok:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.social-icon-circle.twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-icon-circle.youtube:hover {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* Ensure Font Awesome icons are visible */
.social-link i,
.social-icon-circle i {
    display: inline-block;
    vertical-align: middle;
}


/* ============================ 
   Video Page Specific Styles
============================ */

/* Video Hero */
.video-hero {
    background-image: url('../images/video-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-cta {
    margin-top: 30px;
}

.btn-youtube {
    background-color: #ff0000;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-youtube i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Channel Stats */
.channel-stats {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-item h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Latest Video Section */
.latest-video {
    padding: 80px 0;
    background-color: white;
}

.latest-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Playlists Section */
.playlists-section {
    background-color: var(--light);
    padding: 80px 0;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.playlist-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.playlist-thumbnail {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    background-color: #000;
}

.playlist-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-card:hover .playlist-overlay {
    opacity: 1;
}

.playlist-card:hover .playlist-thumbnail img {
    transform: scale(1.1);
}

.playlist-overlay i {
    font-size: 4rem;
    color: white;
    margin-bottom: 10px;
}

.video-count {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.playlist-info {
    padding: 30px;
}

.playlist-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.playlist-info p {
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.playlist-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.playlist-link:hover {
    color: var(--primary);
}

.playlist-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.view-all-playlists {
    text-align: center;
}

/* YouTube Feed Section */
.youtube-feed {
    padding: 80px 0;
    background-color: white;
}

.youtube-feed-wrapper {
    margin-top: 40px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* YouTube Subscribe CTA */
.youtube-subscribe-cta {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.subscribe-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.youtube-icon {
    font-size: 5rem;
    color: #ff0000;
    margin-bottom: 30px;
}

.subscribe-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.subscribe-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.subscribe-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-youtube-subscribe {
    background-color: #ff0000;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-youtube-subscribe:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.social-follow a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-follow a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .playlists-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-follow {
        margin-top: 20px;
    }
}/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: white;
        z-index: 1001;
    }
    
    .nav-toggle.active {
        color: var(--accent);
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-list li a:hover,
    .nav-list li a.active {
        color: var(--accent);
        padding-left: 10px;
    }
    
    .nav-list li:last-child a {
        border-bottom: none;
    }
    
    /* Hide social icons in mobile nav */
    .social-icons {
        display: none;
    }
    
    /* Support button special styling in mobile */
    .nav-list .nav-donate {
        background-color: var(--accent);
        color: var(--primary) !important;
        text-align: center;
        border-radius: 25px;
        margin-top: 20px;
        padding: 12px 20px !important;
        border: none !important;
    }
    
    .nav-list .nav-donate:hover {
        background-color: #D4C299;
        padding-left: 20px !important;
    }
}

/* Overlay for mobile menu */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-list.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Ensure hamburger icon is visible */
.nav-toggle i {
    pointer-events: none; /* Prevents icon from blocking clicks */
}