
    .facilities {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .facilities-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .facilities-subtitle {
        color: #FF6B35;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .facilities-title {
        color: #004E89;
        font-size: 2.2rem;
        font-weight: 700;
        margin: 0;
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .facility-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        cursor: default;
    }

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .facility-image {
        height: 220px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        cursor: pointer;
    }

    .facility-card:hover .facility-image {
        transform: scale(1.05);
    }

    .facility-content {
        padding: 1.5rem 1.8rem 1.8rem;
        background: white;
        position: relative;
    }

    .facility-name {
        color: #004E89;
        font-size: 1.25rem;
        margin: 0 0 0.5rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .facility-desc {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .facility-link {
        display: inline-flex;
        align-items: center;
        color: #FF6B35;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 0.9rem;
        border-bottom: 2px solid transparent;
        padding-bottom: 2px;
    }

    .facility-link:hover {
        color: #004E89;
        border-bottom-color: #FF6B35;
    }

    .facility-link i {
        margin-left: 0.5rem;
        transition: transform 0.2s;
    }

    .facility-link:hover i {
        transform: translateX(4px);
    }

    /* modern badge / number */
    .facility-number {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 107, 53, 0.9);
        color: white;
        font-weight: 700;
        font-size: 0.8rem;
        padding: 4px 12px;
        border-radius: 30px;
        letter-spacing: 0.5px;
        backdrop-filter: blur(4px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    }

    @media (max-width: 768px) {
        .facilities-title {
            font-size: 1.8rem;
        }

        .facilities-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .facility-image {
            height: 180px;
        }

        .facility-content {
            padding: 1.2rem;
        }
    }

    /* Image Preview Modal - modern & smooth */
    .image-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        padding-top: 40px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(6px);
        animation: modalFade 0.3s ease;
    }

    @keyframes modalFade {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }

    .image-modal-content {
        margin: auto;
        display: block;
        max-width: 85%;
        max-height: 85%;
        border-radius: 12px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        object-fit: contain;
        animation: zoomIn 0.35s ease;
    }

    @keyframes zoomIn {
        from { transform: scale(0.8); opacity: 0.5; }
        to { transform: scale(1); opacity: 1; }
    }

    .image-modal-close {
        position: absolute;
        top: 25px;
        right: 40px;
        color: #fff;
        font-size: 44px;
        font-weight: 300;
        cursor: pointer;
        transition: transform 0.2s, opacity 0.2s;
        opacity: 0.8;
        line-height: 1;
    }

    .image-modal-close:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    /* caption */
    .image-caption {
        text-align: center;
        color: rgba(255,255,255,0.8);
        margin-top: 12px;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0.3px;
    }

    @media (max-width: 600px) {
        .image-modal-content {
            max-width: 95%;
            max-height: 70%;
        }
        .image-modal-close {
            top: 15px;
            right: 20px;
            font-size: 32px;
        }
    }

    /* ============================================
       MAIN STYLES - Improved & Responsive
       ============================================ */
    
    /* ============================================
       VIDEO CONTAINER
       ============================================ */
    .video-container-wrapper {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        padding: 8px;
        transition: transform 0.3s ease;
    }
    
    .video-container-wrapper:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        background: #1a1a2e;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* ============================================
       LYRICS BOX
       ============================================ */
    .lyrics-box {
        background: white;
        color: black;
        padding: 2rem 2.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        margin-top: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .lyrics-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .lyrics-title {
        font-size: 1.4rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #2500a7;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 12px;
    }
    
    .lyrics-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #fbbf24;
        border-radius: 3px;
    }
    
    .lyrics-content {
        text-align: center;
        line-height: 1.8;
    }
    
    .lyrics-content p {
        margin: 0.25rem 0;
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .lyrics-content p:not(:last-child)::after {
        content: '';
        display: block;
        width: 0;
        margin: 0 auto;
    }
    
    .lyric-line {
        display: inline-block;
        padding: 0.15rem 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .lyric-line:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: scale(1.02);
    }
    
    /* ============================================
       BELIEFS & STEPS
       ============================================ */
    .beliefs-steps-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .belief-box {
        background: linear-gradient(135deg, #FF5E00 0%, #fb923c 100%);
        color: #ffffff;
        padding: 2rem 2.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(255, 94, 0, 0.25);
        transition: all 0.3s ease;
    }
    
    .belief-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(255, 94, 0, 0.35);
    }
    
    .belief-box.steps-box {
        background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
        box-shadow: 0 8px 30px rgba(30, 58, 95, 0.25);
    }
    
    .belief-box.steps-box:hover {
        box-shadow: 0 12px 40px rgba(30, 58, 95, 0.35);
    }
    
    .belief-box h3 {
        color: #ffffff;
        margin-bottom: 1.25rem;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
    }
    
    .belief-box h3 i {
        font-size: 1.2rem;
        opacity: 0.9;
    }
    
    /* Belief List */
    .belief-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    
    .belief-list li {
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.3rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        transition: background 0.3s ease;
        color: #ffffff;
    }
    
    .belief-list li:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .belief-list li i {
        color: #fbbf24;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Steps List */
    .steps-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        counter-reset: step-counter;
    }
    
    .steps-list li {
        padding: 0.6rem 0.8rem;
        margin-bottom: 0.3rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        transition: background 0.3s ease;
        color: #ffffff;
        counter-increment: step-counter;
    }
    
    .steps-list li:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        margin-right: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        color: #fbbf24;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .steps-list li:hover .step-number {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
    }
    
    /* Notes */
    .note {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(4px);
        color: #ffffff;
        font-size: 0.85rem;
        text-align: center;
        padding: 1rem 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    
    .note:hover {
        background: rgba(255, 255, 255, 0.18);
    }
    
    .note.uppercase {
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    .note i {
        opacity: 0.8;
    }
    
    /* ============================================
       RESPONSIVE BREAKPOINTS
       ============================================ */
    
    /* Tablet & Below */
    @media (max-width: 991px) {
        .breadcumb-wrapper {
            padding: 60px 0 !important;
        }
        
        .breadcumb-title {
            font-size: 2rem;
        }
        
        .belief-box,
        .lyrics-box {
            padding: 1.5rem 1.5rem;
        }
        
        .belief-box h3 {
            font-size: 1.1rem;
        }
        
        .belief-list li,
        .steps-list li {
            font-size: 0.9rem;
            padding: 0.5rem 0.6rem;
        }
    }
    
    /* Mobile */
    @media (max-width: 767px) {
        .breadcumb-wrapper {
            padding: 40px 0 !important;
        }
        
        .breadcumb-title {
            font-size: 1.6rem;
        }
        
        .container {
            padding: 0 12px;
        }
        
        .video-container-wrapper {
            padding: 4px;
            border-radius: 8px;
        }
        
        .lyrics-box {
            padding: 1.25rem 1rem;
            margin-top: 1rem;
            border-radius: 8px;
        }
        
        .lyrics-title {
            font-size: 1.1rem;
            padding-bottom: 10px;
        }
        
        .lyrics-title::after {
            width: 40px;
        }
        
        .lyrics-content p {
            font-size: 0.9rem;
        }
        
        .belief-box {
            padding: 1.25rem 1rem;
            border-radius: 8px;
        }
        
        .belief-box h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .belief-box h3 i {
            font-size: 1rem;
        }
        
        .belief-list li,
        .steps-list li {
            font-size: 0.85rem;
            padding: 0.4rem 0.5rem;
        }
        
        .step-number {
            width: 24px;
            height: 24px;
            font-size: 0.7rem;
            margin-right: 8px;
        }
        
        .note {
            font-size: 0.75rem;
            padding: 0.75rem 1rem;
        }
        
        .row.g-4 {
            --bs-gutter-y: 1rem;
            --bs-gutter-x: 0.75rem;
        }
        
        .beliefs-steps-wrapper {
            gap: 1rem;
        }
        
        .belief-box:hover,
        .lyrics-box:hover,
        .video-container-wrapper:hover {
            transform: none !important;
        }
    }
    
    /* Small Mobile */
    @media (max-width: 480px) {
        .breadcumb-title {
            font-size: 1.4rem;
        }
        
        .breadcumb-wrapper {
            padding: 30px 0 !important;
        }
        
        .lyrics-content p {
            font-size: 0.8rem;
            line-height: 1.6;
        }
        
        .belief-list li,
        .steps-list li {
            font-size: 0.8rem;
        }
        
        .note {
            font-size: 0.7rem;
            padding: 0.6rem 0.8rem;
        }
        
        .belief-box h3 {
            font-size: 0.9rem;
        }
    }
    
    /* ============================================
       ACCESSIBILITY & PRINT
       ============================================ */
    
    @media print {
        .video-container {
            display: none;
        }
        
        .belief-box,
        .lyrics-box {
            box-shadow: none !important;
            border: 1px solid #ddd;
        }
    }
    
    /* Smooth scrolling for all browsers */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
