/* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0b3b5e;
            --primary-dark: #082b44;
            --primary-light: #1a5a82;
            --secondary: #f39c12;
            --secondary-light: #f1c40f;
            --accent: #e74c3c;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --dark: #1a1a2e;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --radius: 16px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

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

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.35);
        }
        .btn-primary:hover {
            background: #e08e0b;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(243, 156, 18, 0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 6px 20px rgba(11, 59, 94, 0.3);
        }
        .btn-secondary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(11, 59, 94, 0.4);
        }

        /* ===== HEADER / NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(11, 59, 94, 0.95);
            backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 800;
            font-size: 1.3rem;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

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

        .nav-menu a:hover {
            color: var(--white);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a.btn-nav {
            color: var(--white);
            background: var(--secondary);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
        }
        .nav-menu a.btn-nav::after {
            display: none;
        }
        .nav-menu a.btn-nav:hover {
            background: #e08e0b;
            transform: translateY(-2px);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(ellipse at 70% 50%, rgba(243, 156, 18, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--white);
            letter-spacing: -1px;
        }

        .hero-content h1 span {
            color: var(--secondary);
            position: relative;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--secondary);
            border-radius: 4px;
            opacity: 0.3;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 20px 0 36px;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-stats .stat h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
        }

        .hero-stats .stat h3 span {
            color: var(--secondary);
        }

        .hero-stats .stat p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        /* Hero Image */
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image .image-wrapper {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1 / 1;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 40px;
            text-align: center;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
        }

        .hero-image .image-wrapper .big-icon {
            font-size: 5rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .hero-image .image-wrapper h3 {
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 700;
        }

        .hero-image .image-wrapper p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            margin-top: 4px;
        }

        .hero-image .image-wrapper .badge-list {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-image .image-wrapper .badge-list span {
            background: rgba(243, 156, 18, 0.2);
            color: var(--secondary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(243, 156, 18, 0.15);
        }

        /* ===== SECTION TITLE ===== */
        .section-title {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-title .label {
            display: inline-block;
            background: rgba(243, 156, 18, 0.12);
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .section-title h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--primary);
        }

        .section-title h2 span {
            color: var(--secondary);
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 12px auto 0;
            font-size: 1.05rem;
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 100px 0;
            background: var(--off-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--white);
            padding: 40px 32px;
            text-align: center;
            border: 1px solid var(--light-gray);
        }

        .about-image .about-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .about-image h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .about-image p {
            color: var(--gray);
        }

        .about-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .about-text p {
            color: var(--gray);
            margin-bottom: 16px;
            font-size: 1.02rem;
            line-height: 1.8;
        }

        .about-text .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
            margin-top: 20px;
        }

        .about-text .features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--dark);
        }

        .about-text .features li i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        /* ===== PROGRAMS ===== */
        .programs {
            padding: 100px 0;
            background: var(--white);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
            text-align: center;
        }

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

        .program-card .icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: rgba(11, 59, 94, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .program-card:hover .icon {
            background: var(--secondary);
            color: var(--white);
            transform: scale(1.05);
        }

        .program-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .program-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== FACILITIES ===== */
        .facilities {
            padding: 100px 0;
            background: var(--off-white);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
        }

        .facility-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
        }

        .facility-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .facility-item i {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .facility-item h5 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* ===== NEWS / ACTIVITIES ===== */
        .news {
            padding: 100px 0;
            background: var(--white);
        }

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

        .news-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
        }

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

        .news-card .news-img {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .news-card .news-img .date-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--secondary);
            color: var(--white);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .news-card .news-body {
            padding: 24px 28px 28px;
        }

        .news-card .news-body .tag {
            display: inline-block;
            background: rgba(243, 156, 18, 0.1);
            color: var(--secondary);
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 2px 14px;
            border-radius: 50px;
            margin-bottom: 8px;
        }

        .news-card .news-body h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .news-card .news-body p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== CONTACT ===== */
        .contact {
            padding: 100px 0;
            background: var(--off-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 32px;
            font-size: 1.02rem;
        }

        .contact-info .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-info .info-item i {
            width: 44px;
            height: 44px;
            background: var(--primary);
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-info .info-item .text h5 {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .contact-info .info-item .text p {
            color: var(--gray);
            margin: 0;
            font-size: 0.95rem;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
        }

        .contact-form h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .contact-form p {
            color: var(--gray);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .contact-form .form-group {
            margin-bottom: 18px;
        }

        .contact-form label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            display: block;
            margin-bottom: 4px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--light-gray);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--off-white);
            outline: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--secondary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form .btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand h4 {
            color: var(--white);
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .footer-brand h4 span {
            color: var(--secondary);
        }

        .footer-brand p {
            font-size: 0.95rem;
            max-width: 300px;
            line-height: 1.8;
        }

        .footer h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 16px;
            font-size: 1rem;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer ul li a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--white);
            font-size: 1.1rem;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom span {
            color: var(--secondary);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .about-grid {
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 900px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

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

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-text .features {
                justify-content: center;
            }

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

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

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 80px 32px 32px;
                gap: 20px;
                transition: var(--transition);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
                align-items: flex-start;
            }

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

            .nav-menu a {
                font-size: 1.1rem;
            }

            .nav-menu a.btn-nav {
                margin-top: 8px;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .hero-content h1 {
                font-size: 2.4rem;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .hero-stats .stat h3 {
                font-size: 1.8rem;
            }

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

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

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }

            .footer-social {
                justify-content: center;
            }
        }

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

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

            .contact-form {
                padding: 24px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-image .image-wrapper {
                padding: 24px;
            }

            .hero-image .image-wrapper .big-icon {
                font-size: 3.5rem;
            }

            .about-text .features {
                grid-template-columns: 1fr;
            }
        }

        /* ===== SCROLL ANIMATION (simple) ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }