   /* INDEX */
        /* ----- SOPHISTICATED COLOR SYSTEM ----- */
        :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
            padding-top: 0 !important;
        }

        h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        /* ----- LOADING PAGE ----- */
        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-logo {
            width: 144px !important;
            height: 130px !important;
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
            text-align: center;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

        /* ----- NAVIGATION (CONSISTENT) ----- */
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 77px !important;
            width: 90px !important;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .navbar-toggler {
            border: 1px solid var(--accent-burgundy);
            padding: 0.5rem 0.75rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(158,42,47,0.25);
            outline: none;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

        /* ----- HERO SECTION (ICONIC) ----- */
        .hero-section {
            height: 100vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65);
            transition: transform 8s ease;
        }

        .carousel-item.active .hero-img {
            transform: scale(1.05);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30,58,95,0.7) 0%, rgba(15,44,68,0.85) 100%);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 900px;
            text-align: center;
            z-index: 2;
            padding: 2rem;
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .btn-outline-light-custom {
            border: 2px solid white;
            background: transparent;
            color: white;
            border-radius: 40px;
            padding: 0.8rem 2rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 0.85rem;
        }

        .btn-outline-light-custom:hover {
            background: white;
            color: var(--primary-deep);
            transform: translateY(-3px);
        }

        .btn-primary-hero {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 40px;
            padding: 0.8rem 2rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            color: white;
            font-size: 0.85rem;
        }

        .btn-primary-hero:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
            color: var(--primary-rich);
        }

        /* ----- WELCOME SECTION ----- */
        .welcome-section {
            padding: 5rem 0;
            background: var(--pearl);
        }

        .section-subtitle {
            color: var(--accent-gold);
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary-rich);
        }

        .welcome-text {
            color: var(--slate);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .signature {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent-burgundy);
            font-size: 1.2rem;
            margin-top: 1.5rem;
        }

        /* ----- FEATURES SECTION ----- */
        .features-section {
            background: var(--off-white);
            padding: 5rem 0;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid var(--border-mist);
            height: 100%;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(158,42,47,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            transition: all 0.3s;
        }

        .feature-card:hover .feature-icon {
            background: var(--accent-burgundy);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--accent-burgundy);
            transition: all 0.3s;
        }

        .feature-card:hover .feature-icon i {
            color: white;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--slate);
            font-size: 0.9rem;
            margin: 0;
        }

        /* ----- GALLERY SECTION ----- */
        .gallery-section {
            padding: 5rem 0;
            background: var(--pearl);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 280px;
            cursor: pointer;
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30,58,95,0.9), transparent);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h5 {
            color: white;
            font-size: 1.1rem;
            margin: 0;
            font-family: 'Inter', sans-serif;
            transform: translateY(20px);
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-overlay h5 {
            transform: translateY(0);
        }

        /* ----- VIDEO THUMBNAILS ----- */
        .video-thumbnail-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .video-thumbnail-wrapper:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .video-thumbnail-wrapper img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .video-thumbnail-wrapper:hover img {
            transform: scale(1.05);
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--accent-burgundy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s;
        }

        .video-thumbnail-wrapper:hover .play-button-overlay {
            background: var(--accent-gold);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* ----- TESTIMONIALS SECTION ----- */
        .testimonials-section {
            background: var(--off-white);
            padding: 5rem 0;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
            height: 100%;
        }

        .testimonial-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-raised);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--slate);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-rich);
            margin-bottom: 0.2rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--accent-gold);
        }

        /* ----- FOOTER (CONSISTENT) ----- */
        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #E2E8F0;
            text-decoration: none;
            transition: all 0.25s;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        .input-group .btn:hover {
            background: var(--accent-burgundy);
            color: white;
        }

        .footer hr {
            background: rgba(197,160,40,0.2);
            margin: 2rem 0;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            text-align: center;
        }

        /* ----- BACK TO TOP ----- */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 991px) {
            .hero-title { font-size: 3rem; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: var(--shadow-elegant);
            }
            .nav-link { text-align: center; }
            .btn-primary-custom { width: 100%; text-align: center; }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .hero-description { font-size: 0.95rem; }
            .section-title { font-size: 2rem; }
            .gallery-item { height: 220px; }
            .video-thumbnail-wrapper img { height: 180px; }
            .footer { text-align: center; }
            .social-icons { justify-content: center; }
            .footer-links a:hover { transform: none; }
            .input-group { max-width: 300px; margin: 0 auto; }
        }
        .hero-content {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    z-index: 2;
    padding: 2rem;
}
 .facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
element.style {
    width: 100px;
    height: auto;
}
    
/* ABOUT */
    /* ----- ADVANCED CSS RESET & GLOBAL ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            padding-top: 96px;
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .section-header h1, .members-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        /* ----- LOADING PAGE (REFINED) ----- */
        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
            backdrop-filter: blur(0);
        }

        .loading-logo {
            width: min(150px, 35%);
            margin-bottom: 2rem;
            filter: brightness(1.05) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

        /* ----- NAVIGATION (SOPHISTICATED) ----- */
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 68px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

        /* ----- SECTION HEADER ELEGANT ----- */
        .section-header {
            text-align: center;
            padding: 2rem 1.5rem 2rem;
            max-width: 1000px;
            margin: 1rem auto 2rem;
        }

        .section-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--slate);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* ----- HISTORY CARD (ELEVATED) ----- */
        .history-card {
            background: white;
            border-radius: 28px;
            max-width: 1200px;
            margin: 2rem auto 4rem;
            padding: 2.5rem 3rem;
            box-shadow: var(--shadow-elegant);
            transition: var(--transition-smooth);
            border: 1px solid var(--border-mist);
        }

        .history-card:hover {
            box-shadow: var(--shadow-raised);
            transform: translateY(-6px);
        }

        .history-text p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--slate);
            margin-bottom: 1.4rem;
            font-weight: 400;
        }

        .history-text strong {
            color: var(--accent-burgundy);
            font-weight: 600;
            display: inline-block;
            margin-top: 0.5rem;
        }

        /* ----- MEMBERS SECTION (PRESTIGE) ----- */
        .members-wrapper {
            padding: 2rem 0 3rem;
        }

        .members-card {
            background: white;
            border-radius: 32px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-elegant);
            border-left: 4px solid var(--accent-gold);
            transition: all 0.4s;
        }

        .members-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .members-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 2px;
            background: var(--accent-burgundy);
            margin: 0.8rem auto 0;
        }

        .members-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 0.8rem;
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .members-list li {
            font-size: 1rem;
            padding: 0.6rem 0.8rem;
            border-bottom: 1px dashed var(--border-mist);
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 6px;
            transition: transform 0.2s;
        }

        .members-list li:hover {
            transform: translateX(6px);
            color: var(--accent-burgundy);
        }

        .members-list strong {
            font-weight: 700;
            color: var(--primary-deep);
        }

        .role, .suffix {
            font-size: 0.9rem;
            color: var(--slate);
        }

        .members-footer {
            text-align: center;
            margin-top: 1.8rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--accent-gold);
            letter-spacing: 1px;
        }

        /* ----- WHY CHOOSE US (ADVANCED INTERACTIVE) ----- */
        .why-choose-us {
            background: var(--off-white);
            padding: 5rem 0;
            margin-top: 2rem;
            border-top: 1px solid var(--border-mist);
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 2rem 1.5rem;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid var(--border-mist);
            box-shadow: 0 8px 16px -12px rgba(0,0,0,0.05);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            border-color: var(--accent-gold);
            box-shadow: 0 25px 35px -15px rgba(0,0,0,0.1);
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            background: rgba(30,58,95,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.4s;
        }

        .feature-card:hover .icon-circle {
            background: var(--accent-burgundy);
            transform: scale(1.05);
        }

        .icon-circle i {
            font-size: 2.2rem;
            color: var(--primary-deep);
            transition: all 0.3s;
        }

        .feature-card:hover .icon-circle i {
            color: white;
        }

        .feature-card h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--primary-rich);
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--slate);
            line-height: 1.5;
        }

        /* ----- FOOTER REFINED ----- */
        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer-logo {
            height: 60px;
            width: auto;
            filter: brightness(1.05);
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
            margin-bottom: 0.6rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(3px);
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            margin-right: 8px;
            transition: 0.25s;
            color: #E2E8F0;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

        /* responsive */
        @media (max-width: 991px) {
            body { padding-top: 82px; }
            .section-header h1 { font-size: 2.5rem; }
            .history-card { padding: 1.8rem; margin: 1rem 1rem 3rem; }
        }
        @media (max-width: 768px) {
            .members-list { grid-template-columns: 1fr; }
            .section-header h1 { font-size: 2rem; }
            .history-card { padding: 1.5rem; }
        }
        .navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}
section.section-header.aos-init.aos-animate {
    MARGIN-TOP: 125PX;
}


/* FACILLITIES */
----- SOPHISTICATED COLOR SYSTEM ----- */
    :root {
        --primary-deep: #1E3A5F;
        --primary-rich: #0F2C44;
        --accent-burgundy: #9E2A2F;
        --accent-gold: #C5A028;
        --charcoal: #2C2C2C;
        --slate: #4A5568;
        --pearl: #F8F6F2;
        --off-white: #FEFCF8;
        --border-mist: #E2E2DE;
        --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
        --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
        --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--pearl);
        color: var(--charcoal);
        padding-top: 96px;
        line-height: 1.55;
        font-weight: 400;
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .facility-title, .services-card h4 {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--primary-rich);
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* ----- LOADING PAGE ----- */
    #loading-page {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: var(--primary-rich);
        display: flex; justify-content: center; align-items: center; flex-direction: column;
        z-index: 10000;
        transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    .loading-logo {
        width: min(150px, 35%);
        margin-bottom: 2rem;
        animation: shimmerLogo 2.2s infinite alternate;
    }

    @keyframes shimmerLogo {
        0% { opacity: 0.85; transform: scale(0.98); }
        100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
    }

    .loading-spinner {
        width: 56px;
        height: 56px;
        border: 2px solid rgba(197,160,40,0.2);
        border-top: 2px solid var(--accent-gold);
        border-right: 2px solid var(--accent-burgundy);
        border-radius: 50%;
        animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .loading-progress {
        width: 240px;
        height: 2px;
        background: rgba(255,255,255,0.15);
        margin-top: 28px;
        overflow: hidden;
        border-radius: 2px;
    }

    .loading-progress-bar {
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
        animation: loadingSlide 1.5s infinite ease;
        transform: translateX(-100%);
    }

    @keyframes loadingSlide {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .loading-text {
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        letter-spacing: 4px;
        font-size: 0.75rem;
        color: var(--accent-gold);
        margin-top: 20px;
        text-transform: uppercase;
    }

    #loading-page.loaded {
        opacity: 0;
        visibility: hidden;
    }

    .main-content {
        opacity: 0;
        transition: opacity 1s ease;
    }

    .main-content.show {
        opacity: 1;
    }

    /* ----- NAVIGATION ----- */
    .navbar {
        background: rgba(254,252,248,0.96);
        backdrop-filter: blur(8px);
        padding: 0.9rem 0;
        transition: all 0.4s ease;
        box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
        border-bottom: 1px solid var(--border-mist);
    }

    .navbar.scrolled {
        background: rgba(254,252,248,0.98);
        box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
        padding: 0.6rem 0;
    }

    .navbar-brand img {
        height: 68px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.02);
    }

    .nav-link {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--charcoal) !important;
        padding: 0.5rem 1.2rem !important;
        transition: color 0.25s;
        position: relative;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 1.2rem;
        right: 1.2rem;
        height: 2px;
        background: var(--accent-burgundy);
        transform: scaleX(0);
        transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .nav-link:hover::before, .nav-link.active::before {
        transform: scaleX(1);
    }

    .nav-link:hover, .nav-link.active {
        color: var(--accent-burgundy) !important;
    }

    .btn-primary-custom {
        background: var(--accent-burgundy);
        border: none;
        border-radius: 32px;
        padding: 0.5rem 1.8rem;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        transition: var(--transition-smooth);
        color: white;
    }

    .btn-primary-custom:hover {
        background: var(--primary-deep);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
    }

    /* ----- FACILITIES HEADER ----- */
    .facility-header {
        text-align: center;
        padding: 2rem 1.5rem 1rem;
        max-width: 1000px;
        margin: 0 auto 2rem;
    }

    .facility-title {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
        letter-spacing: -0.5px;
        background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    .facility-subtitle {
        font-size: 1.1rem;
        color: var(--slate);
        max-width: 700px;
        margin: 0 auto;
        font-weight: 400;
    }

    /* ----- SERVICES CARDS (ELEGANT) ----- */
    .services-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-elegant);
        transition: var(--transition-smooth);
        height: 100%;
        position: relative;
        border: 1px solid var(--border-mist);
    }

    .services-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-raised);
        border-color: var(--accent-gold);
    }

    .services-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .services-card:hover img {
        transform: scale(1.05);
    }

    .icon-box {
        width: 70px;
        height: 70px;
        background: var(--accent-burgundy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -35px auto 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 20px rgba(158,42,47,0.3);
        transition: all 0.3s ease;
    }

    .services-card:hover .icon-box {
        background: var(--accent-gold);
        transform: scale(1.05);
    }

    .icon-box i {
        font-size: 30px;
        color: white;
    }

    .services-card h4 {
        font-size: 1.4rem;
        margin: 1.2rem 0 0.8rem;
        color: var(--primary-rich);
    }

    .services-card p {
        color: var(--slate);
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 1rem 1.5rem;
        margin: 0;
    }

    /* ----- FOOTER (CONSISTENT) ----- */
    .footer {
        background: #1C2E3F;
        color: #E6E9F0;
        padding: 3.5rem 0 1.5rem;
        margin-top: 4rem;
        border-top: 1px solid rgba(197,160,40,0.3);
    }

    .footer-logo {
        height: 60px;
        width: auto;
    }

    .footer h5 {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        font-weight: 600;
        color: #DBCB9A;
        margin-bottom: 1.2rem;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links a {
        color: #CBD5E0;
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.2s;
        display: inline-block;
    }

    .footer-links a:hover {
        color: var(--accent-gold);
        transform: translateX(5px);
    }

    .social-icons {
        display: flex;
        gap: 12px;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #E2E8F0;
        text-decoration: none;
        transition: all 0.25s;
    }

    .social-icons a:hover {
        background: var(--accent-burgundy);
        color: white;
        transform: translateY(-3px);
    }

    .input-group {
        background: rgba(255,255,255,0.05);
        border-radius: 60px;
        overflow: hidden;
        border: 1px solid rgba(197,160,40,0.3);
    }

    .input-group .form-control {
        background: transparent;
        border: none;
        color: white;
        padding: 0.7rem 1rem;
    }

    .input-group .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .input-group .btn {
        background: var(--accent-gold);
        border: none;
        padding: 0 1.5rem;
        color: #1C2E3F;
        font-weight: bold;
    }

    .input-group .btn:hover {
        background: var(--accent-burgundy);
        color: white;
    }

    .footer hr {
        background: rgba(197,160,40,0.2);
        margin: 2rem 0;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        text-align: center;
    }

    /* ----- BACK TO TOP ----- */
    .back-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 44px;
        height: 44px;
        background: var(--primary-deep);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        opacity: 0;
        transition: 0.3s;
        pointer-events: none;
        z-index: 99;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .back-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-to-top:hover {
        background: var(--accent-burgundy);
        transform: scale(1.1);
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 991px) {
        body { padding-top: 82px; }
        .facility-title { font-size: 2.5rem; }
        .navbar-collapse {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            margin-top: 1rem;
            box-shadow: var(--shadow-elegant);
        }
        .nav-link { text-align: center; }
        .btn-primary-custom { width: 100%; text-align: center; }
    }

    @media (max-width: 768px) {
        .facility-title { font-size: 2rem; }
        .services-card img { height: 180px; }
        .icon-box { width: 60px; height: 60px; margin-top: -30px; }
        .icon-box i { font-size: 24px; }
        .footer { text-align: center; }
        .social-icons { justify-content: center; }
        .footer-links a:hover { transform: none; }
        .input-group { max-width: 300px; margin: 0 auto; }
    }
    .navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}
section.facility-header.aos-init.aos-animate {
    MARGIN-TOP: 93PX;
}
/* FEEDBACK */
     /* ----- SOPHISTICATED COLOR SYSTEM ----- */
        :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            padding-top: 96px;
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, .rating-container h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        /* ----- LOADING PAGE ----- */
        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-logo {
            width: min(150px, 35%);
            margin-bottom: 2rem;
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

        /* ----- NAVIGATION (EXACT SAME AS OTHER PAGES) ----- */
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 68px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

        /* ----- FEEDBACK CONTAINER ----- */
        .feedback-container {
            max-width: 900px;
            margin: 2rem auto 3rem;
            padding: 0 15px;
        }

        .feedback-card {
            background: white;
            border-radius: 32px;
            padding: 2.5rem;
            box-shadow: var(--shadow-elegant);
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .feedback-card:hover {
            box-shadow: var(--shadow-raised);
        }

        .feedback-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .feedback-header h1 {
            font-size: 3rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .feedback-header .description {
            color: var(--slate);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .divider {
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
            margin: 1.5rem auto;
        }

        .feedback-subtitle {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--primary-deep);
            margin-bottom: 0.5rem;
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid var(--border-mist);
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent-burgundy);
            outline: none;
            box-shadow: 0 0 0 3px rgba(158,42,47,0.1);
        }

        .form-group input.invalid,
        .form-group select.invalid,
        .form-group textarea.invalid {
            border-color: var(--accent-burgundy);
            background: rgba(158,42,47,0.02);
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231E3A5F'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 20px;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Rating Container */
        .rating-container {
            border: 2px solid var(--border-mist);
            border-radius: 24px;
            padding: 1.8rem;
            margin: 1.5rem 0;
            background: var(--pearl);
            transition: all 0.3s;
        }

        .rating-container:hover {
            border-color: var(--accent-gold);
        }

        .rating-container h3 {
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .emoji-grid {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .emoji-item {
            flex: 1;
            min-width: 80px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .emoji-item:hover {
            transform: translateY(-5px);
        }

        .emoji-circle {
            width: 70px;
            height: 70px;
            border: 2px solid var(--border-mist);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 0.6rem;
            background: white;
            transition: all 0.3s;
        }

        .emoji-item:hover .emoji-circle {
            border-color: var(--accent-gold);
        }

        .emoji-item.selected .emoji-circle {
            border-color: var(--accent-burgundy);
            background: rgba(158,42,47,0.05);
            transform: scale(1.05);
        }

        .emoji-label {
            font-size: 0.75rem;
            color: var(--slate);
            display: block;
        }

        
        .star-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0 0.8rem;
            flex-wrap: wrap;
        }

        .stars {
            display: flex;
            gap: 0.5rem;
        }

        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: all 0.2s;
        }

        .star:hover,
        .star.selected {
            color: var(--accent-gold);
        }

        .rating-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-deep);
            background: var(--pearl);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            border: 1px solid var(--border-mist);
        }

        .rating-labels {
            display: flex;
            justify-content: space-between;
            color: var(--slate);
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0 0.5rem;
        }

     
        .error-message {
            color: var(--accent-burgundy);
            font-size: 0.75rem;
            margin-top: 0.4rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

       
        .success-message {
            background: linear-gradient(135deg, rgba(197,160,40,0.1), rgba(158,42,47,0.05));
            border: 1px solid var(--accent-gold);
            color: var(--primary-rich);
            padding: 1.2rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            text-align: center;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--accent-burgundy);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--primary-deep);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -8px rgba(158,42,47,0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

    
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer-logo {
            height: 60px;
            width: auto;
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #E2E8F0;
            text-decoration: none;
            transition: all 0.25s;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        .input-group .btn:hover {
            background: var(--accent-burgundy);
            color: white;
        }

        .footer hr {
            background: rgba(197,160,40,0.2);
            margin: 2rem 0;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            text-align: center;
        }

        
        @media (max-width: 991px) {
            body { padding-top: 82px; }
            .feedback-card { padding: 1.5rem; }
            .feedback-header h1 { font-size: 2.2rem; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: var(--shadow-elegant);
            }
            .nav-link { text-align: center; }
            .btn-primary-custom { width: 100%; text-align: center; }
        }

        @media (max-width: 768px) {
            .emoji-grid { justify-content: center; }
            .emoji-item { min-width: 70px; }
            .emoji-circle { width: 55px; height: 55px; font-size: 1.6rem; }
            .star { font-size: 1.8rem; }
            .star-container { flex-direction: column; }
            .footer { text-align: center; }
            .social-icons { justify-content: center; }
            .footer-links a:hover { transform: none; }
            .input-group { max-width: 300px; margin: 0 auto; }
        }
        .facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}
.feedback-card.aos-init.aos-animate {
    MARGIN-TOP: 145PX;
}


/* MEMBERSHIP */
  :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            padding-top: 96px;
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .membership-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-logo {
            width: 144px !important;
            height: 130px !important;
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

     
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 77px !important;
            width: 90px !important;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .navbar-toggler {
            border: 1px solid var(--accent-burgundy);
            padding: 0.5rem 0.75rem;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(158,42,47,0.25);
            outline: none;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

      
        .membership-hero {
            text-align: center;
            padding: 2rem 1.5rem 1rem;
            max-width: 1000px;
            margin: 0 auto 1rem;
        }

        .membership-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .membership-hero p {
            font-size: 1.1rem;
            color: var(--slate);
            max-width: 700px;
            margin: 0 auto;
        }

       
        .membership-container {
            max-width: 1000px;
            margin: 1rem auto 3rem;
            padding: 0 15px;
        }

        .form-card {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: var(--shadow-elegant);
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .form-card:hover {
            box-shadow: var(--shadow-raised);
        }

        
        .form-section {
            margin-bottom: 2rem;
            background: var(--pearl);
            padding: 1.5rem;
            border-radius: 24px;
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .form-section:hover {
            border-color: var(--accent-gold);
        }

        .form-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--accent-gold);
            color: var(--primary-rich);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-section h2 i {
            color: var(--accent-burgundy);
            font-size: 1.3rem;
        }

     
        .form-label {
            font-weight: 500;
            color: var(--primary-deep);
            margin-bottom: 0.4rem;
            font-size: 0.85rem;
        }

        .required::after {
            content: " *";
            color: var(--accent-burgundy);
        }

        .form-control, .form-select {
            background: white;
            border: 2px solid var(--border-mist);
            border-radius: 16px;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--accent-burgundy);
            outline: none;
            box-shadow: 0 0 0 3px rgba(158,42,47,0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

       
        .membership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .membership-card {
            background: white;
            border: 2px solid var(--border-mist);
            border-radius: 20px;
            padding: 1.2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .membership-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .membership-card.selected {
            border-color: var(--accent-burgundy);
            background: rgba(158,42,47,0.05);
        }

        .membership-card h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--primary-rich);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .membership-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-burgundy);
            margin: 0.5rem 0;
        }

        .membership-duration {
            font-size: 0.75rem;
            color: var(--slate);
        }

        .membership-card p {
            font-size: 0.75rem;
            color: var(--slate);
            margin-top: 0.5rem;
        }

     
        .terms-box {
            background: var(--pearl);
            border-radius: 20px;
            padding: 1rem;
            max-height: 160px;
            overflow-y: auto;
            border: 1px solid var(--border-mist);
            margin-bottom: 1rem;
        }

        .terms-box p {
            font-size: 0.8rem;
            color: var(--slate);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .terms-box p strong {
            color: var(--primary-rich);
        }

       
        .form-check-input {
            width: 1.1rem;
            height: 1.1rem;
            margin-top: 0.2rem;
            border: 2px solid var(--border-mist);
            cursor: pointer;
        }

        .form-check-input:checked {
            background-color: var(--accent-burgundy);
            border-color: var(--accent-burgundy);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 3px rgba(158,42,47,0.2);
        }

        .form-check-label {
            font-size: 0.9rem;
            color: var(--charcoal);
        }

        
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--accent-burgundy);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: var(--primary-deep);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -8px rgba(158,42,47,0.4);
        }

        .success-alert {
            background: linear-gradient(135deg, rgba(197,160,40,0.1), rgba(158,42,47,0.05));
            border: 1px solid var(--accent-gold);
            color: var(--primary-rich);
            padding: 1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            display: none;
            align-items: center;
            gap: 1rem;
            animation: slideDown 0.4s ease;
        }

        .success-alert.show {
            display: flex;
        }

        .success-alert i {
            font-size: 1.8rem;
            color: var(--accent-gold);
        }

        .btn-close-custom {
            margin-left: auto;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--slate);
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ----- CONFIRMATION SECTION ----- */
        .confirmation-section {
            text-align: center;
        }

        .confirmation-icon {
            font-size: 4rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .confirmation-details {
            background: var(--pearl);
            border-radius: 24px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            text-align: left;
            border: 1px solid var(--border-mist);
        }

        .detail-item {
            display: flex;
            flex-wrap: wrap;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-mist);
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--primary-rich);
            width: 140px;
        }

        .detail-value {
            color: var(--slate);
            flex: 1;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-burgundy);
            color: var(--accent-burgundy);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .btn-primary-filled {
            background: var(--accent-burgundy);
            border: none;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .btn-primary-filled:hover {
            background: var(--primary-deep);
            transform: translateY(-3px);
        }

       
        .error-message {
            color: var(--accent-burgundy);
            font-size: 0.75rem;
            margin-top: 0.3rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .is-invalid {
            border-color: var(--accent-burgundy) !important;
        }

        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #E2E8F0;
            text-decoration: none;
            transition: all 0.25s;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        .footer hr {
            background: rgba(197,160,40,0.2);
            margin: 2rem 0;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            text-align: center;
        }

      
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

  
        @media (max-width: 991px) {
            body { padding-top: 82px; }
            .membership-hero h1 { font-size: 2.5rem; }
            .form-card { padding: 1.5rem; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: var(--shadow-elegant);
            }
            .nav-link { text-align: center; }
            .btn-primary-custom { width: 100%; text-align: center; }
            .detail-item { flex-direction: column; }
            .detail-label { width: 100%; margin-bottom: 0.3rem; }
        }

        @media (max-width: 768px) {
            .membership-hero h1 { font-size: 2rem; }
            .form-section { padding: 1.2rem; }
            .form-section h2 { font-size: 1.2rem; }
            .membership-grid { grid-template-columns: repeat(2, 1fr); }
            .footer { text-align: center; }
            .social-icons { justify-content: center; }
            .input-group { max-width: 300px; margin: 0 auto; }
        }

        @media (max-width: 576px) {
            .form-card { padding: 1rem; }
            .form-section { padding: 1rem; }
            .membership-grid { grid-template-columns: 1fr; }
        }
        .facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}


/* GALLERY */
 :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            padding-top: 96px;
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .gallery-section h2, .events-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 15px;
            padding-right: 15px;
        }

      
        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-logo {
            width: 144px !important;
            height: 130px !important;
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

       
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 77px !important;
            width: 90px !important;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

        /* ----- GALLERY SECTION ----- */
        .gallery-section {
            background: var(--pearl);
            padding: 4rem 0;
        }

        .gallery-section h2 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 280px;
            cursor: pointer;
            border-radius: 24px;
            border: 1px solid var(--border-mist);
            transition: var(--transition-smooth);
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30,58,95,0.9) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h5 {
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0;
            transform: translateY(20px);
            transition: transform 0.4s ease;
            font-family: 'Inter', sans-serif;
        }

        .gallery-item:hover .gallery-overlay h5 {
            transform: translateY(0);
        }

        
        .events-section {
            background: var(--off-white);
            padding: 4rem 0;
        }

        .events-section h2 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary-rich);
        }

        .event-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition-smooth);
            border: 1px solid var(--border-mist);
            height: 100%;
        }

        .event-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .event-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover img {
            transform: scale(1.05);
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-rich);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .event-content p {
            color: var(--slate);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

      
        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            margin-top: 0;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #E2E8F0;
            text-decoration: none;
            transition: all 0.25s;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        .input-group .btn:hover {
            background: var(--accent-burgundy);
            color: white;
        }

        .footer hr {
            background: rgba(197,160,40,0.2);
            margin: 2rem 0;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            text-align: center;
        }

     
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

      
        .modal-content {
            background: transparent;
        }

        .btn-close-white {
            filter: brightness(0) invert(1);
        }

    
        @media (max-width: 991px) {
            body { padding-top: 82px; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: var(--shadow-elegant);
            }
            .nav-link { text-align: center; }
            .btn-primary-custom { width: 100%; text-align: center; }
        }

        @media (max-width: 768px) {
            .gallery-item { height: 220px; }
            .event-card img { height: 180px; }
            .gallery-section h2, .events-section h2 { font-size: 2rem; }
            .footer { text-align: center; }
            .social-icons { justify-content: center; }
            .footer-links a:hover { transform: none; }
            .input-group { max-width: 300px; margin: 0 auto; }
        }
         .facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}
.text-center.mb-5.aos-init.aos-animate {
    MARGIN-TOP: 90PX;
}





/* CONTACT */
      
        :root {
            --primary-deep: #1E3A5F;
            --primary-rich: #0F2C44;
            --accent-burgundy: #9E2A2F;
            --accent-gold: #C5A028;
            --charcoal: #2C2C2C;
            --slate: #4A5568;
            --pearl: #F8F6F2;
            --off-white: #FEFCF8;
            --border-mist: #E2E2DE;
            --shadow-elegant: 0 20px 35px -12px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.02);
            --shadow-raised: 0 30px 45px -18px rgba(0,0,0,0.12);
            --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--pearl);
            color: var(--charcoal);
            padding-top: 96px;
            line-height: 1.55;
            font-weight: 400;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .contact-hero h1, .hours-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--primary-rich);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        
        #loading-page {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-rich);
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            z-index: 10000;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        .loading-logo {
            width: min(150px, 35%);
            margin-bottom: 2rem;
            animation: shimmerLogo 2.2s infinite alternate;
        }

        @keyframes shimmerLogo {
            0% { opacity: 0.85; transform: scale(0.98); }
            100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 6px rgba(197,160,40,0.6)); }
        }

        .loading-spinner {
            width: 56px;
            height: 56px;
            border: 2px solid rgba(197,160,40,0.2);
            border-top: 2px solid var(--accent-gold);
            border-right: 2px solid var(--accent-burgundy);
            border-radius: 50%;
            animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .loading-progress {
            width: 240px;
            height: 2px;
            background: rgba(255,255,255,0.15);
            margin-top: 28px;
            overflow: hidden;
            border-radius: 2px;
        }

        .loading-progress-bar {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            animation: loadingSlide 1.5s infinite ease;
            transform: translateX(-100%);
        }

        @keyframes loadingSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 0.75rem;
            color: var(--accent-gold);
            margin-top: 20px;
            text-transform: uppercase;
        }

        #loading-page.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show {
            opacity: 1;
        }

       
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(8px);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 16px rgba(0,0,0,0.02);
            border-bottom: 1px solid var(--border-mist);
        }

        .navbar.scrolled {
            background: rgba(254,252,248,0.98);
            box-shadow: 0 8px 28px -10px rgba(0,0,0,0.08);
            padding: 0.6rem 0;
        }

        .navbar-brand img {
            height: 68px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.02);
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.25s;
            position: relative;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background: var(--accent-burgundy);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .nav-link:hover::before, .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-burgundy) !important;
        }

        .btn-primary-custom {
            background: var(--accent-burgundy);
            border: none;
            border-radius: 32px;
            padding: 0.5rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            color: white;
        }

        .btn-primary-custom:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -8px rgba(158,42,47,0.4);
        }

      
        .contact-hero {
            text-align: center;
            padding: 2rem 1.5rem 2rem;
            max-width: 1000px;
            margin: 0 auto 2rem;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-top: 0;
        }

        .contact-hero p {
            font-size: 1.1rem;
            color: var(--slate);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .contact-card {
            background: white;
            border-radius: 28px;
            padding: 2rem 1.8rem;
            height: 100%;
            border: 1px solid var(--border-mist);
            box-shadow: var(--shadow-elegant);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-burgundy));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card .icon-wrapper {
            width: 70px;
            height: 70px;
            background: rgba(30,58,95,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s;
        }

        .contact-card:hover .icon-wrapper {
            background: var(--accent-burgundy);
            transform: scale(1.05);
        }

        .contact-card .icon-wrapper i {
            font-size: 2rem;
            color: var(--primary-deep);
            transition: all 0.3s;
        }

        .contact-card:hover .icon-wrapper i {
            color: white;
        }

        .contact-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary-rich);
        }

        .contact-card p {
            color: var(--slate);
            line-height: 1.6;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }

        .contact-card a {
            color: var(--primary-deep);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-card a:hover {
            color: var(--accent-burgundy);
        }

      
        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--pearl);
            border-radius: 16px;
            margin-bottom: 1rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .contact-method:hover {
            border-color: var(--accent-gold);
            transform: translateX(5px);
            background: white;
        }

        .contact-method i {
            font-size: 1.6rem;
            color: var(--accent-burgundy);
            width: 40px;
            text-align: center;
        }

        .contact-method p {
            margin: 0;
        }

       
        .hours-card {
            background: white;
            border-radius: 28px;
            padding: 2.5rem;
            border: 1px solid var(--border-mist);
            box-shadow: var(--shadow-elegant);
            transition: var(--transition-smooth);
        }

        .hours-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-raised);
        }

        .hours-card h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-mist);
        }

        .hour-item:last-child {
            border-bottom: none;
        }

        .hour-item .day {
            font-weight: 600;
            color: var(--primary-deep);
        }

        .hour-item .time {
            color: var(--slate);
        }

        .alert-info {
            background: rgba(197,160,40,0.08);
            border: 1px solid var(--accent-gold);
            color: var(--primary-rich);
            border-radius: 20px;
            padding: 1rem;
            margin-top: 1.5rem;
        }

        .alert-info i {
            color: var(--accent-burgundy);
        }

        
        .info-icon-card {
            text-align: center;
            padding: 1.5rem;
            transition: all 0.3s;
            border-radius: 20px;
        }

        .info-icon-card i {
            font-size: 2.5rem;
            color: var(--accent-burgundy);
            transition: transform 0.3s;
        }

        .info-icon-card:hover i {
            transform: scale(1.1);
            color: var(--accent-gold);
        }

        .info-icon-card h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin: 1rem 0 0.5rem;
            color: var(--primary-rich);
        }

        .info-icon-card p {
            font-size: 0.85rem;
            color: var(--slate);
        }

       
        .footer {
            background: #1C2E3F;
            color: #E6E9F0;
            padding: 3.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(197,160,40,0.3);
        }

        .footer-logo {
            height: 60px;
            width: auto;
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #DBCB9A;
            margin-bottom: 1.2rem;
        }

        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
            display: inline-block;
            margin-bottom: 0.6rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(3px);
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            margin-right: 8px;
            transition: 0.25s;
            color: #E2E8F0;
        }

        .social-icons a:hover {
            background: var(--accent-burgundy);
            color: white;
            transform: translateY(-3px);
        }

        .input-group {
            background: rgba(255,255,255,0.05);
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid rgba(197,160,40,0.3);
        }

        .input-group .form-control {
            background: transparent;
            border: none;
            color: white;
            padding: 0.7rem 1rem;
        }

        .input-group .btn {
            background: var(--accent-gold);
            border: none;
            padding: 0 1.5rem;
            color: #1C2E3F;
            font-weight: bold;
        }

        /* ----- BACK TO TOP ----- */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--primary-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
            z-index: 99;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: var(--accent-burgundy);
            transform: scale(1.1);
        }

        /* ----- ANIMATIONS ----- */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 991px) {
            body { padding-top: 82px; }
            .contact-hero h1 { font-size: 2.5rem; }
            .navbar-collapse {
                background: white;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: var(--shadow-elegant);
            }
            .nav-link { text-align: center; }
            .btn-primary-custom { width: 100%; text-align: center; }
        }

        @media (max-width: 768px) {
            .contact-hero h1 { font-size: 2rem; }
            .contact-card { padding: 1.5rem; }
            .hour-item { flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; }
            .footer { text-align: center; }
            .social-icons { justify-content: center; }
        }
        .facility-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-rich) 0%, var(--accent-burgundy) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 27px;
}
.navbar-brand img {
    height: 84px;
    width: auto;
    transition: transform 0.3s ease;
}
.loading-spinner {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(197,160,40,0.2);
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1.2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 20px;
}
.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.05);
}
section.contact-hero.aos-init.aos-animate {
    MARGIN-TOP: 125PX;
}

.auth-btn {
    border-radius: 32px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    color: #fff;
    border: none;
}

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

.auth-btn-dark {
    background: linear-gradient(135deg, var(--primary-rich), var(--primary-deep));
}

.auth-btn-dark:hover {
    box-shadow: 0 10px 20px -8px rgba(15, 44, 68, 0.45);
}

.auth-btn-muted {
    background: #6c757d;
}

.auth-btn-muted:hover {
    background: #5c636a;
    box-shadow: 0 10px 20px -8px rgba(108, 117, 125, 0.4);
}

.btn-primary-custom.active {
    background: var(--primary-deep);
    box-shadow: 0 10px 20px -8px rgba(30, 58, 95, 0.35);
}
