/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .floor-plan-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-image,
    .location-map {
        order: -1;
    }
    
    .chat-widget {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .mobile-action-buttons {
        display: flex;
    }
    
    .chat-container {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .popup-form {
        padding: 30px 20px;
    }
    
    .video-shorts-container {
        gap: 15px;
    }
    
    .video-short {
        flex: 0 0 250px;
    }
    
    .chat-container {
        width: 280px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 20px;
    }
    
    .logo-floors {
        font-size: 16px;
    }
}