/* ===================================
   BESORAH YESHUA MINISTRY - MAIN STYLES
   Brand Colors: #205782 (Blue), #f2842f (Orange)
   =================================== */

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

:root {
    --primary-color: #205782;
    --secondary-color: #f2842f;
    --dark-blue: #1a4566;
    --light-blue: #2d6fa0;
    --dark-orange: #d97228;
    --light-orange: #ff9447;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 30px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ===================================
   NAVIGATION
   =================================== */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ===================================
   LOGO STYLES - CIRCULAR LOGO WITH TEXT
   =================================== */

/* Logo container */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Circular logo image */
.logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Logo text styling */
.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #f2842f; /* Orange color */
    display: block !important; /* Ensure it's visible */
    transition: color 0.3s ease;
}

/* Logo hover effects */
.nav-logo:hover .logo {
    transform: scale(1.05);
}

.nav-logo:hover .logo-text {
    color: var(--dark-orange); /* Slightly darker orange on hover */
}

/* Footer logo styling */
.footer-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
}

/* Footer site name styling */
.footer-site-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f2842f; /* Orange color */
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer tagline styling */
.footer-tagline {
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Follow Us text styling */
.follow-us {
    color: #f2842f; /* Orange color */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Footer section specific styling */
.footer-section:first-child {
    text-align: center;
}

.footer-section:first-child .footer-logo {
    margin: 0 auto 1rem auto;
}

/* Social links container */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo {
        height: 45px;
        width: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        height: 70px;
        width: 70px;
    }
    
    .footer-site-name {
        font-size: 1.6rem;
    }
    
    .follow-us {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .logo {
        height: 40px;
        width: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-logo a {
        gap: 0.6rem;
    }
    
    .footer-logo {
        height: 60px;
        width: 60px;
    }
    
    .footer-site-name {
        font-size: 1.4rem;
    }
    
    .follow-us {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .footer-logo {
        height: 50px;
        width: 50px;
    }
    
    .footer-site-name {
        font-size: 1.2rem;
    }
    
    .follow-us {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-donate {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
}

.btn-donate:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 132, 47, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 50%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L55,35 L75,35 L60,50 L65,75 L50,60 L35,75 L40,50 L25,35 L45,35 Z" fill="white" opacity="0.03"/></svg>');
    background-size: 150px;
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Fade-in animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 132, 47, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

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

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

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* ===================================
   STATS BAR
   =================================== */

.stats-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    padding: 3rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Compact Stats */
.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-compact {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.stat-compact i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-compact .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.stat-compact .label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.03"/></svg>');
    background-size: 100px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ===================================
   MISSION SECTION
   =================================== */

.mission {
    background: var(--light-bg);
}

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

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(242, 132, 47, 0.3);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-events {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: var(--white);
}

.cta-partnership {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: var(--white);
}

.cta-full {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cta-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-full p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


<!-- ===================================
     ALSO ADD THIS CSS TO style.css
     (Add after the other .cta-section styles)
     =================================== -->
     
.cta-prayer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}





/* ===================================
   SCRIPTURE SECTION
   =================================== */

.scripture {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.scripture blockquote {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.scripture i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.scripture p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.scripture cite {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: normal;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-story {
    padding: 5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 3rem;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 500;
}

/* MVV Section */
.mvv-section {
    background: var(--light-bg);
}

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

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.impact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.impact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Ministry Areas */
.ministry-areas {
    background: var(--light-bg);
}

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

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

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

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-card i {
    color: var(--secondary-color);
}

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

/* ===================================
   EVENTS PAGE
   =================================== */

.event-stats {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    padding: 3rem 0;
    color: var(--white);
}

.event-filters {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.event-filters .container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-dark);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.events-section {
    background: var(--light-bg);
}

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

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-orange));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.event-header {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--white);
}

.event-date-box {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.event-date-box .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.event-date-box .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.event-meta h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-location {
    opacity: 0.9;
    font-size: 0.9rem;
}

.event-body {
    padding: 2rem;
}

.event-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details i {
    color: var(--secondary-color);
}

.event-footer {
    padding: 0 2rem 2rem;
}

/* ===================================
   PARTNERSHIP PAGE - CORRECTED
   =================================== */

.partnership-stats {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    padding: 3rem 0;
    color: var(--white);
    margin-top: 80px; /* Added for fixed header */
}

.partnership-benefits {
    background: var(--light-bg);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    height: fit-content;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.partnership-types {
    padding: 4rem 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.partnership-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    height: fit-content;
}

.partnership-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partnership-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.partnership-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.partnership-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

.partnership-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.partnership-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.partnership-features i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.partnership-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Testimonials */
.testimonials {
    background: var(--light-bg);
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    height: fit-content;
}

.testimonial-icon {
    color: var(--secondary-color);
    font-size: 1.8rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Stats Grid Compact */
.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.stat-compact {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-compact:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-compact i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-compact .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    margin: 0.5rem 0;
}

.stat-compact .label {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section.cta-full {
    padding: 4rem 0;
    margin-top: 0;
}

/* ===================================
   RESPONSIVE FIXES FOR PARTNERSHIP PAGE
   =================================== */

@media (max-width: 968px) {
    .partnership-stats {
        margin-top: 70px;
        padding: 2.5rem 0;
    }
    
    .partnership-benefits,
    .partnership-types,
    .testimonials {
        padding: 3rem 0;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-card.featured {
        transform: scale(1);
        order: -1; /* Move featured card to top on mobile */
    }
    
    .partnership-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stats-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .partnership-stats {
        margin-top: 60px;
        padding: 2rem 0;
    }
    
    .partnership-benefits,
    .partnership-types,
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .benefit-card,
    .partnership-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-badge {
        top: -10px;
        right: 15px;
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }
    
    .partnership-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Ensure container constraints */
.partnership-stats .container,
.partnership-benefits .container,
.partnership-types .container,
.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===================================
   CONTACT PAGE - CORRECTED
   =================================== */

.contact-section {
    padding: 5rem 0;
    margin-top: 80px; /* Added to account for fixed header */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.contact-info-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info-box > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-connect h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links-large {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

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

/* Contact Form */
.contact-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Ministry Zones */
.ministry-zones {
    background: var(--light-bg);
    padding: 4rem 0;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.zone-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.zone-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.zone-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.zone-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   RESPONSIVE FIXES FOR CONTACT PAGE
   =================================== */

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 3rem 0;
        margin-top: 70px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 1.8rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .social-links-large {
        justify-content: center;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zone-card {
        padding: 1.5rem;
    }
}

/* Container fixes for contact page only */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Ensure no horizontal overflow */
body {
    overflow-x: hidden;
    width: 100%;
}
/* ===================================
   DONATION PAGE
   =================================== */

.donation-impact {
    background: var(--light-bg);
}

.impact-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-example {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.impact-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.impact-example:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.8rem;
}

.impact-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-example h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-example p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Donation Form Section */
.donation-form-section {
    padding: 5rem 0;
}

.donation-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.donation-options {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.donation-options h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.donation-options h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.giving-type,
.amount-selection,
.designation,
.payment-methods {
    margin-bottom: 2rem;
}

.frequency-buttons {
    display: flex;
    gap: 1rem;
}

.frequency-btn {
    flex: 1;
    padding: 0.8rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.frequency-btn.active,
.frequency-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.amount-btn {
    padding: 1rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
}

.amount-btn.active,
.amount-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.custom-amount-input {
    margin-top: 1rem;
}

.custom-amount-input label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.custom-amount-input input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.designation select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-btn {
    padding: 1rem;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-btn i {
    font-size: 2rem;
}

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

.payment-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.paypal-info {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.security-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.security-note i {
    color: #28a745;
}

.bank-details {
    text-align: center;
}

.bank-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bank-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: left;
}

.bank-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.bank-details .note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 1rem 0;
}

/* Donation Info Box */
.donation-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card i {
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card ul {
    margin-left: 1.5rem;
    color: var(--text-light);
}

.info-card li {
    margin-bottom: 0.3rem;
}

.help-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.help-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.help-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Other Ways */
.other-ways {
    background: var(--light-bg);
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.way-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.way-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.way-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.way-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.way-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.way-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.way-card a:hover {
    text-decoration: underline;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-donate {
        display: none;
    }

    .story-grid,
    .contact-grid,
    .donation-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .stats-grid,
    .stats-grid-compact {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .partnership-card.featured {
        transform: scale(1);
    }

    .partnership-card.featured:hover {
        transform: translateY(-10px);
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .frequency-buttons,
    .payment-options {
        flex-direction: column;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

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

/* ===================================
   LOADING & ANIMATIONS
   =================================== */

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    header, footer, .btn, .hamburger {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ===================================
   CSS ADDITIONS FOR IMPROVED FUNCTIONALITY
   Add these to the END of your existing style.css file
   =================================== */

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus visible for better keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ===================================
   FORM MESSAGES
   =================================== */

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.form-message i {
    font-size: 1.2rem;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

#scrollTopBtn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:active {
    transform: translateY(-1px);
}

/* ===================================
   LOADING STATE
   =================================== */

body.loaded {
    animation: fadeIn 0.5s ease;
}

/* Page loader (optional - add if you want a loading spinner) */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

body.loaded .page-loader {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   SELECTED AMOUNT DISPLAY
   =================================== */

.selected-amount-display {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.selected-amount-display p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.selected-amount-display h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

/* ===================================
   ALTERNATIVE PAYMENT METHODS
   =================================== */

.alternative-payment {
    margin-top: 2rem;
}

.alternative-payment h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.payment-method-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.payment-method-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-method-card i {
    color: var(--secondary-color);
}

.payment-method-card p {
    color: var(--text-light);
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* ===================================
   COOKIE CONSENT BANNER (Optional)
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(32, 87, 130, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

/* ===================================
   IMPROVED BUTTON HOVER EFFECTS
   =================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   IMPROVED CARD ANIMATIONS
   =================================== */

.mission-card,
.event-card,
.partnership-card,
.benefit-card,
.impact-example,
.testimonial-card {
    transition: all 0.3s ease;
}

/* ===================================
   IMPROVED FORM STYLING
   =================================== */

/* Better form field focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 132, 47, 0.1);
}

/* Form field error state */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

/* Form field success state */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
}

/* ===================================
   PRINT STYLES IMPROVEMENTS
   =================================== */

@media print {
    /* Hide navigation, footer, and interactive elements */
    header, 
    footer, 
    .btn, 
    .hamburger,
    #scrollTopBtn,
    .cookie-banner {
        display: none !important;
    }
    
    /* Optimize for printing */
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
    }
    
    /* Show URLs after links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
    
    /* Prevent page breaks inside important elements */
    .mission-card,
    .event-card,
    .partnership-card {
        page-break-inside: avoid;
    }
}

/* ===================================
   RESPONSIVE IMPROVEMENTS
   =================================== */

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .selected-amount-display h2 {
        font-size: 2rem;
    }
    
    .payment-method-card {
        padding: 1rem;
    }
}

/* ===================================
   DARK MODE SUPPORT (Optional - for future)
   =================================== */

@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if desired */
    /* This is optional and can be implemented later */
}

/* ===================================
   ANIMATIONS FOR BETTER UX
   =================================== */

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide in from bottom */
@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for important elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Apply animations on page load */
.animate-fade-in {
    animation: fadeIn 0.6s ease;
}

.animate-slide-in {
    animation: slideInBottom 0.6s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Visibility utilities */
.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Spacing utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Text utilities */
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.font-weight-bold { font-weight: bold; }
.font-weight-normal { font-weight: normal; }

/* ===================================
   HIGH CONTRAST MODE SUPPORT
   =================================== */

@media (prefers-contrast: high) {
    :root {
        --border-color: #000;
    }
    
    .btn {
        border-width: 2px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 2px;
    }
}

/* ===================================
   REDUCED MOTION SUPPORT
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   CRITICAL CSS FOR CONTACT FORM
   =================================== */

/* Hide honeypot field from users (spam protection) */
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Ensure form feedback is properly styled */
#formFeedback {
    margin-top: 1rem;
}

/* Better placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    opacity: 1;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    opacity: 0.5;
}



/* ===================================
   PRAYER REQUEST PAGE STYLES
   Add this to the END of your style.css file
   =================================== */

.prayer-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

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

.prayer-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.prayer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.prayer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.prayer-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(242, 132, 47, 0.3);
}

.prayer-card .card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.prayer-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.prayer-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-request {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    font-size: 1rem;
}

.btn-request:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 132, 47, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.required {
    color: var(--secondary-color);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 132, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    color: var(--text-dark);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 132, 47, 0.3);
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.success-message h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Hidden field for spam protection */
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

    .modal-content {
        padding: 2rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .prayer-card {
        padding: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .close-btn {
        top: 15px;
        right: 15px;
    }
}





/* ===================================
   END OF STYLES
   =================================== */