/* =========================
   FACILITIES – FINAL FIX
========================= */

html, body {
    overflow-x: hidden;
}

.facilities {
    font-family: 'Jost', sans-serif;
    padding-bottom: 100px;
}

/* ⬇️ INI KUNCI UTAMANYA */
.page-content:has(.facilities) {
    padding-top: 0 !important;
}

/* ===== HERO IMAGE ===== */
.facilities-hero {
    width: 100%;
}

.facilities-hero img {
    display: block;
    width: 100%;
    height: auto; /* karena gambar kamu 1500x138 */
}

/* ===== TOP FACILITIES ===== */
.top-grid {
    max-width: 1200px;
    margin: 80px auto 90px;
    padding: 0 20px;

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

.facility-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 22px;
}

.facility-text h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.facility-text ul {
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ===== SHARED SPACES ===== */
.sub-title {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 50px;
}

.bottom-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
}

.small-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 14px;
}

.small-card p {
    font-size: 15px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.facility-text h2 {
    font-size: 32px;   /* SEBELUMNYA 22px */
    font-weight: 600;
    margin-bottom: 18px;
}

.facility-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.facility-text ul {
    list-style: none; /* matikan bullet default */
    padding-left: 0;
}

.facility-text ul li {
    position: relative;
    padding-left: 34px; /* jarak icon ke teks */
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.facility-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;

    width: 18px;
    height: 18px;

    background-image: url('/images/bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.small-card p {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 6px;
}

.small-card span {
    display: block;
    text-align: center;
    font-size: 13px;     /* lebih kecil dari p */
    line-height: 1.5;
    color: #666;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-btn {
    background-color: #8B6F47;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: #7A5F3A;
    color: white;
    transform: translateY(-2px);
}
