/* Extracted from home.blade.php inline styles */

/* Mobile Responsiveness for Events Section */
@media (max-width: 768px) {
    .events-section .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }

/* Extra small screens adjustments (<=480px) */
@media (max-width: 480px) {
    .featured-sermon-section { padding: 1.5rem 0 !important; }
    .featured-sermon-section .section-title { font-size: 1.5rem !important; }
    .video-wrapper { border-radius: 6px !important; margin-bottom: 1rem !important; }
    .sermon-details { padding: 1rem !important; }
    .sermon-details h3 { font-size: 1.2rem !important; line-height: 1.3 !important; }
    .sermon-details p { font-size: 0.9rem !important; line-height: 1.5 !important; margin-bottom: 1rem !important; }
    .sermon-details div[style*="inline-block"] { padding: 0.3rem 0.8rem !important; font-size: 0.75rem !important; margin-bottom: 0.8rem !important; }
    .sermon-details div[style*="display: flex; gap"] { font-size: 0.85rem !important; gap: 1rem !important; margin-bottom: 1rem !important; }
    .sermon-details .btn { padding: 0.9rem 1.2rem !important; font-size: 0.95rem !important; }
}

    .events-section .card-grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 1rem;
    }

    .events-section .event-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .events-section .card-image-wrapper { width: 100%; height: auto; }
    .events-section .card-image { width: 100%; height: auto; }
    .events-section .btn-outline { display: inline-block; text-align: center; width: auto; margin: 0 auto; }
}

/* Hero Background Slideshow */
.hero { animation: heroSlide 18s infinite; }
@keyframes heroSlide {
    0%, 100% { background-image: url('../images/1.jpg'); }
    33% { background-image: url('../images/2.jpg'); }
    66% { background-image: url('../images/3.jpg'); }
}

/* Button Hover Effects */
a[href*="about"]:hover { background: #FFF200 !important; transform: scale(1.05); }
a[href*="contact"]:hover { background: #fff !important; color: #000 !important; border-color: #fff !important; }

/* Duplicate fadeInUp already exists above in this file; keeping definition */

/* Hero responsive adjustments */
@media (max-width: 1200px) { .hero-content h1 { font-size: 4rem !important; } }
@media (max-width: 992px) {
    .hero { height: 80vh !important; }
    .hero-content { text-align: center !important; }
    .hero-content h1 { font-size: 4.5rem !important; }
    .hero-content div { justify-content: center !important; }
}
@media (max-width: 768px) {
    .hero { height: 100vh !important; }
    .hero-content { padding: 1.5rem !important; }
    .hero-content h1 { font-size: 3.5rem !important; line-height: 1; margin-bottom: 2rem !important; }
    .hero-content a { width: 100%; text-align: center; padding: 1.2rem 2rem !important; }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.7rem !important; letter-spacing: -1px; }
    .hero-content a { font-size: 1rem !important; padding: 1rem 1.5rem !important; }
}

/* Responsive Design for Featured Sermon */
@media (max-width: 768px) {
    .featured-sermon-section { padding: 2rem 0 !important; }
    .featured-sermon-section .container { padding: 0 1rem !important; }
    .featured-sermon-section .section-title { font-size: 1.8rem !important; }
    .featured-sermon-section .section-description { font-size: 0.95rem !important; }
    .video-wrapper { margin-bottom: 1.5rem !important; border-radius: 8px !important; }
    .sermon-details { padding: 1.5rem !important; }
    .sermon-details h3 { font-size: 1.4rem !important; line-height: 1.3 !important; margin-bottom: 1rem !important; }
    .sermon-details > div > div:first-child { min-width: 100% !important; }
    .sermon-details .sermon-meta { flex-direction: column !important; align-items: flex-start !important; gap: 0.5rem !important; }
    .sermon-details p { font-size: 0.95rem !important; line-height: 1.6 !important; }
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Particle Animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(244, 208, 63, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
    }
}

/* Hero Buttons */
.btn-hero-primary {
    background: #f4d03f;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #f4d03f;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #fff;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Verse Section - Simple & Clean */
.verse-section {
    padding: 4rem 2rem;
    background: black;
    position: relative;
}

/* Container */
.verse-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 3px solid #1a1a1a;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.verse-container::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: #ffd700;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.verse-container:hover::before {
    opacity: 1;
}

/* Section Label */
.verse-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    padding: 0.7rem 2rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    position: relative;
}

.verse-label::before,
.verse-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #ffd700;
    transform: translateY(-50%);
}

.verse-label::before {
    right: 100%;
    margin-right: 1rem;
}

.verse-label::after {
    left: 100%;
    margin-left: 1rem;
}

.verse-label i {
    font-size: 0.7rem;
    color: #ffd700;
}

/* Bible Icon */
.verse-icon {
    width: 90px;
    height: 90px;
    background: #1a1a1a;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffd700;
    position: relative;
    transition: all 0.5s ease;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.verse-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: #ffd700;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.verse-container:hover .verse-icon {
    transform: rotate(180deg);
}

.verse-container:hover .verse-icon::before {
    opacity: 1;
}

/* Verse Content */
.verse-content {
    margin: 2.5rem 0;
    padding: 0 2rem;
}

.verse-text {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.verse-text::before,
.verse-text::after {
    font-size: 4rem;
    color: #ffd700;
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: middle;
}

.verse-text::before {
    margin-right: 0.2rem;
}

.verse-text::after {
    margin-left: 0.2rem;
}

.verse-reference {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

/* Call to Action Button */
.verse-action {
    margin-top: 2.5rem;
}

.verse-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 3px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.verse-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffd700;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.verse-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.verse-btn:hover {
    color: black;
    background-color: white;
}

.verse-btn i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.verse-btn:hover i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .verse-section {
        padding: 5rem 1.5rem;
    }

    .verse-container {
        padding: 3.5rem 2.5rem;
    }

    .verse-text {
        font-size: 1.6rem;
    }

    .verse-text::before,
    .verse-text::after {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .verse-section {
        padding: 4rem 1.5rem;
    }

    .verse-container {
        padding: 3rem 2rem;
        border-width: 2px;
    }

    .verse-label {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 2px;
    }

    .verse-label::before,
    .verse-label::after {
        width: 30px;
    }

    .verse-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .verse-content {
        padding: 0 1rem;
        margin: 2rem 0;
    }

    .verse-text {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .verse-text::before,
    .verse-text::after {
        font-size: 3rem;
    }

    .verse-reference {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }

    .verse-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .verse-section {
        padding: 3rem 1rem;
    }

    .verse-container {
        padding: 2.5rem 1.5rem;
    }

    .verse-label {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
        gap: 0.6rem;
    }

    .verse-label::before,
    .verse-label::after {
        display: none;
    }

    .verse-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .verse-content {
        padding: 0 0.5rem;
        margin: 1.5rem 0;
    }

    .verse-text {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .verse-text::before,
    .verse-text::after {
        font-size: 2.5rem;
    }

    .verse-reference {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        border-width: 2px;
    }

    .verse-action {
        margin-top: 2rem;
    }

    .verse-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
}

@media (max-width: 400px) {
    .verse-container {
        padding: 2rem 1rem;
    }

    .verse-text {
        font-size: 1.1rem;
    }

    .verse-text::before,
    .verse-text::after {
        font-size: 2rem;
    }

    .verse-reference {
        font-size: 0.85rem;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 2rem;
}

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

.section-label {
    display: inline-block;
    background: #f4d03f;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1rem;
}

.welcome-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: black;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 0.5rem;
}

.welcome-image {
    position: relative;
    height: 500px;
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Quick Access Enhanced */
.quick-access-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.quick-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.quick-access {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.quick-access-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated gradient border on hover */
.quick-access-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        #ffffff,
        #cccccc,
        #ffffff,
        #cccccc
    );
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Inner glow effect */
.quick-access-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.quick-access-item:hover::before {
    opacity: 1;
}

.quick-access-item:hover::after {
    width: 300px;
    height: 300px;
}

.quick-access-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Icon Container */
.quick-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000000;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.5),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.quick-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        rgba(255, 255, 255, 0.3) 90deg 180deg,
        transparent 180deg 270deg,
        rgba(255, 255, 255, 0.3) 270deg 360deg
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.quick-access-item:hover .quick-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #ffffff;
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.quick-access-item:hover .quick-icon::before {
    opacity: 1;
    animation: iconRotate 2s linear infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Text Content */
.quick-access-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-access-item:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.quick-access-item p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-access-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Additional Info Badge */
.quick-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-access-item:hover .quick-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Arrow Indicator */
.quick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.quick-access-item:hover .quick-arrow {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .quick-access {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .quick-icon {
        width: 85px;
        height: 85px;
        font-size: 2rem;
    }
    
    .quick-access-item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .quick-access-section {
        padding: 4rem 1.5rem;
    }
    
    .quick-access {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-access-item {
        padding: 2.5rem 2rem;
    }
    
    .quick-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .quick-access-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .quick-access-section {
        padding: 3rem 1rem;
    }
    
    .quick-access-item {
        padding: 2rem 1.5rem;
    }
    
    .quick-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-access-item h3 {
        font-size: 1.2rem;
    }
    
    .quick-access-item p {
        font-size: 0.95rem;
    }
}

/* Card Enhancements */
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4d03f;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.date-day {
    font-size: 1.5rem;
    line-height: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    opacity: 0;
}

.card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    background: #f4d03f;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.3;
}

.sermon-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #000000;
}

.sermon-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-text {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #000000;
}

.empty-state i {
    font-size: 5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.empty-state span {
    font-size: 1rem;
    color: #000000;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f4d03f;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

.btn-light {
    background: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #fff;
}

.btn-light:hover {
    background: #f4d03f;
    border-color: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #f4d03f;
    color: #000;
    border: 2px solid #f4d03f;
}

.btn-primary:hover {
    background: #e0bf2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.3);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome-image {
        height: 400px;
    }
    
    .quick-access {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quick-access {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-light,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .welcome-section,
    .quick-access-section,
    .events-section,
    .sermons-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .verse-section {
        padding: 3rem 1rem;
    }
    
    .verse-text {
        font-size: 1.2rem;
    }
    
    .welcome-image {
        height: 300px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Additional Utility Classes */
.section {
    padding: 5rem 2rem;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #f4d03f;
    outline-offset: 2px;
}

/* Image loading placeholder */
.image-placeholder {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
/* ========== VALUES SECTION - FULL WIDTH GRID ========== */
.values-section-fullwidth {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
}

/* Header Section */
.values-header {
    background: #000000;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.values-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Full Width Image Grid - 4 Columns */
.values-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Individual Image Item */
.value-image-item {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    background: #000000;
}

.value-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.value-image-item:hover .value-bg-image {
    transform: scale(1.05);
}

/* Overlay Content */
.value-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: background 0.3s ease;
}

.value-image-item:hover .value-overlay-content {
    background: rgba(0, 0, 0, 0.5);
}

/* Vertical Label Text */
.value-label-vertical {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.value-label-vertical.right {
    left: auto;
    right: 2rem;
    writing-mode: vertical-rl;
    transform: none;
}

/* Main Text Content */
.value-main-text {
    position: relative;
    z-index: 2;
}

.value-main-text.centered {
    text-align: center;
}

.value-main-text h3 {
    font-size: clamp(2.5rem, 4vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Circle Badge */
.value-circle-badge {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-image-item:hover .value-circle-badge {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.value-circle-badge span {
    display: block;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

.value-circle-badge span:first-child {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.value-circle-badge span.small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .value-image-item {
        height: 45vh;
        min-height: 350px;
    }
    
    .value-main-text h3 {
        font-size: clamp(2rem, 3.5vw, 4rem);
    }
}

@media (max-width: 1200px) {
    .values-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-image-item {
        height: 40vh;
        min-height: 320px;
    }
    
    .value-main-text h3 {
        font-size: clamp(1.8rem, 3vw, 3.5rem);
    }
    
    .value-circle-badge {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    .values-header {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .values-main-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .values-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-image-item {
        height: 45vh;
        min-height: 300px;
    }
    
    .value-overlay-content {
        padding: 1.5rem;
    }
    
    .value-label-vertical {
        font-size: 0.8rem;
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .value-label-vertical.right {
        right: 1.5rem;
    }
    
    .value-main-text h3 {
        font-size: clamp(1.6rem, 2.8vw, 3rem);
        letter-spacing: 2px;
    }
    
    .value-circle-badge {
        width: 130px;
        height: 130px;
    }
    
    .value-circle-badge span:first-child {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .values-header {
        padding: 2.5rem 1rem 1rem;
    }
    
    .values-main-title {
        font-size: clamp(2rem, 4vw, 3rem);
        letter-spacing: 2px;
    }
    
    .values-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-image-item {
        height: 40vh;
        min-height: 280px;
    }
    
    .value-overlay-content {
        padding: 1rem;
    }
    
    .value-label-vertical {
        font-size: 0.7rem;
        top: 1rem;
        left: 1rem;
        letter-spacing: 1px;
    }
    
    .value-label-vertical.right {
        right: 1rem;
    }
    
    .value-main-text h3 {
        font-size: clamp(1.4rem, 2.5vw, 2.5rem);
        letter-spacing: 1px;
    }
    
    .value-circle-badge {
        width: 110px;
        height: 110px;
        padding: 1rem;
        border-width: 2px;
    }
    
    .value-circle-badge span:first-child {
        font-size: 1rem;
    }
    
    .value-circle-badge span.small {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .values-header {
        padding: 2rem 1rem 1rem;
    }
    
    .values-main-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .values-image-grid {
        grid-template-columns: 1fr;
    }
    
    .value-image-item {
        height: 50vh;
        min-height: 300px;
    }
    
    .value-overlay-content {
        padding: 1rem;
    }
    
    .value-label-vertical {
        font-size: 0.65rem;
        top: 0.8rem;
        left: 0.8rem;
    }
    
    .value-label-vertical.right {
        right: 0.8rem;
    }
    
    .value-main-text h3 {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .value-circle-badge {
        width: 100px;
        height: 100px;
    }
    
    .value-circle-badge span:first-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .value-image-item {
        height: 45vh;
        min-height: 250px;
    }
    
    .value-main-text h3 {
        font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    }
    
    .value-circle-badge {
        width: 90px;
        height: 90px;
    }
}

/* ========== WHY VISIT US SECTION ========== */
.why-visit-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.why-visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.why-visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-visit-content {
    color: #ffffff;
}

.why-visit-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.why-visit-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000000;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.visit-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-light-custom {
    background: #ffffff;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ffffff;
}

.btn-light-custom:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ffffff;
}

.btn-outline-custom:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.why-visit-image {
    position: relative;
}

.image-stack {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stack-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-badge i {
    font-size: 2rem;
    color: #000000;
}

.image-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.3rem;
}

.image-badge span {
    display: block;
    font-size: 0.9rem;
    color: #555555;
}

/* ========== TESTIMONIALS SECTION ========== */
/* .testimonials-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666666;
} */


        /* ========== GET INVOLVED SECTION ========== */
        .get-involved-section {
            padding: 5rem 2rem;
            background: white;
        }

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

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

        .section-label {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            color: black;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .involvement-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .involvement-card {
            background: #1a1a1a;
            border-radius: 0;
            overflow: hidden;
            position: relative;
            height: 500px;
            transition: all 0.4s ease;
        }

        .involvement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        /* Background Image */
        .involvement-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .involvement-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }

        /* Vertical Side Text */
        .involvement-side-text {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: center;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            z-index: 3;
            white-space: nowrap;
        }

        /* Content Overlay */
        .involvement-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem 2rem 2rem 2rem;
            z-index: 2;
            color: white;
        }

        .involvement-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: black;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .involvement-card:hover .involvement-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .bold-title {
            font-size: 1.75rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .involvement-content p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .involvement-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-family: inherit;
        }

        .involvement-link i {
            transition: transform 0.3s ease;
        }

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

        /* Number Badge */
        .involvement-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            z-index: 3;
        }

        /* Add your actual images here */
        .visit-service {
            background-image: url('../images/about.jpg');
        }

        .join-group {
            background-image: url('../images/children.jpg');
        }

        .serve-others {
            background-image: url('../images/dance.jpg');
        }

        .grow-spiritually {
            background-image: url('../images/devotion.jpg');
        }

    
        /* Responsive Design */
        @media (max-width: 1200px) {
            .involvement-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .involvement-card {
                height: 450px;
            }

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

            .bold-title {
                font-size: 1.5rem;
            }

            .involvement-content {
                padding: 2rem 1.5rem 1.5rem 1.5rem;
            }
        }
/* ========== MINISTRY HIGHLIGHTS SECTION ========== */
.ministry-highlights-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.ministry-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.ministry-highlight-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ministry-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

.ministry-highlight-card:hover .ministry-image {
    transform: scale(1.1);
}

.ministry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ministry-highlight-card:hover .ministry-overlay {
    opacity: 1;
}

.ministry-content {
    padding: 2rem;
}

.ministry-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
}

.ministry-content p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ministry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ministry-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333333;
    padding: 0.6rem 0;
    font-weight: 500;
}

.ministry-features li i {
    color: #000000;
    font-size: 1rem;
}

.btn-primary-large {
    background: #000000;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid #000000;
}

.btn-primary-large:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .why-visit-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid,
    .involvement-grid,
    .ministry-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stack-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .testimonials-grid,
    .involvement-grid,
    .ministry-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .why-visit-features {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .visit-cta {
        flex-direction: column;
    }
    
    .btn-light-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .stack-image {
        height: 300px;
    }
    
    .image-badge {
        left: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .values-section,
    .why-visit-section,
    .testimonials-section,
    .get-involved-section,
    .ministry-highlights-section {
        padding: 3rem 1rem;
    }
    
    .value-card,
    .testimonial-card,
    .involvement-card {
        padding: 2rem 1.5rem;
    }
    
    .ministry-image-wrapper {
        height: 200px;
    }
    
    .involvement-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
}

/* ========== INVOLVEMENT MODALS ========== */
.involvement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.involvement-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.involvement-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f4d03f;
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #000;
    color: #f4d03f;
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #f4d03f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    margin: 0 auto 1.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.modal-body {
    padding: 2.5rem;
}

.modal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-details {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #f4d03f;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-section h3 i {
    color: #f4d03f;
    font-size: 1.2rem;
}

.detail-section ul,
.detail-section ol {
    margin: 0;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.detail-section li {
    margin-bottom: 0.75rem;
}

.detail-section li:last-child {
    margin-bottom: 0;
}

.detail-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.btn-modal-primary,
.btn-modal-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-modal-primary {
    background: #f4d03f;
    color: #000;
    border-color: #f4d03f;
}

.btn-modal-primary:hover {
    background: #000;
    color: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.btn-modal-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-modal-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .involvement-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .detail-section {
        padding: 1.25rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modal-header {
        padding: 2rem 1rem 1rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .modal-intro {
        font-size: 1rem;
    }
    
    .detail-section h3 {
        font-size: 1.1rem;
    }
}

