* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.background {
    background-image: url(../logo/background.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 7%;
    background: rgba(3, 144, 10, 0.95);
    border-bottom: rgba(3, 144, 10, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10001;
}

.navbar img {
    height: 2.5rem;
    width: auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(7, 98, 11, 0.95);
    white-space: nowrap;
}

.navbar-logo span {
    color: rgba(3, 144, 10, 0.95);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    color: rgba(3, 144, 10, 0.95);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(3, 144, 10, 0.95);
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: rgba(3, 144, 10, 0.95);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
}

@media (max-width: 768px) {
    .navbar-nav {
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: white;
        flex-direction: column;
        width: 50%;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
    }

    .navbar-nav.active {
        right: 0;
    }

    .navbar-nav a {
        padding: 10px 20px;
        width: 100%;
        text-align: left;
    }

    .hamburger-menu {
        display: flex;
    }

    .navbar.sticky .hamburger-line {
        background-color: white;
    }
}

.fasilitas-hero {
    background-color: rgba(3, 144, 10, 0.95);
    color: white;
    padding: 120px 7% 60px;
    text-align: center;
}

.fasilitas-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.fasilitas-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.fasilitas-container {
    padding: 40px 7%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fasilitas-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fasilitas-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.fasilitas-content {
    padding: 20px;
}

.fasilitas-content h3 {
    font-size: 1.4rem;
    color: rgba(3, 144, 10, 0.95);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.fasilitas-content h3 i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: rgba(3, 144, 10, 0.95);
}

.fasilitas-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Mobile Small */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 5%;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar img {
        height: 2rem;
    }

    .fasilitas-hero {
        padding: 90px 5% 30px;
    }

    .fasilitas-hero h1 {
        font-size: 1.8rem;
    }

    .fasilitas-hero p {
        font-size: 0.9rem;
    }

    .fasilitas-container {
        padding: 25px 4%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fasilitas-card img {
        height: 180px;
    }

    .fasilitas-content {
        padding: 15px;
    }

    .fasilitas-content h3 {
        font-size: 1.1rem;
    }

    .fasilitas-content h3 i {
        font-size: 1.4rem;
    }

    .fasilitas-content p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .navbar-logo {
        font-size: 1rem;
    }

    .fasilitas-hero h1 {
        font-size: 1.5rem;
    }

    .fasilitas-container {
        padding: 20px 3%;
    }

    .fasilitas-card img {
        height: 150px;
    }

    .fasilitas-content h3 {
        font-size: 1rem;
    }
}