: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);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.587)), url('../images/hero.png') center/cover no-repeat;
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 576px) {
    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 40px;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: #0047ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #f0f7ff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-image {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.hero-image-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== ASRAMA OVERVIEW STYLE ===== */
.asrama-overview {
    padding: 0px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.overview-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cti-blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .overview-title {
        font-size: 2rem;
        text-align: center;
    }
}

.overview-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 576px) {
    .overview-contact p {
        justify-content: center;
    }
}

.overview-contact i {
    color: var(--cti-blue);
}

.overview-desc {
    margin: 20px 0;
    color: #555;
    line-height: 1.7;
    max-width: 520px;
    text-align: justify;
}

.overview-more {
    font-weight: 600;
    color: var(--cti-blue);
    text-decoration: none;
}

@media (max-width: 576px) {
    .overview-more {
        justify-content: center;
    }
}

/* RIGHT */
.overview-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .section-header {
        justify-content: center;
    }
}

.section-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cti-blue);
    letter-spacing: 1px;
}

/* ICON GRID */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    /* ⬅️ ini kunci utama */
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
    /* jarak ikon & teks */
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.icon-item span {
    display: block;
    max-width: 110px;
    /* supaya teks 2 baris rapi */
    word-wrap: break-word;
}

.icon-item i {
    font-size: 26px;
    margin-bottom: 8px;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== KATALOG KAMAR ===== */
.katalog-container {
    padding: 60px 20px;
    margin-bottom: 50px;
}

.katalog-title {
    text-align: center;
    margin-bottom: 50px;
}

.katalog-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cti-blue);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.katalog-title p {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

.kamar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: transparent;
    color: var(--cti-blue);
    padding: 18px;
    border-radius: 10px;
}

.contact-card .asrama-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--cti-blue);
}

.contact-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    opacity: 0.95;
}

.kamar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kamar-content {
    padding: 25px;
}

.kamar-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.kamar-info {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

.info-label {
    font-weight: 600;
    color: #333;
}

.info-value {
    color: #666;
}

.kamar-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.kamar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 71, 255, 0.15);
    border-color: rgba(0, 71, 255, 0.1);
}

.kamar-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff 0%, #e5f1ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.kamar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kamar-card:hover .kamar-image img {
    transform: scale(1.05);
}

.kamar-content {
    padding: 20px 18px;
}

.kamar-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cti-blue);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.kamar-info {
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.info-label {
    font-weight: 600;
    color: #777;
}

.info-value {
    font-weight: 700;
    color: #1a1a1a;
}

.kamar-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-tersedia {
    background: rgba(12, 166, 120, 0.12);
    color: #0ca678;
}

.status-terisi {
    background: rgba(224, 49, 49, 0.12);
    color: #e03131;
}

.status-perbaikan {
    background: rgba(240, 140, 0, 0.12);
    color: #f08c00;
}

.kamar-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-kamar {
    flex: 1;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
}

.btn-detail {
    background: white;
    color: var(--cti-blue);
    border: 2px solid var(--cti-blue);
}

.btn-detail:active {
    background: var(--cti-blue);
    color: white;
}

.btn-detail:hover {
    background: rgba(0, 71, 255, 0.05);
}

.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);
}

/* ===== 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;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 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;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }

    .katalog-container {
        padding: 40px 16px;
        border-radius: 12px;
    }

    .katalog-title h2 {
        font-size: 1.8rem;
    }

    .kamar-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .btn-kamar {
        padding: 11px 12px;
        font-size: 0.85rem;
    }
}

/* ===== MODAL DETAIL KAMAR ===== */
.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;
}

/* 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;
    }
}

/* ===== 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;
    }
}
