:root {
    --cti-blue: #0047ff;
    --bg-body: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar-top {
    background: white;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar-brand-logo {
    font-weight: 700;
    color: var(--cti-blue);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cti-blue);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0047ff, #002db3);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu a:hover {
    color: var(--cti-blue);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: calc(100% - 32px);
}

/* ===== NAVBAR RESPONSIVE ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--cti-blue);
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
    }

    .nav-menu a:hover {
        background: rgba(0,71,255,0.08);
        transform: none;
    }

    .nav-menu a::before {
        display: none;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.587)), url('../images/hero.png') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px 80px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.28;
}

.page-header::before {
    top: -20%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.page-header::after {
    bottom: -20%;
    left: -5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.page-header .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.header-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    margin-top: 6px;
}

.header-stat {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
}

.header-stat i {
    opacity: 0.95;
}

.page-header h1 {
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.05;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 6px 24px rgba(0, 24, 64, 0.28);
}

.page-header p {
    font-size: 1.05rem;
    opacity: 0.92;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Buttons inside header */
.page-header .cta-buttons {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    justify-content: center;
}

.page-header .btn-hero {
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-header .btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.26);
}

.page-header .btn-primary {
    background: white;
    color: #0047ff;
}

.page-header .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.page-header .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-header .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
}

/* Decorative floating shapes */
.header-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.header-shapes .shape {
    position: absolute;
    border-radius: 16px;
    transform: rotate(12deg);
    opacity: 0.06;
}

.header-shapes .shape.s-1 {
    width: 240px;
    height: 140px;
    right: 6%;
    top: 18%;
    background: #ffffff;
}

.header-shapes .shape.s-2 {
    width: 320px;
    height: 200px;
    left: 2%;
    bottom: 6%;
    background: #ffffff;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 16px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .page-header p {
        font-size: 0.98rem;
    }
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-section h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section h5 i {
    font-size: 1.3rem;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    color: #555;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--cti-blue);
    color: var(--cti-blue);
    background: rgba(0, 71, 255, 0.05);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--cti-blue) 0%, #002db3 100%);
    color: white;
    border-color: var(--cti-blue);
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .filter-section {
        padding: 24px;
    }

    .filter-buttons {
        justify-content: center;
    }
}

/* ===== KAMAR TABLE ===== */
.kamar-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 60px;
}

.kamar-table {
    margin: 0;
    border-collapse: collapse;
    width: 100%;
}

.kamar-table thead {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05), rgba(0, 71, 255, 0.02));
    border-bottom: 2px solid rgba(0, 71, 255, 0.1);
}

.kamar-table thead th {
    padding: 20px 18px;
    font-weight: 700;
    color: var(--cti-blue);
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kamar-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.kamar-table tbody tr:hover {
    background-color: rgba(0, 71, 255, 0.02);
    box-shadow: inset 0 0 8px rgba(0, 71, 255, 0.05);
}

.kamar-table tbody tr:last-child {
    border-bottom: none;
}

.kamar-table tbody td {
    padding: 18px;
    font-size: 0.95rem;
    color: #555;
}

.kamar-foto {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kamar-table tbody tr:hover .kamar-foto {
    transform: scale(1.05);
}

.kamar-no {
    font-weight: 700;
    color: var(--cti-blue);
    font-size: 1rem;
}

.kamar-harga {
    font-weight: 700;
    color: #0ca678;
    font-size: 1.05rem;
}

/* ===== STATUS BADGE ===== */
.status-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-badge.status-tersedia {
    background: rgba(12, 166, 120, 0.15);
    color: #0ca678;
}

.status-badge.status-terisi {
    background: rgba(224, 49, 49, 0.15);
    color: #e03131;
}

.status-badge.status-perbaikan {
    background: rgba(240, 140, 0, 0.15);
    color: #f08c00;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-detail {
    background: white;
    color: var(--cti-blue);
    border: 2px solid var(--cti-blue);
}

.btn-detail:hover {
    background: rgba(0, 71, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 71, 255, 0.15);
}

.btn-detail:active {
    background: var(--cti-blue);
    color: white;
}

.btn-booking {
    background: linear-gradient(135deg, var(--cti-blue) 0%, #002db3 100%);
    color: white;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.3);
}

.btn-booking:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.empty-state h5 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 8px;
}

.empty-state p {
    color: #999;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0047ff 0%, #002db3 100%);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    animation: slideInUp 0.6s ease-out;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo img {
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-contact i {
    min-width: 18px;
    text-align: center;
}

.footer-contact p:hover {
    opacity: 1;
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 25px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: white;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 25px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-tagline {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links-bottom {
        gap: 10px;
    }
}

/* ===== MODAL STYLING ===== */
.modal-modern {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 71, 255, 0.1);
}

.modal-modern .modal-header {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05), rgba(0, 71, 255, 0.02));
    border-radius: 16px 16px 0 0;
    padding: 24px;
}

.modal-modern .modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cti-blue);
}

.btn-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background-color: rgba(0, 71, 255, 0.1);
    color: var(--cti-blue);
}

.modal-modern .modal-body {
    padding: 32px;
}

.modal-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.modal-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.15);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.modal-header-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin: 0;
}

.modal-status {
    display: flex;
    align-items: center;
}

.modal-status .badge {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: #f8f9fc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background-color: rgba(0, 71, 255, 0.08);
    transform: translateY(-2px);
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.2), rgba(0, 71, 255, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--cti-blue);
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

/* Fasilitas Section */
.modal-fasilitas {
    margin-top: 16px;
}

.modal-fasilitas h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin-bottom: 16px;
}

.fasilitas-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fasilitas-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f8f9fc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

.fasilitas-grid li:hover {
    background-color: rgba(0, 71, 255, 0.1);
    color: var(--cti-blue);
}

.fasilitas-grid i {
    font-size: 1.2rem;
    color: var(--cti-blue);
    flex-shrink: 0;
}

/* Gedung Section */
.modal-gedung {
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f8ff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--cti-blue);
}

.modal-gedung h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin-bottom: 12px;
    margin-top: 0;
}

.gedung-info {
    padding: 0;
}

.gedung-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Penghuni Section */
.modal-penghuni {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #eee;
}

.modal-penghuni h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin-bottom: 20px;
}

.penghuni-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.penghuni-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05), rgba(0, 71, 255, 0.02));
    border: 1px solid rgba(0, 71, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.penghuni-item:hover {
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.15);
    transform: translateY(-4px);
}

.penghuni-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cti-blue), rgba(0, 71, 255, 0.8));
    border-radius: 50%;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.penghuni-info {
    flex: 1;
}

.penghuni-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.penghuni-status,
.penghuni-date {
    font-size: 0.85rem;
    color: #999;
    margin: 2px 0;
}

/* Empty State */
.modal-empty {
    text-align: center;
    padding: 48px 24px;
    color: #999;
}

.modal-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.modal-empty p {
    font-size: 1rem;
    color: #999;
    margin: 0;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-modern .modal-body {
        padding: 20px;
    }

    .modal-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .modal-image {
        min-height: 250px;
    }

    .modal-details-grid {
        grid-template-columns: 1fr;
    }

    .modal-header-content {
        flex-direction: column;
    }

    .modal-header-content h2 {
        font-size: 1.4rem;
    }

    .fasilitas-grid {
        grid-template-columns: 1fr;
    }

    .penghuni-list {
        grid-template-columns: 1fr;
    }

    .modal-modern .modal-title {
        font-size: 1.1rem;
    }
}