       :root {
            --primary-color: #4fc3f7; /* Biru langit */
            --secondary-color: #1e88e5; /* Biru lebih gelap untuk kontras */
            --accent-color: #81d4fa; /* Biru langit lebih terang */
            --light-color: #f8f9fa;
            --dark-color: #0d1b2a;
            --yellow-color: #ffeb3b; /* Kuning telor */
            --yellow-dark: #fbc02d; /* Kuning lebih gelap */
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --glow: 0 0 15px rgba(79, 195, 247, 0.4);
            --border-radius: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }

        /* Custom Cursor dengan angka 53 - WARNA SUDAH DIPERBAIKI */
        .custom-cursor {
            position: fixed;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(30, 136, 229, 0.9); /* Biru gelap */
            color: white;
            font-weight: bold;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
            box-shadow: 0 0 10px rgba(30, 136, 229, 0.7);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            border: 2px solid white;
        }

        .cursor-trail {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(30, 136, 229, 0.5);
            pointer-events: none;
            z-index: 9998;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        /* Header & Navigation */
        header {
            background-color: var(--primary-color);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1100; /* Ditingkatkan dari 1000 */
            width: 100%;
            max-width: 100vw;
            overflow: visible; /* Diubah dari hidden ke visible */
        }

        .top-header {
            background-color: var(--yellow-color);
            color: #333;
            padding: 8px 0;
            font-size: 14px;
            width: 100%;
            position: relative;
            z-index: 1101; /* Lebih tinggi dari header */
            overflow: hidden;
        }

        .top-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            position: relative;
        }

        /* FITUR 1: TULISAN BERJALAN */
        .marquee-container {
            flex: 1;
            min-width: 200px;
            overflow: hidden;
            position: relative;
            height: 24px;
            display: flex;
            align-items: center;
        }

        .marquee-content {
            position: absolute;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
            font-weight: 600;
            color: #d32f2f;
            display: flex;
            align-items: center;
        }

        .marquee-item {
            display: inline-block;
            margin: 0 40px;
            padding: 2px 10px;
            background-color: none;
            border-radius: 4px;
            box-shadow: none;
        }

        .marquee-item i {
            color: var(--secondary-color);
            margin-right: 8px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .contact-info span {
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 5px;
        }

        .social-icons a {
            color: #333;
            margin-left: 15px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        .main-header {
            padding: 15px 0;
            width: 100%;
            position: relative;
            z-index: 1100;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            gap: 20px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            flex: 1;
            min-width: 250px;
        }

        /* PERBAIKAN LOGO SEKOLAH: UKURAN SAMA DENGAN EDUCATION LOGO */
        .school-logo {
            width: 77px; /* SAMA DENGAN EDUCATION LOGO */
            height: 77px; /* SAMA DENGAN EDUCATION LOGO */
            overflow: hidden;
            margin-right: 10px;
            border: none;
            box-shadow: none;
            transition: none;
            background: none;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 60px; /* SAMA DENGAN EDUCATION LOGO */
        }

        .school-logo:hover {
            box-shadow: 0 0 25px rgba(129, 212, 250, 0.8);
        }

        .school-logo img {
            width: 120%;
            height: 120%;
            object-fit: contain; /* Menggunakan contain untuk logo */
        }

        .school-info h1 {
            font-size: 22px;
            color: white;
            line-height: 1.3;
        }

        .school-info h2 {
            font-size: 14px;
            color: #ecf0f1;
            font-weight: 400;
        }

        /* Education Logos */
        .education-logos {
            display: flex;
            align-items: center;
            flex: 2;
            justify-content: center;
            min-width: 500px;
        }

        .logo-item {
            width: 75px;
            height: 75px;
            margin: 5 5px;
            border-radius: 5px;
            overflow: hidden;
            background: none;
            padding: 0px;
            box-shadow: none;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: none;
        }

        .logo-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Navigation - DESKTOP */
        nav {
            flex: 3;
            min-width: 400px;
            max-width: 100%;
            box-sizing: border-box;
            position: relative;
            z-index: 1102; /* Lebih tinggi dari header */
        }

        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: nowrap;
            justify-content: flex-end;
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
            position: relative;
            z-index: 1102;
        }

        nav ul li {
            position: relative;
            margin: 0 2px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 10px 12px;
            display: block;
            transition: all 0.3s ease;
            border-radius: var(--border-radius);
            font-weight: 500;
            font-size: 13px;
            white-space: nowrap;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        nav ul li a.active {
            background-color: var(--secondary-color);
        }

        nav ul li a i {
            font-size: 10px;
            margin-left: 3px;
        }

        /* ============ PERBAIKAN UTAMA: DROPDOWN MENU DESKTOP ============ */
        .dropdown-menu {
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1200; /* SANGAT TINGGI - DIATAS SEMUA ELEMENT LAIN */
            top: 100%;
            left: 0;
            display: block !important;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li a {
            color: var(--dark-color);
            padding: 10px 15px;
            font-size: 12px;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
            color: var(--secondary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            margin-left: 10px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
            margin-bottom: 40px;
            width: 100%;
            max-width: 100vw;
            z-index: 1; /* LEBIH RENDAH DARI MENU (1100) */
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
            z-index: 2;
        }

        .hero-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            z-index: 3;
            position: relative;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .hero-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-btn:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: white;
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 3;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--yellow-color);
        }

        /* Main Content */
        main {
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            box-sizing: border-box;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 32px;
            color: var(--secondary-color);
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--yellow-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            width: 100%;
        }

        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-img {
            height: 200px;
            overflow: hidden;
            width: 100%;
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 25px;
        }

        .feature-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .feature-content p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        /* News Section */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            width: 100%;
        }

        .news-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-img {
            height: 220px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--yellow-color);
            color: #333;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
        }

        .news-content {
            padding: 25px;
        }

        .news-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }

        .news-content p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .read-more {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: var(--primary-color);
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 250px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            width: 100%;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: var(--accent-color);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(41, 182, 246, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 36px;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 60px 0 20px;
            margin-top: 60px;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            width: 100%;
        }

        .footer-logo {
            width: 70px; /* SAMA DENGAN HEADER */
            height: 70px; /* SAMA DENGAN HEADER */
            border-radius: 5px; /* SAMA DENGAN HEADER */
            overflow: hidden;
            margin-bottom: 20px;
            border: 3px solid var(--accent-color);
            box-shadow: var(--glow);
            background: white;
            padding: 8px;
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-links h4, .footer-contact h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
        }

        .footer-links ul li a:hover {
            color: var(--yellow-color);
            padding-left: 5px;
        }

        .footer-links ul li a i {
            margin-right: 8px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--yellow-color);
            margin-top: 3px;
            min-width: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            width: 100%;
        }

        /* Button Effects */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn:hover {
            background-color: #1565c0;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .btn-accent {
            background-color: var(--yellow-color);
            color: #333;
            border: none;
        }

        .btn-accent:hover {
            background-color: var(--yellow-dark);
            color: #333;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-30 {
            margin-bottom: 30px;
        }

        .mb-40 {
            margin-bottom: 40px;
        }

        .mt-20 {
            margin-top: 20px;
        }

        .mt-40 {
            margin-top: 40px;
        }

        .shadow-effect {
            box-shadow: var(--shadow);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* ============ RESPONSIVE STYLES ============ */
        @media (max-width: 1200px) {
            .education-logos {
                order: 3;
                width: 100%;
                margin-top: 10px;
            }
            
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav {
                order: 4;
                width: 100%;
                margin-top: 15px;
                min-width: 100%;
            }
            
            nav ul {
                justify-content: center;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .marquee-container {
                order: 1;
                width: 100%;
                margin-bottom: 8px;
            }
        }

        @media (max-width: 992px) {
            .logo-container {
                min-width: auto;
            }
            
            /* ============ PERBAIKAN UTAMA: Z-INDEX MOBILE MENU ============ */
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                z-index: 1201; /* Lebih tinggi dari menu mobile */
            }
            
            nav ul {
                position: fixed;
                top: 130px; /* Sesuaikan dengan tinggi header */
                left: 0;
                flex-direction: column;
                width: 100%;
                display: none;
                background-color: var(--primary-color);
                padding: 0;
                margin: 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                max-height: calc(100vh - 130px);
                overflow-y: auto;
                z-index: 1200; /* LEBIH TINGGI DARI SLIDER DAN ELEMENT LAIN */
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                width: 100%;
                margin: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            nav ul li:last-child {
                border-bottom: none;
            }
            
            nav ul li a {
                padding: 16px 20px;
                border-bottom: none;
                font-size: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                white-space: normal;
                border-radius: 0;
            }
            
            /* DROPDOWN MOBILE - TURUN KE BAWAH */
            .dropdown-menu {
                position: static !important;
                background-color: rgba(0, 0, 0, 0.2) !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                display: none !important;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                width: 100% !important;
                min-width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
                z-index: 1201 !important; /* LEBIH TINGGI DARI MENU UTAMA */
            }
            
            .dropdown.active .dropdown-menu {
                display: block !important;
                max-height: 400px;
            }
            
            .dropdown-menu li {
                width: 100%;
            }
            
            .dropdown-menu li a {
                color: white !important;
                padding: 14px 20px 14px 35px !important;
                font-size: 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                display: block;
                white-space: normal;
                position: relative;
            }
            
            .dropdown-menu li a:before {
                content: "›";
                position: absolute;
                left: 20px;
                color: var(--yellow-color);
                font-weight: bold;
            }
            
            .dropdown-menu li a:hover {
                background-color: rgba(255, 255, 255, 0.1);
                color: var(--yellow-color) !important;
            }
            
            /* Icon panah untuk dropdown */
            .dropdown > a i.fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active > a i.fa-chevron-down {
                transform: rotate(180deg);
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .features, .news-grid {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-wrap: wrap;
                position: relative;
            }
            
            .education-logos {
                order: 0;
                width: auto;
                margin-top: 0;
                margin-bottom: 15px;
            }
            
            .marquee-container {
                height: 20px;
            }
            
            .marquee-item {
                font-size: 12px;
                margin: 0 20px;
                padding: 1px 6px;
            }
            
            /* Responsive Logo Sekolah */
            .school-logo {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .top-header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info span {
                display: block;
                margin-right: 0;
                margin-bottom: 5px;
            }
            
            .social-icons {
                margin-top: 10px;
            }
            
            .education-logos {
                justify-content: center;
                margin: 15px 0;
            }
            
            .logo-item {
                width: 35px;
                height: 35px;
                margin: 0 5px;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .custom-cursor {
                display: none;
            }
            
            body {
                cursor: auto;
            }
            
            .container {
                padding: 0 10px;
            }
            
            /* Mobile menu position */
            nav ul {
                top: 120px;
            }
            
            .marquee-container {
                height: 18px;
                margin-bottom: 5px;
            }
            
            .marquee-item {
                font-size: 11px;
                margin: 0 15px;
            }
            
            /* Responsive Logo Sekolah */
            .school-logo {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .school-info h1 {
                font-size: 20px;
            }
            
            .school-info h2 {
                font-size: 14px;
            }
            
            .education-logos {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            
            .logo-item {
                width: 40px;
                height: 40px;
                margin: 0 auto;
            }
            
            .hero {
                height: 350px;
            }
            
            .hero-content h1 {
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 8px;
            }
            
            /* Dropdown untuk mobile kecil */
            .dropdown-menu li a {
                padding: 12px 20px 12px 30px !important;
                font-size: 13px;
            }
            
            nav ul {
                top: 110px;
            }
            
            .marquee-container {
                display: none; /* Sembunyikan marquee di mobile sangat kecil */
            }
            
            /* Responsive Logo Sekolah */
            .school-logo {
                width: 40px;
                height: 40px;
                margin-right: 10px;
            }
            
            .school-info h1 {
                font-size: 18px;
            }
            
            .footer-logo {
                width: 50px;
                height: 50px;
            }
        }
		        .teacher-categories {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .category-btn {
            padding: 12px 25px;
            background: #f8f9fa;
            border: 2px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .category-btn.active {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        .teacher-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 5px 0;
}

.teacher-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    height: auto;
    display: flex;
    flex-direction: column;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.teacher-photo {
    height: 130px; /* Dikecilkan */
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ganti dari contain ke cover */
    object-position: center top;
    transition: transform 0.4s ease;
}

.teacher-card:hover .teacher-photo img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 12px 10px 15px; /* Padding dikurangi */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.teacher-name {
    font-size: 13px; /* Ukuran font dikurangi */
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.teacher-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 11px; /* Ukuran font dikurangi */
    line-height: 1.2;
}

.teacher-subject {
    color: #666;
    font-size: 10px; /* Ukuran font dikurangi */
    margin-bottom: 8px;
    font-style: italic;
}

.teacher-info p {
    color: #555;
    font-size: 10px; /* Ukuran font dikurangi */
    line-height: 1.3;
    margin-bottom: 10px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Batasi jumlah baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.teacher-contact {
    display: flex;
    justify-content: center;
    gap: 6px; /* Gap dikurangi */
    margin-top: 8px;
}

.teacher-contact a {
    width: 26px; /* Ukuran icon dikurangi */
    height: 26px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 11px; /* Ukuran font icon dikurangi */
}

.teacher-contact a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments untuk teacher card */
@media (max-width: 992px) {
    .teacher-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .teacher-photo {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .teacher-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .teacher-photo {
        height: 110px;
    }
    
    .teacher-name {
        font-size: 12px;
    }
    
    .teacher-info {
        padding: 10px 8px 12px;
    }
}

@media (max-width: 576px) {
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .teacher-photo {
        height: 100px;
    }
    
    .teacher-name {
        font-size: 11px;
    }
    
    .teacher-position {
        font-size: 10px;
    }
    
    .teacher-subject {
        font-size: 9px;
    }
    
    .teacher-info p {
        font-size: 9px;
        -webkit-line-clamp: 2;
    }
    
    .teacher-contact a {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .teacher-photo {
        height: 90px;
    }
    
    .teacher-info {
        padding: 8px 6px 10px;
    }
}

/* ===== STAFF SECTION ===== */
.staff-section {
    margin: 60px 0;
}

.staff-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.staff-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.staff-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--accent-color);
}

.staff-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.staff-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* ===== DEPARTMENT SECTION ===== */
.department-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.department-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.department-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.department-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.department-card h3 i {
    font-size: 20px;
}

.department-card p {
    text-align: left;
    margin-bottom: 15px;
    font-size: 14px;
}

.department-card ul {
    list-style: none;
    padding-left: 20px;
}

.department-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    position: relative;
}

.department-card ul li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}
        
        @media (max-width: 768px) {
            .teacher-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .staff-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
		        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin: 40px 0;
        }
        
        .contact-info-card {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .department-contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .department-card {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .department-card:hover {
            transform: translateY(-5px);
        }
        
        .opening-hours {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        
        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .hours-table tr {
            border-bottom: 1px solid #ddd;
        }
        
        .hours-table tr:last-child {
            border-bottom: none;
        }
        
        .hours-table td {
            padding: 15px 0;
        }
        
        .hours-table td:first-child {
            font-weight: 600;
            width: 40%;
        }
		        .principal-profile {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            margin: 40px 0;
            align-items: start;
        }
        
        .principal-photo {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .principal-photo img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .principal-badge {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 35, 126, 0.9);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .welcome-message {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
            border-left: 5px solid var(--accent-color);
        }
        
        .welcome-message:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(57, 73, 171, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .vision-mission-personal {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        
        .career-timeline {
            margin: 40px 0;
        }
        
        .career-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px dashed #ddd;
        }
        
        .career-year {
            background: var(--accent-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            min-width: 100px;
            text-align: center;
        }
        
        .awards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .award-card {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .award-card:hover {
            transform: translateY(-5px);
        }
        
        .award-icon {
            font-size: 40px;
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .contact-principal {
            background: var(--primary-color);
            color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }
		        .map-container {
            margin: 40px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
            position: relative;
        }
        
        .location-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .info-card {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .transportation {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .transport-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: var(--border-radius);
            transition: transform 0.3s ease;
        }
        
        .transport-item:hover {
            transform: translateX(10px);
            background: var(--light-color);
        }
        
        .transport-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .direction-steps {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .contact-map {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--light-color);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
        }
        
        .contact-map i {
            color: var(--accent-color);
            font-size: 24px;
        }
		        .school-profile {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }
        
        .profile-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .profile-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .profile-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .stat-icon {
            font-size: 40px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #666;
            font-size: 16px;
        }
        
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .facility-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .facility-img {
            height: 200px;
            overflow: hidden;
        }
        
        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .facility-card:hover .facility-img img {
            transform: scale(1.1);
        }
        
        .facility-content {
            padding: 25px;
        }
        
        .facility-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .accreditation-badge {
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        
        .accreditation-badge h2 {
            font-size: 36px;
            margin-bottom: 10px;
        }
		        .history-timeline {
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
        }
        
        .history-timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--accent-color);
        }
        
        .timeline-item {
            margin-bottom: 50px;
            position: relative;
            width: 50%;
            padding: 0 40px;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .timeline-year {
            position: absolute;
            top: -20px;
            background: var(--accent-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            right: -20px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -20px;
        }
        
        .timeline-icon {
            position: absolute;
            top: 0;
            width: 40px;
            height: 40px;
            background: white;
            border: 4px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 18px;
        }
        
        .timeline-item:nth-child(odd) .timeline-icon {
            right: -22px;
        }
        
        .timeline-item:nth-child(even) .timeline-icon {
            left: -22px;
        }
        
        .history-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        
        .vision-mission {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border-left: 5px solid var(--accent-color);
        }
        
        .vision-mission h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        @media (max-width: 768px) {
            .history-timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 80px;
                padding-right: 20px;
            }
            
            .timeline-item:nth-child(odd) .timeline-year,
            .timeline-item:nth-child(even) .timeline-year {
                left: 80px;
                right: auto;
            }
            
            .timeline-icon {
                left: 20px !important;
                right: auto !important;
            }
        }
