/* ===================================================
   RESET & STYLE UTAMA (DESKTOP)
   =================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADER & NAVBAR LAPTOP */
header {
    background-color: #0A192F;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info {
    font-size: 16px;
    color: white;
    background-color: #071120;
    padding: 6px 0;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Sembunyikan Tombol Garis Tiga di Komputer */
.hamburger-icon {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: #F5A623;
}

.btn-ppdb {
    background-color: #F5A623;
    color: #0A192F !important;
    border-radius: 4px;
    font-weight: bold !important;
}

.btn-ppdb:hover {
    background-color: #fff;
}

/* Dropdown Menu Desktop */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0A192F;
    min-width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    color: #fff;
    padding: 12px 15px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #F5A623;
    color: #0A192F;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* KONTEN UTAMA FASILITAS */
.page-header {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #F5A623;
}

.page-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.sarana-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0;
}

.sarana-image {
    flex: 1;
}

.sarana-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.box-feature {
    flex: 1;
    background-color: #E8FFF2;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #08a2e9;
}

.box-feature h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #0323db;
    margin-bottom: 15px;
}

.box-feature p {
    font-size: 16px;
    line-height: 26px;
    color: #333;
}

.horizontal-feature {
    width: 100%;
    height: 4px;
    background: #08a2e9;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* FOOTER & WHATSAPP */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

footer {
    background-color: #0F172A;
    color: #94a3b8;
    padding: 40px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about, .footer-contact { flex: 1; min-width: 250px; }
.footer-grid h3 { color: #fff; margin-bottom: 20px; }
.footer-contact p { margin-bottom: 10px; }
.footer-contact i { margin-right: 10px; color: #F5A623; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 0.9rem;
}


/* =====================================================
   KHUSUS TAMPILAN HP (SAMA PERSIS DENGAN INDEX.PHP)
   ===================================================== */

@media screen and (max-width: 768px) {

    .navbar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 60px);
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .logo a {
        font-size: 18px;
        line-height: 1.2;
    }

    /* TOMBOL HAMBURGER HP */
    .hamburger-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
        z-index: 99999;
    }

    .hamburger-icon i {
        font-size: 28px;
        color: white;
    }

    /* MENU HP (DEFAULT SEMBUNYI) */
    .nav-menu {
        display: none !important;
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;
    }

    /* MENU SAAT DIBUKA */
    .nav-menu.mobile-open {
        display: block !important;
    }

    .nav-menu .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        margin: 0;
        list-style: none;
    }

    .nav-menu .nav-links > li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-links > li > a {
        display: block;
        width: 100%;
        padding: 12px 10px;
        color: #cbd5e1;
        text-decoration: none;
    }

    .nav-menu .btn-ppdb {
        display: inline-block !important;
        width: auto !important;
        padding: 10px 25px !important;
        margin: 5px auto;
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
    }

    /* DESAIN KONTEN FASILITAS HP */
    .sarana-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .sarana-image img {
        height: 220px;
    }

    .box-feature {
        padding: 20px;
        border-left: none;
        border-top: 5px solid #08a2e9;
    }

    .box-feature h2 {
        font-size: 20px;
        text-align: center;
    }

    .box-feature p {
        font-size: 14px;
        text-align: justify;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .footer-grid {
        flex-direction: column;
    }
}