/* ===================================
           LOADER STYLES - 
           =================================== */
        
        /* Loader Overlay */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        /* Hide loader when page is loaded */
        .page-loader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        /* Logo Container */
        .loader-logo {
            width: 150px;
            height: 150px;
            margin-bottom: 2rem;
            animation: zoomInOut 1.5s ease-in-out infinite;
        }

        .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Zoom In and Out Animation */
        @keyframes zoomInOut {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* Loading Text */
        .loader-text {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Loading Spinner (Optional - below logo) */
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: #d4af37;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Church Name */
        .loader-church-name {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 1.5rem;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .loader-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-top: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .loader-logo {
                width: 120px;
                height: 120px;
            }

            .loader-text {
                font-size: 1rem;
            }

            .loader-church-name {
                font-size: 1.2rem;
            }
        }





/* Logo Styles */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    flex-direction: row;  /* HORIZONTAL - Side by side */
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 80px;
}

.logo a:hover .logo-image {
    transform: scale(1.08);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;  /* Stack text vertically */
}

.logo-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-subtext {
    font-size: 0.68rem;
    color: var(--secondary-color);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        width: 42px;
        height: 42px;
    }
    .logo-text {
        font-size: 1.15rem;
    }
    .logo-subtext {
        font-size: 0.62rem;
    }
}

@media (max-width: 480px) {
    .logo a {
        gap: 8px;
    }
    .logo-image {
        width: 38px;
        height: 38px;
    }
    .logo-text {
        font-size: 1.05rem;
    }
    .logo-subtext {
        font-size: 0.58rem;
    }
}











.leader-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

/* 7 Mountains Section */
.mountains-section {
    background: var(--white);
}

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

.mountain-card {
    background: var(--beige);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid var(--mountain-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mountain-icon {
    width: 60px;
    height: 60px;
    background: var(--mountain-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

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

.mountain-card strong {
    color: var(--mountain-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Unique Section */
.unique-section {
    background: var(--beige);
}

.unique-content {
    max-width: 1000px;
    margin: 0 auto;
}

.unique-main {
    text-align: center;
    margin-bottom: 3rem;
}

.unique-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.unique-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
}

.unique-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.unique-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: start;
}

.unique-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.unique-feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.unique-feature h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.unique-feature p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Culture Section */
.culture-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.culture-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.culture-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 10px;
}

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

.culture-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.culture-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.culture-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    margin: 0;
}

.culture-description strong {
    color: var(--secondary-color);
}

/* Responsive for New Sections */
@media (max-width: 992px) {
    .mountains-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .mountains-grid {
        grid-template-columns: 1fr;
    }

    .mountain-card {
        padding: 1.5rem;
    }

    .unique-lead {
        font-size: 1.1rem;
    }

    .unique-highlight {
        font-size: 1.15rem;
    }

    .unique-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .unique-feature i {
        font-size: 2rem;
    }

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

    .culture-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .mountain-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .culture-section h3 {
        font-size: 1.5rem;
    }

    .culture-description {
        font-size: 1rem;
    }
}    .giving-option-card {
        padding: 2rem;
    }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Info Cards Section */
.contact-cards-section {
    background: var(--beige);
}

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

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.contact-info-card.highlight {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--white));
}

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

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

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 10px 20px;
    background: var(--beige);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

.service-times-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.service-time-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: var(--beige);
    border-radius: 8px;
}

.service-time-item strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.service-time-item span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper .section-header {
    margin-bottom: 2rem;
}

.contact-form-wrapper .section-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
}

/* Info Boxes */
.info-box {
    background: var(--beige);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.info-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 8px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Social Links Large */
.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn i {
    font-size: 1.3rem;
}

/* Emergency Box */
.info-box.emergency {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 2px solid #dc3545;
}

.info-box.emergency h3 {
    color: #dc3545;
}

.info-box.emergency h3 i {
    color: #dc3545;
}

.emergency-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #dc3545;
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.emergency-contact:hover {
    background: #c82333;
    transform: scale(1.05);
}

.emergency-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Visit Planning Section */
.visit-planning-section {
    background: var(--light-gray);
}

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

.visit-step {
    position: relative;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.visit-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.visit-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.visit-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(45 42 53 / 95%) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

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

.contact-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-sidebar {
        order: -1;
    }

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

    .visit-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .visit-cta {
        padding: 2rem;
    }

    .visit-cta h3 {
        font-size: 1.5rem;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 2rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .visit-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
        .intro-quote p {
        font-size: 1rem;
    }
}

/* =============================================
   GIVE PAGE STYLES
   ============================================= */

/* Scripture Section */
.scripture-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
}

.scripture-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

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

.scripture-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.scripture-reference {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Why Give Section */
.why-give-section {
    padding: 80px 0;
    background: var(--white);
}

.why-give-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-give-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.impact-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 10px;
    transition: var(--transition);
}

.impact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.impact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.impact-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.why-give-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Ways to Give Section */
.ways-to-give {
    background: var(--light-gray);
}

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

.giving-option-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.giving-option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.giving-option-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--white));
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.giving-option-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.giving-option-card > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Online Giving Section */
.online-giving-section {
    padding: 80px 0;
    background: var(--beige);
}

.giving-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.giving-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    overflow-x: auto;
}

.giving-tab {
    flex: 1;
    padding: 1.2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.giving-tab i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.giving-tab span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.giving-tab:hover {
    background: var(--beige);
}

.giving-tab.active {
    border-bottom-color: var(--secondary-color);
    background: var(--beige);
}

.giving-tab.active i {
    color: var(--secondary-color);
}

.giving-form-content {
    padding: 3rem;
}

.amount-section h3,
.giving-frequency h3,
.payment-methods h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1rem;
    background: var(--beige);
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    background: var(--light-gray);
    border-color: var(--secondary-color);
}

.amount-btn.selected {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.custom-amount-input {
    display: none;
    margin-bottom: 2rem;
}

.amount-btn.custom-btn.selected ~ .custom-amount-input {
    display: block;
}

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

.custom-amount-input input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.custom-amount-input input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.giving-frequency {
    margin: 3rem 0;
}

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

.frequency-option {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: var(--beige);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.frequency-option:hover {
    background: var(--light-gray);
    border-color: var(--secondary-color);
}

.frequency-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.frequency-option input[type="radio"]:checked ~ span {
    font-weight: 600;
    color: var(--primary-color);
}

.frequency-option span {
    font-size: 1rem;
    color: var(--text-dark);
}

.payment-methods {
    margin: 3rem 0;
}

.payment-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-btn {
    padding: 1.2rem;
    background: var(--beige);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-btn:hover {
    background: var(--light-gray);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.payment-btn i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.payment-btn span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Bank Details Section */
.bank-details-section {
    background: var(--white);
}

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

.bank-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.copy-btn {
    margin-top: 0.5rem;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: #c29d2e;
    transform: translateY(-2px);
}

.bank-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    gap: 1rem;
    align-items: start;
}

.bank-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.bank-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-stat-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

/* FAQ Section */
.faq-section {
    background: var(--white);
}

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

.faq-item {
    background: var(--beige);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

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

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Give CTA */
.give-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(45 42 53 / 95%) 100%),
        url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

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

.give-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.give-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive Styles for Give Page */
@media (max-width: 992px) {
    .why-give-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-give-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .giving-tabs {
        overflow-x: scroll;
    }

    .giving-tab {
        min-width: 100px;
    }
}

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

    .scripture-text {
        font-size: 1.2rem;
    }

    .giving-form-content {
        padding: 2rem 1.5rem;
    }

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

    .frequency-options {
        flex-direction: column;
    }

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

    .bank-cards-grid {
        grid-template-columns: 1fr;
    }

    .give-cta h2 {
        font-size: 2rem;
    }

    .give-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scripture-text {
        font-size: 1.1rem;
    }

    .quick-amounts {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .impact-stat-card {
        padding: 2rem;
    }

    .giving-option-card {
        padding: 2rem;
    }
}    .detail-item i {
        font-size: 1.5rem;
    }
}

/* =============================================
   VOLUNTEER PAGE STYLES
   ============================================= */

/* Volunteer Intro Section */
.volunteer-intro {
    background: var(--beige);
}

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

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

.intro-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.benefit-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.intro-image {
    position: relative;
}

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

.intro-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(26, 58, 92, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.intro-quote i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.intro-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0.5rem 0;
}

.intro-quote span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Volunteer Departments Section */
.volunteer-departments {
    padding: 80px 0;
    background: var(--white);
}

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

.department-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.department-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

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

.department-card > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.department-roles {
    list-style: none;
    margin-bottom: 1.5rem;
}

.department-roles li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.department-roles i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 20px;
}

.department-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
}

.department-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.department-meta i {
    color: var(--secondary-color);
}

/* Volunteer Form Section */
.volunteer-form-section {
    background: var(--light-gray);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.volunteer-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.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(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideDown 0.3s ease;
}

.success-message i {
    font-size: 2rem;
    color: #28a745;
}

.success-message p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

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

/* Volunteer CTA */
.volunteer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(45 42 53 / 95%) 100%),
        url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.volunteer-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.volunteer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.volunteer-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive Styles for Volunteer Page */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .departments-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .volunteer-form-container {
        padding: 2rem 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .volunteer-cta h2 {
        font-size: 2rem;
    }

    .volunteer-cta p {
        font-size: 1.1rem;
    }

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

    .department-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .form-intro h2 {
        font-size: 2rem;
    }

    .volunteer-form-container {
        padding: 1.5rem;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .intro-quote {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 1rem;
    }

    .intro-quote p {
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

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

    .leader-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
}
/* =============================================
   EVENTS PAGE STYLES
   ============================================= */

/* Event Filters */
.event-filters {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

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

.filter-btn {
    padding: 12px 24px;
    background: var(--beige);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover {
    background: var(--light-gray);
    border-color: var(--secondary-color);
}

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

/* Events Listing */
.events-listing {
    background: var(--light-gray);
}

.event-card-detailed {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

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

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

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

.event-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-status.upcoming {
    background: var(--secondary-color);
    color: var(--white);
}

.event-status.featured {
    background: var(--primary-color);
    color: var(--white);
}

.event-status.community {
    background: #28a745;
    color: var(--white);
}

.event-status.recurring {
    background: #6c757d;
    color: var(--white);
}

.event-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.event-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-category {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-category.worship {
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary-color);
}

.event-category.conference {
    background: rgba(26, 58, 92, 0.15);
    color: var(--primary-color);
}

.event-category.community {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.event-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.detail-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 3px;
}

.detail-item > div {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Events CTA */
.events-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(45 42 53 / 95%) 100%),
        url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

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

.cta-icon-large {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.events-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.events-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive Styles for Events Page */
@media (max-width: 992px) {
    .event-card-detailed {
        grid-template-columns: 1fr;
    }

    .event-card-image {
        min-height: 300px;
    }

    .event-card-content h2 {
        font-size: 1.8rem;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .event-card-content {
        padding: 2rem 1.5rem;
    }

    .event-card-content h2 {
        font-size: 1.5rem;
    }

    .events-cta h2 {
        font-size: 2rem;
    }

    .events-cta p {
        font-size: 1.1rem;
    }

    .cta-icon-large {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .event-card-image {
        min-height: 250px;
    }

    .event-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-card-content h2 {
        font-size: 1.3rem;
    }

    .event-description {
        font-size: 1rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 8px;
    }

    .detail-item i {
        font-size: 1.5rem;
    }
}/* =============================================
   RCCG Dominion Centre - Global Stylesheet
   ============================================= */

/* CSS Variables */
:root {
    --primary-color: #1a3a5c;      /* Navy Blue */
    --secondary-color: #d4af37;     /* Gold */
    --accent-color: #8b7355;        /* Bronze */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --beige: #f9f6f2;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

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

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #c21a1a;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

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

.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-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-text {
    background: none;
    color: var(--secondary-color);
    padding: 0;
    font-weight: 600;
}

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

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

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

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--beige);
    transform: translateY(-2px);
}

/* Header / Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-link.active {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.85) 0%, rgba(13 44 73 / 35%) 100%),
        url('images/dcimage2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@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(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Preview Section */
.about-preview {
    background: var(--beige);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-text .btn {
    margin-top: 1rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Service Times Section */
.service-times {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

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

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

.service-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-location {
    color: var(--text-light);
    line-height: 1.8;
}

.service-location i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Events Preview Section */
.events-preview {
    background: var(--light-gray);
}

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

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

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

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.event-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-meta i {
    color: var(--secondary-color);
    margin-right: 8px;
}

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

/* Current Series Section */
.current-series {
    padding: 80px 0;
    background: #23164d;
    color: var(--white);
}

.current-series .section-label {
    color: var(--secondary-color);
}

.current-series .section-title {
    color: var(--white);
}

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

.series-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.series-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.series-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.series-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.series-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}



/*YOUTUBE VIDEO*/
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optional, for rounded corners */
}

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





/* Thanksgiving Section */
.thanksgiving-card {
    background: linear-gradient(135deg, #070b32, #2c4f8d 100%);
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.thanksgiving-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.thanksgiving-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanksgiving-card p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.95;
}


/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: #23164d;
    color: var(--white);
}

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

.cta-card {
    text-align: center;
    padding: 2rem;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    border: 3px solid var(--secondary-color);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

/* Footer */
.site-footer {
    background: #0f1e2e;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.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: var(--transition);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-links a {
    transition: var(--transition);
}

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

.footer-links i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 15px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

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

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Grids */
    .about-content,
    .series-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image,
    .series-image {
        order: -1;
    }

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

    /* Thanksgiving */
    .thanksgiving-card {
        padding: 2rem 1.5rem;
    }

    .thanksgiving-card h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-card,
    .event-content {
        padding: 1.5rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(44, 95, 141, 0.9) 100%),
        url('images/dcimage2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: ;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 92, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Our Story Section */
.our-story {
    background: var(--beige);
}

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

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

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

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--secondary-color);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    position: relative;
}

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

.image-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(26, 58, 92, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--white);
}

.image-overlay-text i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-overlay-text p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

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

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--beige);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.mv-card > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Leadership Section */
.leadership {
    background: var(--light-gray);
}

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

.leader-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.leader-image {
    position: relative;
}

.leader-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.leader-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.leader-info h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.leader-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.leader-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.highlight-item span {
    color: var(--primary-color);
    font-weight: 600;
}

.leader-quote {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-top: 2rem;
    position: relative;
}

.leader-quote i:first-child {
    color: var(--secondary-color);
    margin-right: 10px;
}

.leader-quote i:last-child {
    color: var(--secondary-color);
    margin-left: 10px;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

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

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Beliefs Section */
.beliefs-section {
    background: var(--light-gray);
}

.beliefs-content {
    max-width: 900px;
    margin: 0 auto;
}

.belief-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.belief-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.belief-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
}

.belief-text h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.belief-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    background-image: 
        linear-gradient(135deg, rgba(26, 58, 92, 0.95) 0%, rgba(45 42 53 / 95%) 100%),
        url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

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

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .story-content,
    .series-content,
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .leader-profile {
        grid-template-columns: 1fr;
    }

    .leader-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .leader-highlights {
        justify-content: center;
    }

    .belief-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .belief-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

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

    .leader-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
}
/**/
