/* ===================== RESET & BASE ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #faf8f3;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================== NAVBAR ===================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 45px;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 55px;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #c9a227;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: #c9a227;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 18px 25px;
    }
}

/* ===================== FULL SCREEN MOBILE MENU ===================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 40px 35px;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 34px;
    color: #1a1a1a;
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    transition: 0.3s;
}

.mobile-menu-links a i {
    font-size: 20px;
    color: #c9a227;
    width: 24px;
    text-align: center;
}

.mobile-menu-links a:hover {
    color: #c9a227;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
}

.mobile-menu-footer p {
    color: #999;
    margin-bottom: 12px;
    font-size: 14px;
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
}

.btn-whatsapp-full i {
    font-size: 20px;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 90vh;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #e8e8e8;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-white {
    color: #ffffff;
}

.hero-gold {
    color: #c9a227;
}

.hero-price-highlight {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 600;
    color: #c9a227;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    border: 1.5px solid #c9a227;
    color: #c9a227;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn:hover {
    background-color: #c9a227;
    color: #1a1a1a;
}

/* HERO NAVIGATION ARROWS */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hero-arrow:hover {
    background: rgba(201, 162, 39, 0.85);
}

.hero-arrow-left {
    left: 25px;
}

.hero-arrow-right {
    right: 25px;
}

/* HERO DOT INDICATORS */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background-color: #c9a227;
    transform: scale(1.2);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 22px 30px;
    text-align: center;
    min-width: 160px;
}

.stat-box i {
    font-size: 22px;
    color: #c9a227;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* FADE-IN TRANSITION */
.fade-item {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PAGE HERO (versi lebih pendek, untuk halaman selain Home) */
.hero-page {
    min-height: 55vh;
    padding: 60px 20px;
}

.hero-page .hero-text h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.hero-page .hero-text p {
    color: #e8e8e8;
    font-size: 15px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-arrow-left {
        left: 12px;
    }

    .hero-arrow-right {
        right: 12px;
    }

    .hero-dots {
        bottom: 16px;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-box {
        min-width: 130px;
        padding: 16px 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .hero-page {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .hero-page .hero-text h1 {
        font-size: 24px;
    }
}

/* ===================== ABOUT ===================== */
.about {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #c9a227;
}

.about p {
    color: #555;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about {
        padding: 40px 20px;
    }
}

/* ===================== FEATURES ===================== */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 90px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px 30px;
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-top: 3px solid #c9a227;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    color: #666;
    font-weight: 300;
    font-size: 14px;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    text-align: center;
    padding: 70px 20px 40px;
    background-color: #1a1a1a;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 34px;
}

.page-header p {
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px 20px;
    }

    .page-header h1 {
        font-size: 26px;
    }
}

/* ===================== ROOMS GRID ===================== */
.rooms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px 90px;
}

.room-card {
    background-color: #ffffff;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 25px 22px;
}

.room-info h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 19px;
}

.room-info p {
    color: #666;
    font-weight: 300;
    font-size: 14px;
}

.room-info .price {
    margin-top: 12px;
    font-weight: 600;
    color: #c9a227;
    font-family: 'Playfair Display', serif;
}

.room-info small {
    display: block;
    margin-top: 6px;
    color: #999;
    font-size: 11px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .rooms-grid {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .room-card {
        width: 100%;
        max-width: 340px;
    }
}

/* ===================== MULTI-PRICE LIST ===================== */
.price-list {
    margin-top: 14px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.price-item span:first-child {
    color: #666;
    font-weight: 400;
}

.price-item .price {
    margin-top: 0;
    font-weight: 600;
    color: #c9a227;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
}

/* ===================== CONTACT / BOOKING FORM ===================== */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    padding: 60px 30px 90px;
}

.contact-info h3 {
    margin-top: 20px;
    color: #1a1a1a;
    font-size: 16px;
}

.contact-info p {
    color: #666;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 350px;
}

.contact-form label {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 13px;
    border: 1px solid #ddd;
    font-family: inherit;
    background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #c9a227;
}

.btn-dark {
    padding: 14px;
    background-color: #1a1a1a;
    color: #c9a227;
    border: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #c9a227;
    color: #1a1a1a;
}

.conditional-field {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.conditional-field.visible {
    display: flex;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .contact-form {
        width: 100%;
    }
}

/* ===================== WHATSAPP BUTTON (inline) ===================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-top: 5px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

/* ===================== FLOATING WHATSAPP BUTTON ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 500;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float i {
    color: #ffffff;
    font-size: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}

/* ===================== GALLERY ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 40px 40px 90px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.4s;
    filter: grayscale(10%);
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    opacity: 0.9;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #c9a227;
    font-size: 40px;
    cursor: pointer;
}

/* ===================== THANKS PAGE ===================== */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.thanks-box {
    text-align: center;
    max-width: 500px;
    background-color: white;
    padding: 50px 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.thanks-box h1 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 28px;
}

.thanks-box p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
}

.btn-dark-link {
    display: inline-block;
    padding: 13px 32px;
    background-color: #1a1a1a;
    color: #c9a227;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.btn-dark-link:hover {
    background-color: #c9a227;
    color: #1a1a1a;
}

/* ===================== LOCATION MAP SECTION ===================== */
.location-section {
    text-align: center;
    padding: 20px 20px 90px;
}

.location-section h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 32px;
}

.location-section p {
    color: #666;
    font-weight: 300;
    margin-bottom: 35px;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-top: 3px solid #c9a227;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}

/* ===================== RICH FOOTER ===================== */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 13px;
    color: #999;
    font-weight: 300;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c9a227;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
    line-height: 1.5;
}

.footer-contact li i {
    color: #c9a227;
    margin-top: 3px;
    width: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 25px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .site-footer {
        padding: 40px 20px 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================== OFFICE TABS SECTION ===================== */
.office-section {
    padding: 80px 8%;
}

.office-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.office-tab {
    border: 1.5px solid #c9a227;
    background: transparent;
    color: #1a1a1a;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.office-tab.active,
.office-tab:hover {
    background: #1a1a1a;
    color: #c9a227;
    border-color: #1a1a1a;
}

.office-content {
    display: none;
}

.office-content.active {
    display: block;
}

@media (max-width: 768px) {
    .office-section {
        padding: 50px 5%;
    }
}

/* ===================== OFFICE PRICE HIGHLIGHT ===================== */
.office-highlight {
    padding: 60px 20px;
    background-color: #faf8f3;
}

.highlight-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.highlight-badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: #c9a227;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.highlight-box h2 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 28px;
}

.highlight-box p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .highlight-box {
        padding: 25px;
    }

    .highlight-box h2 {
        font-size: 22px;
    }
}

/* ===================== TRUSTED TENANTS SECTION ===================== */
.tenant-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.tenant-section .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    background-color: #c9a227;
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title h2 {
    margin-bottom: 15px;
    font-size: 30px;
    color: #1a1a1a;
}

.section-title p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 14px;
}

.tenant-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.tenant-stat {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tenant-stat h3 {
    color: #c9a227;
    font-size: 26px;
    margin-bottom: 8px;
}

.tenant-stat p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.tenant-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tenant-logo {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.tenant-logo:hover {
    transform: translateY(-5px);
}

.tenant-logo img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.tenant-logo:hover img {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .tenant-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tenant-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 22px;
    }
}