/* Global Styles */
:root {
    --primary-color: #87CEEB; /* Sky Blue */
    --secondary-color: #4682B4; /* Steel Blue */
    --accent-color: #4682B4; /* Steel Blue */
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --bg-gradient: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px rgba(135, 206, 235, 0.3);
    --transition: all 0.3s ease;
    --glassmorphism: rgba(255, 255, 255, 0.25);
    --glass-border-radius: 20px;
    --neumorphism-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section + .section {
    border-top: 1px solid #eef2f7;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    letter-spacing: 1px;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(233, 75, 60, 0.3);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: #ffffff;
    border-bottom: 1px solid #e9eef3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 10px;
    border-radius: 30px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(70, 130, 180, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.donate-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.donate-btn:hover {
    background: #d63a2d;
    transform: translateY(-2px);
    animation: pulse 2s infinite;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.language-dropdown-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-dropdown-btn:hover {
    background: var(--secondary-color);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    right: 0;
}

.language-dropdown-content a {
    color: var(--dark-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.language-dropdown-content a:hover {
    background-color: var(--light-color);
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
}

.language-dropdown:hover .language-dropdown-btn {
    background: var(--secondary-color);
}

/* Navigation Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--dark-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    content: "\25BE";
    margin-left: 5px;
    font-size: 0.8em;
}

/* Hero Section with Image Slider */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/slider/1.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/slider/2.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/slider/3.JPG');
    background-size: cover;
    background-position: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(70, 130, 180, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(70, 130, 180, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(70, 130, 180, 0);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 30px;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #e6f7ff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.pastor-info {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.pastor-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.pastor-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.pastor-info p {
    margin: 0 0 3px 0;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.image-caption {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    color: #666;
}

/* Ministries Section */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ministry-card {
    background: var(--glassmorphism);
    border-radius: var(--glass-border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.35);
    animation: float 3s ease-in-out infinite;
}

.ministry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ministry-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.ministry-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ministry-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ministry-links .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    background: var(--glassmorphism);
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.event-time {
    margin-top: 15px;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Connect Section */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.connect-card {
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(0deg);
}

.connect-card:hover {
    transform: translateY(-5px) perspective(1000px) rotateY(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.connect-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.connect-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Sermons & Media Section */
.media-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-color);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.media-content {
    min-height: 300px;
}

.media-tab {
    display: none;
}

.media-tab.active {
    display: block;
}

/* YouTube Videos Styles */
.youtube-videos-container {
    text-align: center;
}

.youtube-videos-container p:first-child {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.youtube-video-item {
    display: flex;
    justify-content: center;
}

.youtube-video-item iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

@media (max-width: 600px) {
    .youtube-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-video-item iframe {
        height: 200px;
    }
}

/* Testimonials Section */
/* All testimonial styles have been removed */

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    border-radius: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .section h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }
}

/* Additional styles for new pages */

/* Donate Page */
.donate-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Diocese Page */
.diocese-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.diocese-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.diocese-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.bishop-section {
    background: var(--light-color);
}

.bishop-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.bishop-image img {
    width: 100%;
    border-radius: 10px;
}

.bishop-details h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.bishop-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.department-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.department-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.department-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.department-detail {
    margin: 60px 0;
}

.department-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.department-text h3 {
    color: var(--secondary-color);
    margin: 20px 0 15px;
}

.choirs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.choir-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.choir-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.choir-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.choir-info {
    padding: 20px;
}

.choir-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.worship-team {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.team-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-info p {
    margin-bottom: 15px;
}

/* Groups Page */
.groups-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.group-detail {
    margin: 60px 0;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.group-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.group-logo {
    font-size: 3rem;
    color: var(--accent-color);
}

.group-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.group-text h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

/* Departments Page */
.departments-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.department-detail {
    margin: 60px 0;
}

.department-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.department-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.department-logo {
    font-size: 3rem;
    color: var(--accent-color);
}

.department-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.department-text h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.department-text ul {
    margin: 15px 0 25px 30px;
}

.department-text li {
    margin-bottom: 10px;
}

/* Choirs Page */
.choirs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.choir-detail {
    margin: 60px 0;
}

.choir-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.choir-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.choir-logo {
    font-size: 3rem;
    color: var(--accent-color);
}

.choir-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.choir-text h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.choir-text ul {
    margin: 15px 0 25px 30px;
}

.choir-text li {
    margin-bottom: 10px;
}

/* Worship Page */
.worship-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.worship-detail {
    margin: 60px 0;
}

.worship-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.worship-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
}

.worship-logo {
    font-size: 3rem;
    color: var(--accent-color);
}

.worship-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.worship-text h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.worship-text ul {
    margin: 15px 0 25px 30px;
}

.worship-text li {
    margin-bottom: 10px;
}

.donate-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.donate-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.donation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.donation-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.donation-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.address {
    margin: 20px 0;
    line-height: 1.8;
    color: var(--dark-color);
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
    background: white;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    background: var(--light-color);
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.amount-btn:hover,
.amount-btn.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-container:hover {
    background: #e9ecef;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
    transform: scale(1.3);
}

.checkbox-container .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.checkbox-container input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    background: #d63a2d;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(233, 75, 60, 0.3);
}

/* Responsive adjustments for forms */
@media screen and (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .amount-options {
        justify-content: center;
    }
    
    .amount-btn {
        flex: 1;
        min-width: 100px;
    }
}

.impact-section {
    background: var(--light-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.impact-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Churches Page */
.churches-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497986559295-669b0c4d4e0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.churches-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.churches-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.churches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.church-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vision-mission-hero, .core-values-hero, .partners-hero, .ask-bible-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1506791747719-69bbcb0ef4bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.vision-mission-hero h1, .core-values-hero h1, .ask-bible-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-mission-hero p, .core-values-hero p, .ask-bible-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.partners-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1506791747719-69bbcb0ef4bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.partners-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.partners-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.church-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.church-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.church-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.church-info {
    padding: 25px;
}

.church-info h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.church-location {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.church-description {
    margin-bottom: 20px;
    color: var(--text-color);
}

.church-details {
    margin-bottom: 20px;
}

.church-details p {
    margin-bottom: 8px;
    color: var(--dark-color);
}

.map-section {
    background: var(--light-color);
}

.map-container {
    height: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 30px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* Church Detail Pages */
.church-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497986559295-669b0c4d4e0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.sacred-heart {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1506791747719-69bbcb0ef4bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
}

.church-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.church-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.church-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.church-images .main-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.church-description h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.church-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.church-highlights {
    margin: 30px 0;
}

.highlight {
    display: flex;
    margin-bottom: 25px;
}

.highlight i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    min-width: 30px;
}

.highlight h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.light-bg {
    background: var(--light-color);
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Privacy Policy Styles */
.policy-content {
    padding: 120px 0 80px;
}

.policy-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-section h1 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.policy-section h2 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
    text-align: left;
}

.policy-section h2::after {
    display: none;
}

.policy-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-section ul {
    margin: 15px 0 25px 30px;
}

.policy-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* New About Section Styles */
#vision-mission {
    margin-bottom: 40px;
}

#vision-mission h3, #core-values h3, #our-partners h3 {
    color: var(--secondary-color);
    margin: 30px 0 20px;
}

#core-values ul {
    list-style-type: none;
    padding: 0;
}

#core-values li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

#core-values li:last-child {
    border-bottom: none;
}

/* Board members styles removed */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.partner {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: white;
    transition: var(--transition);
}

.partner:hover {
    transform: translateY(-5px);
}

.partner img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* New Page Hero Sections */
.vision-mission-hero, .core-values-hero, .partners-hero, .ask-bible-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497986559295-669b0c4d4e0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.core-values-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1506791747719-69bbcb0ef4bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
}

/* .board-members-hero background removed */

.partners-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497986559295-669b0c4d4e0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
}

.ask-bible-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1506791747719-69bbcb0ef4bf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80');
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* New Page Content Styles */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-text h2 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* .board-members-content .board-intro styles removed */

.board-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

/* Media Info Section */
.media-info {
    padding: 60px 0;
    background: white;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.media-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* YouTube Videos Styles */
.youtube-videos-container {
    text-align: center;
}

.youtube-videos-container p:first-child {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.youtube-videos {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.youtube-videos iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Testimonials Section */

/* Board Members Styles */
.board-member-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.board-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.member-contact a {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.member-contact a:hover {
    text-decoration: underline;
}

/* Ask About Bible Styles */
.ask-bible-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.ask-bible-content .ask-bible-text {
    padding-right: 20px;
}

.ask-bible-content .ask-bible-image {
    max-width: 300px;
}

.ask-bible-image img {
    width: 100%;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.partner-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-info {
    padding: 25px;
}

.partner-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.partner-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partner-link a:hover {
    text-decoration: underline;
}

.partners-callout {
    text-align: center;
    background: var(--light-color);
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
}

.partners-callout h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.partners-callout p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Ask About Bible Styles */
.ask-bible-content {
    background: var(--light-color);
}

.bible-ai-intro {
    text-align: center;
    margin-bottom: 50px;
}

.bible-ai-intro h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bible-ai-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ai-chat-container {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 50px 0;
    position: relative;
}

.ai-chat-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.chat-header {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.chat-header::after {
    content: "✝";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.chat-header h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chat-header p {
    opacity: 0.9;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20" fill="none" stroke="rgba(70,130,180,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.message {
    max-width: 80%;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: var(--light-color);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-message {
    background: var(--accent-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.user-message a {
    color: white;
    text-decoration: underline;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
    text-align: right;
}

.chat-input {
    display: flex;
    padding: 15px;
    background: var(--light-color);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.chat-input input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-input input:focus {
    outline: none;
    box-shadow: 0 2px 10px rgba(70, 130, 180, 0.2);
}

.chat-input button {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-input button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.chat-disclaimer {
    padding: 15px 20px;
    background: #fff8e6;
    border-top: 1px solid #ffd54f;
    font-size: 0.9rem;
}

.chat-disclaimer i {
    margin-right: 8px;
    color: #ffa000;
}

.chat-controls {
    padding: 10px 20px;
    background: var(--light-color);
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: right;
}

.clear-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.clear-btn i {
    margin-right: 5px;
}

.popular-topics {
    margin-top: 50px;
}

.popular-topics h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.topic-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.topic-card i {
    color: var(--accent-color);
}

.topic-card p {
    color: var(--dark-color);
    line-height: 1.6;
}

/* Ask About Bible Styles */
.ask-bible-content {
    background: var(--light-color);
    padding-top: 20px;
    padding-bottom: 20px;
}

.ai-chat-container {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 0;
    position: relative;
}

.ai-chat-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.chat-header {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.chat-header::after {
    content: "✝";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.chat-header h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chat-header p {
    opacity: 0.9;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20" fill="none" stroke="rgba(70,130,180,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.message {
    max-width: 80%;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: var(--light-color);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-message {
    background: var(--accent-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.user-message a {
    color: white;
    text-decoration: underline;
}

.message-content p {
    margin: 0;
    line-height: 1.5;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
    text-align: right;
}

.chat-input {
    display: flex;
    padding: 15px;
    background: var(--light-color);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.chat-input input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-input input:focus {
    outline: none;
    box-shadow: 0 2px 10px rgba(70, 130, 180, 0.2);
}

.chat-input button {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-input button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.chat-disclaimer {
    padding: 15px 20px;
    background: #fff8e6;
    border-top: 1px solid #ffd54f;
    font-size: 0.9rem;
}

.chat-disclaimer i {
    margin-right: 8px;
    color: #ffa000;
}

.chat-controls {
    padding: 10px 20px;
    background: var(--light-color);
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: right;
}

.clear-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.clear-btn i {
    margin-right: 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .chat-messages {
        height: 300px;
    }
    
    .chat-input {
        flex-direction: column;
    }
    
    .chat-input input {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .message {
        max-width: 90%;
    }
    
    .highlight {
        flex-direction: column;
    }
    
    .highlight i {
        margin-bottom: 10px;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .feature, .topic-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
}