/* â”€â”€ RESET & BASE â”€â”€ */
        * { margin: 0; padding: 0;  }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background: #f5f2ed; color: #1a1a2e; line-height: 1.7; overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* â”€â”€ HEADER â”€â”€ */
        .site-header {
            position: fixed; top: 0; left: 0; width: 100%; padding: 14px 0; z-index: 1000;
            transition: background 0.5s, box-shadow 0.5s, padding 0.3s;
            background: white;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
        .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245,214,168,0.5); transition: border-color 0.3s; }
        .scrolled .logo img { border-color: #c49a6c; }
        .logo a { font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; transition: color 0.3s; cursor: pointer; }
        .scrolled .logo a { color: #1a2a1e; }
        .logo span { color: #f5d6a8; }
        .scrolled .logo span { color: #c49a6c; }

        .weather-temp {
            display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85);
            font-size: 0.8rem; font-weight: 500; background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px); padding: 4px 14px; border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; flex-shrink: 0;
        }
        .scrolled .weather-temp { color: #1a2a1e; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); }
        .weather-temp i { color: #f5d6a8; font-size: 0.9rem; }
        .scrolled .weather-temp i { color: #c49a6c; }

        /* â”€â”€ NAVIGATION â”€â”€ */
        .nav-links {
            display: flex; gap: 16px; list-style: none; font-weight: 600;
            flex-wrap: wrap; align-items: center; margin: 0; padding: 0;
        }
        .nav-links>li { position: relative; list-style: none; }
        .nav-links a {
            text-decoration: none; color: rgba(9, 9, 9, 0.9);
            transition: all 0.3s ease; font-size: 0.78rem; font-weight: 600;
            white-space: nowrap; letter-spacing: 0.5px; padding: 4px 0;
            display: inline-block; position: relative; cursor: pointer; text-transform: uppercase;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0;
            height: 2px; background: #f5d6a8; border-radius: 4px; transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        .scrolled .nav-links a { color: #1a2a1e; }
        .nav-links a:hover { color: #f5d6a8; }
        .scrolled .nav-links a:hover { color: #c49a6c; }
        .scrolled .nav-links a::after { background: #c49a6c; }
        .nav-links a.active-page { color: #f5d6a8; }
        .scrolled .nav-links a.active-page { color: #c49a6c; }

        /* â”€â”€ DROPDOWN â”€â”€ */
        .dropdown > a::after { display: none; }
        .dropdown .dropdown-toggle .fa-chevron-down {
            font-size: 0.55rem;
            margin-left: 4px;
            transition: transform 0.3s ease;
        }
        .dropdown:hover .dropdown-toggle .fa-chevron-down {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 8px 0;
            min-width: 200px;
            box-shadow: 0 12px 48px rgba(0,0,0,0.08);
            border: 1px solid rgba(255,255,255,0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            list-style: none;
            margin: 0;
            z-index: 100;
        }
        .dropdown:hover .dropdown-menu,
        .dropdown-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-menu li { list-style: none; padding: 0; margin: 0; }
        .dropdown-menu a {
            display: block;
            padding: 8px 24px;
            font-size: 0.72rem;
            font-weight: 500;
            color: #1a2a1e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: all 0.25s ease;
            border: none;
            background: transparent;
            width: 100%;
            text-align: left;
            cursor: pointer;
            text-decoration: none;
        }
        .dropdown-menu a::after { display: none; }
        .dropdown-menu a:hover {
            background: rgba(245,214,168,0.12);
            color: #c49a6c;
            padding-left: 28px;
        }
        .dropdown-menu a.active-page {
            color: #c49a6c;
            background: rgba(245,214,168,0.08);
        }
        .scrolled .dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            border-color: rgba(0,0,0,0.04);
        }
        .scrolled .dropdown-menu a { color: #1a2a1e; }
        .scrolled .dropdown-menu a:hover {
            background: rgba(196,154,108,0.08);
            color: #c49a6c;
        }

        /* ── MOBILE MENU Hamburger & Overlay ── */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
            padding: 0;
            outline: none;
            align-self: center;
        }
        .mobile-menu-toggle .bar {
            width: 100%;
            height: 2.5px;
            background-color: #1a2a1e;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .scrolled .mobile-menu-toggle .bar {
            background-color: #1a2a1e;
        }
        
        /* Hamburger Morph to Cross Close */
        .mobile-menu-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 42, 30, 0.4);
            backdrop-filter: blur(6px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* â”€â”€ RESPONSIVE DROPDOWN â”€â”€ */
        @media (max-width: 768px) {
            
            .header-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 6px; }
            .nav-links { justify-content: center; flex-wrap: wrap; gap: 5px 10px; }
            .nav-links a { font-size: 0.65rem; white-space: normal; }
            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                padding: 0;
                border-radius: 12px;
                margin-top: 4px;
                box-shadow: none;
                background: rgba(255,255,255,0.6);
                backdrop-filter: blur(12px);
                transition: all 0.35s ease;
                min-width: unset;
                width: 100%;
            }
            .dropdown-menu.open {
                opacity: 1;
                visibility: visible;
                max-height: 400px;
                padding: 6px 0;
            }
            .dropdown-menu a {
                padding: 6px 20px;
                font-size: 0.6rem;
                text-align: center;
            }
            .dropdown-menu a:hover { padding-left: 20px; }
            .dropdown-toggle .fa-chevron-down { transition: transform 0.35s ease; }
            .dropdown-toggle.open .fa-chevron-down { transform: rotate(180deg); }
            .dropdown { position: relative; }
        }

        .btn-primary {
            background: linear-gradient(135deg, #f5d6a8, #e8c492);
            color: #1a2a1e; border: none; padding: 8px 24px;
            border-radius: 50px; font-weight: 700; font-size: 0.75rem;
            cursor: pointer; transition: all 0.3s ease; flex-shrink: 0;
            box-shadow: 0 4px 20px rgba(245,214,168,0.2);
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 32px rgba(245,214,168,0.3); }
        .scrolled .btn-primary {
            background: linear-gradient(135deg, #2d5e3d, #1a472a);
            color: #fff; box-shadow: 0 4px 20px rgba(45,94,61,0.2);
        }
        .scrolled .btn-primary:hover { box-shadow: 0 8px 32px rgba(45,94,61,0.3); }
        .btn-secondary {
            background: transparent; color: #c49a6c; border: 2px solid #c49a6c;
            padding: 8px 24px; border-radius: 50px; font-weight: 600; font-size: 0.8rem;
            cursor: pointer; transition: all 0.3s ease; display: inline-block; text-decoration: none;
        }
        .btn-secondary:hover { background: #c49a6c; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(196,154,108,0.3); }

        .page { display: none; padding-top: 74px; animation: fadePage 0.5s ease; }
        .page.active { display: block; }
        @keyframes fadePage { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

        /* â”€â”€ HOME HERO â”€â”€ */
        .hero {
            position: relative; min-height: 100vh; display: flex; align-items: center;
            justify-content: center; text-align: center; color: #fff; overflow: hidden;
            margin-top: -74px;
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: url('/banner/yms-7.jpg') center/cover no-repeat;
            filter: brightness(0.45); z-index: 0; transform: scale(1.05);
            transition: transform 8s ease;
        }
        .hero:hover .hero-bg { transform: scale(1); }
        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(26,42,30,0.6) 0%, rgba(26,42,30,0.2) 100%);
            z-index: 1;
        }
        .hero-pattern {
            position: absolute; inset: 0; z-index: 1; opacity: 0.04;
            background-image:
                radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
            background-size: 50px 50px, 50px 50px;
        }
        .hero-content { position: relative; z-index: 2; max-width: 820px; padding: 20px; }
        .hero-badge {
            display: inline-block; background: rgba(245,214,168,0.12);
            backdrop-filter: blur(8px); border: 1px solid rgba(245,214,168,0.15);
            padding: 6px 28px; border-radius: 50px; font-size: 0.7rem;
            font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
            color: #f5d6a8; margin-bottom: 20px; animation: fadeInDown 1s ease;
        }
        .hero-content h1 {
            font-size: 4.2rem; font-weight: 800; letter-spacing: -2px;
            margin-bottom: 8px; line-height: 1.08; animation: fadeInUp 1s ease 0.2s both;
        }
        .hero-content h1 span { color: #f5d6a8; position: relative; }
        .hero-content h1 span::after {
            content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
            height: 6px; background: rgba(245,214,168,0.15); border-radius: 4px;
        }
        .hero-content .tagline {
            font-size: 1.5rem; opacity: 0.85; font-weight: 300;
            margin-bottom: 32px; letter-spacing: 4px; animation: fadeInUp 1s ease 0.4s both;
        }
        .hero-content .btn-primary {
            font-size: 1rem; padding: 14px 44px;
            background: linear-gradient(135deg, #f5d6a8, #e8c492);
            color: #1a2a1e; box-shadow: 0 8px 40px rgba(245,214,168,0.3);
            animation: fadeInUp 1s ease 0.6s both;
        }
        .hero-content .btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 56px rgba(245,214,168,0.45); }
        @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
        @keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
        .scroll-indicator {
            position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
            z-index: 2; animation: bounce 2s ease infinite;
        }
        .scroll-indicator a { color: rgba(255,255,255,0.4); font-size: 1.4rem; transition: color 0.3s; cursor: pointer; }
        .scroll-indicator a:hover { color: #f5d6a8; }
        @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

        /* â”€â”€ PAGE HERO â”€â”€ */
        .page-hero {
            position: relative; min-height: 35vh; display: flex; align-items: center;
            justify-content: center; text-align: center; color: #fff; overflow: hidden;
        }
 .page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(45,94,61,0.3) 0%, transparent 60%),
                url('/banner/yms-7.jpg') center/cover no-repeat;
    filter: brightness(0.4); z-index: 0; transform: scale(1.05);
    transition: transform 8s ease;
}
        .page-hero:hover .page-hero-bg { transform: scale(1); }
    .page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,42,30,0.7) 0%, rgba(26,42,30,0.2) 100%);
    z-index: 1;
}
        .page-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
        .page-hero-content .breadcrumb { font-size: 0.8rem; opacity: 0.6; margin-bottom: 14px; letter-spacing: 1px; }
        .page-hero-content .breadcrumb a { color: #f5d6a8; text-decoration: none; cursor: pointer; }
        .page-hero-content .breadcrumb a:hover { text-decoration: underline; }
        .page-hero-content h1 { font-size: 3.6rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 10px; line-height: 1.1; }
        .page-hero-content h1 span { color: #f5d6a8; }
        .page-hero-content p { font-size: 1.15rem; opacity: 0.8; font-weight: 300; max-width: 600px; margin: 0 auto; }

        /* â”€â”€ SECTION TITLES â”€â”€ */
        .section-title {
            font-size: 2.6rem; font-weight: 800; color: #1a2a1e;
            text-align: center; margin-bottom: 6px; letter-spacing: -1px;
        }
        .section-title span { color: #c49a6c; position: relative; }
        .section-title span::after {
            content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
            height: 4px; background: rgba(196,154,108,0.12); border-radius: 4px;
        }
        .section-sub {
            text-align: center; color: #6b6b7d; margin-bottom: 40px;
            font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto;
            font-weight: 400;
        }

        /* â”€â”€ ABOUT â”€â”€ */
        .about-wrapper { padding: 70px 0 30px; }
        .about-box {
            background: rgba(255,255,255,0.8); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 28px;
            padding: 44px 52px; max-width: 780px; margin: 0 auto 20px;
            text-align: center; box-shadow: 0 8px 48px rgba(0,0,0,0.02);
            transition: all 0.4s ease;
        }
        .about-box:hover { transform: translateY(-4px); box-shadow: 0 16px 64px rgba(0,0,0,0.04); }
        .about-box p { font-size: 1.08rem; color: #2a3a2e; line-height: 1.8; }
        .about-box .quote-icon { font-size: 2.2rem; color: #c49a6c; opacity: 0.15; margin-bottom: 8px; }

        .about-content-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 40px 0;
        }
        .about-content-grid .text-content h3 { font-size: 1.8rem; font-weight: 700; color: #1a2a1e; margin-bottom: 16px; }
        .about-content-grid .text-content h3 span { color: #c49a6c; }
        .about-content-grid .text-content p { color: #3a4a3e; font-size: 1.02rem; margin-bottom: 14px; }
        .about-content-grid .image-content img { width: 100%; border-radius: 24px; box-shadow: 0 12px 48px rgba(0,0,0,0.06); transition: transform 0.4s ease; }
        .about-content-grid .image-content img:hover { transform: scale(1.02); }

        .mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; }
        .mv-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); padding: 32px 28px;
            border-radius: 24px; text-align: center; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
        }
        .mv-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(0,0,0,0.04); border-color: rgba(196,154,108,0.1); }
        .mv-card .icon { font-size: 2.6rem; color: #c49a6c; margin-bottom: 10px; }
        .mv-card h4 { font-size: 1.25rem; font-weight: 700; color: #1a2a1e; margin-bottom: 6px; }
        .mv-card p { color: #4a5a4e; font-size: 0.95rem; }

        .team-wrapper { padding: 40px 0 60px; }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin: 20px 0; }
        .team-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 24px;
            padding: 28px 20px 32px; text-align: center; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 340px;
        }
        .team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(0,0,0,0.04); border-color: rgba(196,154,108,0.1); }
        .team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 4px solid #f5d6a8; transition: border-color 0.3s; }
        .team-card:hover img { border-color: #c49a6c; }
        .team-card h4 { font-size: 1.1rem; font-weight: 700; color: #1a2a1e; }
        .team-card .role { color: #c49a6c; font-weight: 600; font-size: 0.85rem; }
        .team-card p { color: #5a6a5e; font-size: 0.88rem; margin-top: 4px; }
        .team-card .social-links { display: flex; justify-content: center; gap: 12px; margin-top: 10px; }
        .team-card .social-links a { color: #a0aab0; font-size: 1rem; transition: all 0.3s; }
        .team-card .social-links a:hover { color: #c49a6c; transform: translateY(-2px); }

        .trustee-wrapper { padding: 40px 0 60px; background: rgba(245,214,168,0.06); border-radius: 28px; }
        .trustee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin: 20px 0; }
        .trustee-card {
            background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 24px;
            padding: 28px 20px 32px; text-align: center; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 300px;
        }
        .trustee-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(0,0,0,0.04); }
        .trustee-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 4px solid #c49a6c; transition: border-color 0.3s; }
        .trustee-card:hover img { border-color: #f5d6a8; }
        .trustee-card h4 { font-size: 1.1rem; font-weight: 700; color: #1a2a1e; }
        .trustee-card .role { color: #c49a6c; font-weight: 600; font-size: 0.85rem; }
        .trustee-card p { color: #5a6a5e; font-size: 0.88rem; margin-top: 4px; }

        /* â”€â”€ BENEFITS â”€â”€ */
        .benefits-wrapper { padding: 20px 0 60px; }
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; margin: 0; }
        .benefit-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); padding: 30px 22px 26px;
            border-radius: 24px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            transition: all 0.4s cubic-bezier(0.22,1,0.36,1); position: relative; overflow: hidden;
        }
        .benefit-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, #c49a6c, #f5d6a8); opacity: 0; transition: opacity 0.4s ease;
        }
        .benefit-card:hover::before { opacity: 1; }
        .benefit-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(0,0,0,0.04); border-color: rgba(196,154,108,0.1); }
        .benefit-card .icon-wrap {
            width: 68px; height: 68px; border-radius: 50%;
            background: linear-gradient(135deg, #f5f0ea, #ebe4dc);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 14px; transition: all 0.4s ease;
        }
        .benefit-card:hover .icon-wrap { transform: scale(1.08); background: linear-gradient(135deg, #f5d6a8, #e8c492); }
        .benefit-card i { font-size: 1.8rem; color: #c49a6c; transition: color 0.4s ease; }
        .benefit-card:hover i { color: #1a2a1e; }
        .benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a2a1e; margin-bottom: 2px; }
        .benefit-card .card-number {
            position: absolute; top: 10px; right: 14px; font-size: 2.6rem;
            font-weight: 800; color: rgba(196,154,108,0.05); line-height: 1;
        }

        /* â”€â”€ GALLERY â”€â”€ */
        .gallery-wrapper { padding: 40px 0 60px; }
        .gallery-filters {
            display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
        }
        .filter-btn {
            background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.4); padding: 8px 26px;
            border-radius: 50px; font-weight: 600; font-size: 0.8rem;
            color: #1a2a1e; cursor: pointer; transition: all 0.3s ease;
        }
        .filter-btn:hover { background: #f5d6a8; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,214,168,0.2); }
        .filter-btn.active {
            background: linear-gradient(135deg, #2d5e3d, #1a472a);
            color: #fff; border-color: #2d5e3d; box-shadow: 0 4px 20px rgba(45,94,61,0.2);
        }
        .gallery-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px; margin-top: 10px;
        }
        .gallery-item {
            position: relative; border-radius: 20px; overflow: hidden; cursor: pointer;
            aspect-ratio: 4/3; background: rgba(255,255,255,0.6);
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
        }
        .gallery-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 56px rgba(0,0,0,0.04); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .gallery-item:hover img { transform: scale(1.06); }
        .gallery-item .overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(26,42,30,0.75) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.4s ease;
            display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
        }
        .gallery-item:hover .overlay { opacity: 1; }
        .gallery-item .overlay h4 { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 2px; }
        .gallery-item .overlay p { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
        .gallery-item .overlay .icon {
            position: absolute; top: 14px; right: 14px;
            background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
            width: 38px; height: 38px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 0.85rem; transition: background 0.3s;
        }
        .gallery-item:hover .overlay .icon { background: rgba(245,214,168,0.25); }

        .lightbox {
            position: fixed; inset: 0; z-index: 9999;
            background: rgba(0,0,0,0.92); backdrop-filter: blur(24px);
            display: none; align-items: center; justify-content: center; padding: 40px;
        }
        .lightbox.active { display: flex; }
        .lightbox-content {
            position: relative; max-width: 900px; width: 100%; max-height: 80vh;
            border-radius: 16px; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,0.4);
            animation: zoomIn 0.4s ease;
        }
        @keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .lightbox-content img { width: 100%; height: 100%; max-height: 80vh; object-fit: contain; }
        .lightbox-close {
            position: absolute; top: -50px; right: 0;
            background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15); color: #fff;
            width: 44px; height: 44px; border-radius: 50%;
            font-size: 1.3rem; cursor: pointer; transition: all 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }
        .lightbox-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15); color: #fff;
            width: 46px; height: 46px; border-radius: 50%;
            font-size: 1.1rem; cursor: pointer; transition: all 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .lightbox-nav:hover { background: rgba(255,255,255,0.15); }
        .lightbox-nav.prev { left: -60px; }
        .lightbox-nav.next { right: -60px; }
        .lightbox-caption {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 18px 24px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: #fff; text-align: center;
        }
        .lightbox-caption h4 { font-size: 1.05rem; font-weight: 600; }
        .lightbox-caption p { font-size: 0.85rem; opacity: 0.75; }
        .lightbox-counter {
            position: absolute; top: -50px; left: 0;
            color: rgba(255,255,255,0.5); font-size: 0.8rem;
        }

        /* â”€â”€ EVENTS â”€â”€ */
        .events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; margin-top: 10px; }
        .event-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 24px;
            overflow: hidden; transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
            box-shadow: 0 4px 24px rgba(0,0,0,0.02); display: flex; flex-direction: column;
        }
        .event-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(0,0,0,0.04); border-color: rgba(196,154,108,0.1); }
        .event-card .event-image { height: 200px; overflow: hidden; position: relative; }
        .event-card .event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .event-card:hover .event-image img { transform: scale(1.05); }
        .event-card .event-badge {
            position: absolute; top: 14px; right: 14px;
            background: linear-gradient(135deg, #c49a6c, #b0885a);
            backdrop-filter: blur(8px); padding: 5px 14px; border-radius: 50px;
            color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
        }
        .event-card .event-badge.upcoming { background: linear-gradient(135deg, #c49a6c, #b0885a); }
        .event-card .event-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
        .event-card .event-date { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .event-card .event-date .date-box {
            background: linear-gradient(135deg, #f5d6a8, #e8c492);
            border-radius: 12px; padding: 4px 14px; text-align: center; min-width: 52px; flex-shrink: 0;
        }
        .event-card .event-date .date-box .day { font-size: 1.3rem; font-weight: 800; color: #1a2a1e; line-height: 1.2; }
        .event-card .event-date .date-box .month { font-size: 0.55rem; font-weight: 600; color: #1a2a1e; text-transform: uppercase; letter-spacing: 0.5px; }
        .event-card .event-date .date-info { font-size: 0.85rem; color: #4a5a4e; }
        .event-card .event-date .date-info .time { display: block; font-weight: 500; color: #1a2a1e; }
        .event-card h3 { font-size: 1.2rem; font-weight: 700; color: #1a2a1e; margin-bottom: 4px; }
        .event-card .event-location { color: #6b7b6e; font-size: 0.82rem; margin-bottom: 8px; }
        .event-card .event-location i { color: #c49a6c; margin-right: 6px; }
        .event-card p { color: #3a4a3e; font-size: 0.92rem; flex: 1; margin-bottom: 14px; }
        .event-card .event-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.04); }
        .event-card .event-footer .price { font-weight: 700; color: #2d5e3d; font-size: 0.95rem; }
        .event-card .event-footer .price span { font-weight: 400; color: #6b7b6e; font-size: 0.75rem; }

        .past-events-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 10px; }
        .past-event-item {
            background: rgba(255,255,255,0.6); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.3); border-radius: 16px;
            padding: 16px 22px; display: flex; align-items: center; gap: 14px;
            transition: all 0.3s ease; opacity: 0.6;
        }
        .past-event-item:hover { opacity: 1; transform: translateX(4px); background: rgba(255,255,255,0.85); }
        .past-event-item .past-date {
            background: #ede8e2; border-radius: 10px; padding: 4px 12px;
            text-align: center; min-width: 44px; flex-shrink: 0;
        }
        .past-event-item .past-date .day { font-size: 1rem; font-weight: 700; color: #1a2a1e; line-height: 1.2; }
        .past-event-item .past-date .month { font-size: 0.5rem; font-weight: 600; color: #4a5a4e; text-transform: uppercase; }
        .past-event-item .past-info h4 { font-size: 0.95rem; font-weight: 600; color: #1a2a1e; }
        .past-event-item .past-info p { font-size: 0.75rem; color: #6b7b6e; }

        /* â”€â”€ ATTENDEE â”€â”€ */
        .exam-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; margin: 20px 0 40px; }
        .stat-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 20px;
            padding: 22px 18px; text-align: center; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
        }
        .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.04); }
        .stat-card .stat-icon { font-size: 2.2rem; color: #c49a6c; margin-bottom: 6px; }
        .stat-card .stat-number { font-size: 2.2rem; font-weight: 800; color: #1a2a1e; }
        .stat-card .stat-label { font-size: 0.85rem; color: #6b7b6e; }

        .schedule-table-wrap, .attendee-table-wrap, .programs-table-wrap {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 24px;
            padding: 18px 0; overflow-x: auto; box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            transition: all 0.4s ease; margin-bottom: 36px;
        }
        .schedule-table-wrap:hover, .attendee-table-wrap:hover, .programs-table-wrap:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.04); }
        .schedule-table, .attendee-table, .programs-table { width: 100%; border-collapse: collapse; }
        .schedule-table thead, .attendee-table thead, .programs-table thead { background: rgba(245,240,235,0.6); }
        .schedule-table th, .attendee-table th, .programs-table th { padding: 12px 20px; text-align: left; font-weight: 700; color: #1a2a1e; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
        .schedule-table td, .attendee-table td, .programs-table td { padding: 10px 20px; border-bottom: 1px solid rgba(0,0,0,0.03); font-size: 0.88rem; color: #2a3a2e; }
        .schedule-table tr:last-child td, .attendee-table tr:last-child td, .programs-table tr:last-child td { border-bottom: none; }
        .schedule-table tr:hover td, .attendee-table tr:hover td, .programs-table tr:hover td { background: rgba(245,214,168,0.04); }
        
        .schedule-table .status-badge, .programs-table .status-badge { display: inline-block; padding: 2px 14px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
        .schedule-table .status-badge.upcoming, .programs-table .status-badge.upcoming { background: #f5d6a8; color: #1a2a1e; }
        .schedule-table .status-badge.ongoing, .programs-table .status-badge.ongoing { background: #2d5e3d; color: #fff; }
        .schedule-table .status-badge.completed, .programs-table .status-badge.completed { background: #e8e0d8; color: #4a5a4e; }
        
        .attendee-table .avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #f5d6a8, #e8c492); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7rem; color: #1a2a1e; margin-right: 8px; }
        .attendee-table .status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
        .attendee-table .status-dot.present { background: #2d5e3d; }
        .attendee-table .status-dot.absent { background: #c49a6c; }
        .attendee-table .status-dot.pending { background: #f5d6a8; }

        /* ── SEARCH BAR ── */
        .search-wrapper {
            margin: 30px auto 40px;
            max-width: 600px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 50px;
            padding: 6px 10px 6px 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .search-box:focus-within {
            border-color: #c49a6c;
            box-shadow: 0 8px 32px rgba(196,154,108,0.1);
            background: #fff;
        }
        .search-box i {
            font-size: 1.1rem;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            background: transparent;
            font-size: 0.95rem;
            color: #1a2a1e;
            outline: none;
            padding: 8px 0;
        }
        .search-box button {
            background: #2d5e3d;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(45,94,61,0.2);
        }
        .search-box button:hover {
            background: #234930;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(45,94,61,0.3);
        }

        /* â”€â”€ FORMS â”€â”€ */
        .form-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 28px;
            padding: 38px 44px; max-width: 760px; margin: 0 auto;
            box-shadow: 0 8px 48px rgba(0,0,0,0.02); transition: all 0.4s ease;
        }
        .form-card:hover { transform: translateY(-4px); box-shadow: 0 16px 64px rgba(0,0,0,0.04); }
        .form-card h3 { font-size: 1.5rem; font-weight: 700; color: #1a2a1e; text-align: center; margin-bottom: 4px; }
        .form-card h3 span { color: #c49a6c; }
        .form-card .form-sub { text-align: center; color: #6b7b6e; margin-bottom: 24px; font-size: 0.92rem; }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: #1a2a1e; margin-bottom: 4px; }
        .form-group label .required { color: #c49a6c; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 18px; border: 1px solid rgba(0,0,0,0.06);
            border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 0.92rem;
            color: #1a2a1e; background: rgba(255,255,255,0.6); transition: all 0.3s ease; outline: none;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #c49a6c; box-shadow: 0 0 0 4px rgba(196,154,108,0.08);
            background: rgba(255,255,255,0.9);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .form-card .btn-primary { width: 100%; padding: 14px; font-size: 0.95rem; }
        .form-section { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.04); }
        .form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
        .form-section-title { font-size: 1.1rem; font-weight: 700; color: #1a2a1e; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
        .form-section-title i { color: #c49a6c; font-size: 1.1rem; }
        .checkbox-group, .radio-group { display: flex; flex-wrap: wrap; gap: 14px 20px; padding-top: 4px; }
        .checkbox-group label, .radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.88rem; color: #1a2a1e; cursor: pointer; }
        .checkbox-group input[type="checkbox"], .radio-group input[type="radio"] { width: 18px; height: 18px; accent-color: #c49a6c; cursor: pointer; flex-shrink: 0; }
        .terms-group { margin-top: 10px; padding: 14px 18px; background: rgba(245,214,168,0.06); border-radius: 12px; }
        .terms-group label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 0.88rem; color: #1a2a1e; cursor: pointer; }
        .terms-group label input[type="checkbox"] { width: 18px; height: 18px; accent-color: #c49a6c; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
        #formSuccess, #contactSuccess { display: none; text-align: center; padding: 28px 20px; background: rgba(45,94,61,0.06); border-radius: 16px; margin-top: 20px; }
        #formSuccess i, #contactSuccess i { font-size: 2.8rem; color: #2d5e3d; display: block; margin-bottom: 10px; }
        #formSuccess h4, #contactSuccess h4 { font-size: 1.3rem; color: #2d5e3d; font-weight: 700; margin-bottom: 4px; }
        #formSuccess p, #contactSuccess p { color: #4a5a4e; font-size: 0.95rem; }

        /* â”€â”€ CONTACT â”€â”€ */
        .contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin: 20px 0 36px; }
        .contact-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 20px;
            padding: 26px 22px; text-align: center; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(0,0,0,0.02);
        }
        .contact-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(0,0,0,0.04); border-color: rgba(196,154,108,0.1); }
        .contact-card .card-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(245,214,168,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.5rem; color: #c49a6c; transition: background 0.3s; }
        .contact-card:hover .card-icon { background: rgba(245,214,168,0.3); }
        .contact-card h4 { font-size: 1.05rem; font-weight: 700; color: #1a2a1e; margin-bottom: 2px; }
        .contact-card p { color: #4a5a4e; font-size: 0.88rem; }
        .contact-card a { color: #4a5a4e; text-decoration: none; transition: color 0.3s; }
        .contact-card a:hover { color: #c49a6c; }

        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; margin: 20px 0 40px; }
        .map-card {
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 28px;
            padding: 6px; box-shadow: 0 8px 48px rgba(0,0,0,0.02);
            transition: all 0.4s ease; overflow: hidden;
        }
        .map-card:hover { transform: translateY(-4px); box-shadow: 0 16px 64px rgba(0,0,0,0.04); }
        .map-card iframe { width: 100%; height: 100%; min-height: 380px; border-radius: 22px; border: none; display: block; }

        .social-links-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 10px 0 36px; }
        .social-link-item {
            width: 68px; height: 68px; border-radius: 50%;
            background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center;
            justify-content: center; font-size: 1.8rem; color: #1a2a1e;
            transition: all 0.4s ease; text-decoration: none; box-shadow: 0 4px 24px rgba(0,0,0,0.02);
        }
        .social-link-item:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 12px 48px rgba(0,0,0,0.04); }
        .social-link-item.facebook:hover { color: #1877f2; border-color: #1877f2; }
        .social-link-item.instagram:hover { color: #e4405f; border-color: #e4405f; }
        .social-link-item.youtube:hover { color: #ff0000; border-color: #ff0000; }
        .social-link-item.twitter:hover { color: #1da1f2; border-color: #1da1f2; }
        .social-link-item.linkedin:hover { color: #0a66c2; border-color: #0a66c2; }

        /* â”€â”€ FOOTER â”€â”€ */
        .site-footer {
            background: linear-gradient(145deg, #1a2a1e, #0f1f13);
            color: #cbd5d0; padding: 56px 0 32px; margin-top: 40px;
            border-top: 4px solid #c49a6c;
        }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; text-align: left; }
        .footer-grid h4 { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 0.5px; }
        .footer-grid p { color: #8a9a8e; font-size: 0.9rem; }
        .footer-grid a { color: #8a9a8e; text-decoration: none; display: block; margin: 5px 0; transition: all 0.3s ease; font-size: 0.85rem; cursor: pointer; }
        .footer-grid a:hover { color: #f5d6a8; transform: translateX(4px); }
        .footer-social { display: flex; gap: 12px; margin-top: 12px; }
        .footer-social a { font-size: 1.2rem; color: #8a9a8e; transition: all 0.3s ease; display: inline-block; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; text-decoration: none; }
        .footer-social a:hover { color: #f5d6a8; background: rgba(245,214,168,0.08); transform: translateY(-3px); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; margin-top: 32px; font-size: 0.8rem; color: #6a7a6e; }
        .footer-bottom a { color: #f5d6a8; text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; }

        .scroll-top {
            position: fixed; bottom: 30px; right: 30px;
            background: linear-gradient(135deg, #2d5e3d, #1a472a);
            color: #fff; width: 48px; height: 48px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; text-decoration: none;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
            box-shadow: 0 4px 24px rgba(45,94,61,0.2); z-index: 999;
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 32px rgba(45,94,61,0.3); }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            /* obsolete: .nav-links a { font-size: 0.7rem; } */
            /* obsolete: .nav-links { gap: 12px; } */
            .hero-content h1 { font-size: 3.4rem; }
            .page-hero-content h1 { font-size: 3rem; }
            .lightbox-nav.prev { left: -20px; }
            .lightbox-nav.next { right: -20px; }
        }

        @media (max-width: 1024px) {
            .mobile-menu-toggle {
                display: flex; /* Show hamburger toggle */
                order: 3 !important;
                margin-left: 14px !important;
            }
            
            .header-inner { 
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                justify-content: space-between !important;
                align-items: center !important;
                padding: 0 16px !important;
            }
            
            .logo {
                margin-right: auto !important;
            }
            
            .btn-primary {
                order: 2 !important;
            }
            
            .weather-temp {
                display: none !important; /* Hide weather temp on mobile to save space */
            }

            /* Convert nav-links to a premium sliding side drawer */
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 290px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                box-shadow: -10px 0 40px rgba(26,42,30,0.15);
                flex-direction: column;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                padding: 90px 30px 40px;
                gap: 8px;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
                z-index: 999;
                overflow-y: auto;
                margin: 0;
                border-left: 1px solid rgba(0,0,0,0.05);
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links > li {
                width: 100%;
                margin: 0;
            }
            .nav-links a {
                font-size: 0.9rem !important;
                font-weight: 700;
                display: block;
                padding: 10px 14px;
                color: #1a2a1e !important;
                width: 100%;
                border-radius: 8px;
                transition: all 0.3s;
                text-align: left;
            }
            .nav-links a:hover, .nav-links a.active-page {
                background: rgba(196, 154, 108, 0.08);
                color: #c49a6c !important;
                padding-left: 20px;
            }
            .nav-links a::after {
                display: none !important;
            }

            /* Dropdowns in Mobile Menu Drawer */
            .dropdown-menu {
                position: static !important;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                display: none;
                max-height: none !important;
                box-shadow: none !important;
                background: rgba(0,0,0,0.02) !important;
                border-left: 2px solid #c49a6c !important;
                margin: 6px 0 6px 14px !important;
                width: calc(100% - 14px) !important;
                border-radius: 8px !important;
                padding: 4px 0 !important;
            }
            .dropdown-menu.open {
                display: block;
            }
            .dropdown-menu a {
                font-size: 0.8rem !important;
                padding: 8px 16px !important;
                text-transform: capitalize;
            }
            .dropdown-menu a:hover {
                padding-left: 22px !important;
                background: rgba(196, 154, 108, 0.05) !important;
            }
            
            .dropdown-toggle .fa-chevron-down {
                float: right;
                margin-top: 6px;
                transition: transform 0.3s;
            }
            .dropdown-toggle.open .fa-chevron-down {
                transform: rotate(180deg);
            }

            /* Adjust header items positions */
            .weather-temp { 
                margin-left: auto;
                margin-right: 12px;
                font-size: 0.7rem; 
                padding: 4px 10px;
                border-radius: 30px;
            }
            .btn-primary { 
                font-size: 0.7rem; 
                padding: 7px 16px; 
            }

            .hero-content h1 { font-size: 2.6rem; }
            .hero-content .tagline { font-size: 1.1rem; letter-spacing: 2px; }
            .page-hero-content h1 { font-size: 2.4rem; }
            .page-hero-content p { font-size: 1rem; }
            .section-title { font-size: 2rem; }
            .section-sub { font-size: 0.95rem; margin-bottom: 32px; }
            
            .about-box { padding: 28px 24px; }
            .about-box p { font-size: 1rem; }
            .about-content-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
            .mission-vision { grid-template-columns: 1fr; gap: 20px; }
            
            .team-grid, .trustee-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
            .team-card img, .trustee-card img { width: 100px; height: 100px; }
            .team-card h4, .trustee-card h4 { font-size: 1rem; }
            
            .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .benefit-card { padding: 22px 18px; }
            .benefit-card h3 { font-size: 1rem; }
            
            .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
            .filter-btn { padding: 6px 16px; font-size: 0.75rem; }
            
            .events-grid { grid-template-columns: 1fr; gap: 24px; }
            .event-card .event-body { padding: 20px; }
            .past-events-list { grid-template-columns: 1fr; }
            
            .form-card { padding: 24px 20px; }
            .form-card h3 { font-size: 1.3rem; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            
            .contact-grid { grid-template-columns: 1fr; gap: 24px; }
            .map-card iframe { min-height: 250px; }
            .contact-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
            .contact-card { padding: 20px 16px; }
            .contact-card .card-icon { width: 52px; height: 52px; font-size: 1.3rem; }
            
            .social-link-item { width: 56px; height: 56px; font-size: 1.5rem; }
            .social-links-grid { gap: 14px; }
            
            .footer-grid { text-align: center; gap: 28px; }
            .footer-social { justify-content: center; }
            
            .logo a { font-size: 1.15rem; }
            .logo img { height: 38px; width: 38px; }
            .scroll-indicator { display: none; }
            .about-wrapper { padding: 50px 0 20px; }
            
            /* Custom styled responsive scrollbars for tables on mobile */
            .schedule-table-wrap, .attendee-table-wrap { 
                overflow-x: auto; 
                padding: 10px 0; 
                -webkit-overflow-scrolling: touch;
            }
            .schedule-table-wrap::-webkit-scrollbar, .attendee-table-wrap::-webkit-scrollbar {
                height: 5px;
            }
            .schedule-table-wrap::-webkit-scrollbar-thumb, .attendee-table-wrap::-webkit-scrollbar-thumb {
                background-color: rgba(196,154,108,0.3);
                border-radius: 4px;
            }
            .schedule-table th, .schedule-table td, .attendee-table th, .attendee-table td { 
                padding: 10px 14px; 
                font-size: 0.8rem; 
                white-space: nowrap; 
            }
            .exam-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
            .stat-card .stat-number { font-size: 1.8rem; }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 0;
            }
            .logo a {
                display: none; /* Hide logo text on extremely small mobile screens to keep layout clean */
            }
            .weather-temp {
                font-size: 0.65rem;
                padding: 3px 8px;
                margin-right: 8px;
            }
            .benefits-grid, .team-grid, .trustee-grid, .contact-cards, .exam-stats { 
                grid-template-columns: 1fr; 
            }
            .hero-content h1 { font-size: 2.1rem; }
            .section-title { font-size: 1.7rem; }
            .page-hero-content h1 { font-size: 1.9rem; }
            .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
            .event-card .event-footer { flex-direction: column; align-items: stretch; gap: 8px; }
            .event-card .event-footer .btn-secondary { text-align: center; }
            .social-link-item { width: 48px; height: 48px; font-size: 1.25rem; }
        }

        /* ── EMPTY STATE & NOTIFY CARD ── */
        .empty-state, .notify-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 28px;
            padding: 40px 30px;
            text-align: center;
            max-width: 700px;
            margin: 20px auto 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.02);
            transition: all 0.4s ease;
        }
        .empty-state:hover, .notify-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.04);
            border-color: rgba(196,154,108,0.1);
        }
        .empty-state i, .notify-card i {
            font-size: 2.8rem;
            color: #c49a6c;
            margin-bottom: 16px;
            display: block;
        }
        .empty-state h3, .notify-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a2a1e;
            margin-bottom: 8px;
        }
        .empty-state p, .notify-card p {
            color: #6b7b6e;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ── MAP CARD & CONTACT EXTRA ELEMENTS ── */
        .map-card {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 14px !important;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 28px;
            box-shadow: 0 8px 48px rgba(0,0,0,0.02);
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .map-photo {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.4s ease;
        }
        .map-card:hover .map-photo {
            transform: scale(1.02);
        }
        .map-info {
            padding: 6px;
            font-size: 0.9rem;
            color: #4a5a4e;
        }
        .map-hours {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: 10px;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 10px;
        }
        .hours-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #5a6a5e;
        }
        .hours-row span:first-child {
            font-weight: 600;
            color: #1a2a1e;
        }
        .map-card iframe {
            width: 100%;
            height: 300px !important;
            border-radius: 20px !important;
            border: none;
            display: block;
        }

        /* ── SAVE INFO CHECKBOX ── */
        .save-info-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 22px;
            padding: 2px 4px;
        }
        .save-info-group input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #c49a6c;
            margin-top: 3px;
            flex-shrink: 0;
            cursor: pointer;
        }
        .save-info-group label {
            font-size: 0.82rem;
            color: #5a6a5e;
            line-height: 1.4;
            cursor: pointer;
            font-weight: 500;
            text-align: left;
        }
