/* Responsive Styles */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title .highlight {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .highlight {
        font-size: 3.5rem;
    }
    
    .hero-title .subtitle {
        font-size: 2rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .footer-right-content {
        justify-content: flex-start;
        flex: 1;
    }

    #bg-features {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .location-maps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .building-plans {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .apartment-types {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .gallery-nav {
        display: none;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        min-width: 120px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --spacing-4xl: 3rem;
        --spacing-3xl: 2rem;
        --spacing-2xl: 1.5rem;
    }
    
    .header-content {
        padding: var(--spacing-sm) 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-lg);
    }
    
    .nav-link {
        display: block;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 45vh;
        padding: var(--spacing-3xl) 0;
    }
    
    .hero-content {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        max-height: 70%;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
        padding-top: 5%;
    }
    
    .hero-title .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 18%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .phone-btn a {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .phone-text {
        display: none;
    }
    
    .zalo-btn {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        bottom: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-content {
        margin: var(--spacing-md);
        padding: var(--spacing-xl);
    }
    
    .tab-buttons {
        gap: var(--spacing-xs);
    }
    
    .tab-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
        min-width: 100px;
    }

    .footer-right-content {
        width: 100%;
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap; /* Cho phép các mục xuống dòng nếu không đủ không gian */
        justify-content: space-between;
        align-items: flex-start;
    }
    
    /* * BƯỚC 1: Tạo một container mới (.footer-nav) chỉ để chứa các cột điều hướng.
     * - display: flex; sẽ đặt các cột con (.footer-nav-col) nằm trên một hàng.
     * - flex-grow: 1; để nó chiếm hết không gian còn lại nếu có các phần tử khác (như social icons).
     * - gap: 30px; là cách hiện đại để tạo khoảng cách giữa 2 cột.
     */
    .footer-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-grow: 1; /* Cho phép container này co giãn */
        gap: 30px; /* Tạo khoảng cách giữa các cột, thay thế cho margin */
    }
    
    /* * BƯỚC 2: Thiết lập cho mỗi cột điều hướng.
     * - flex: 1; giúp chúng tự động chia đều không gian trong container .footer-nav.
     * - min-width: 120px; đảm bảo chúng không bị co lại quá nhỏ trên màn hình hẹp.
     */
    .footer-nav-col {
        flex: 1; 
        min-width: 120px;
    }
    
    /* Các phần còn lại của CSS giữ nguyên hoặc tùy chỉnh nếu cần */
    .footer-top {
        display: flex; /* Giả định .footer-top cũng là flex container */
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: var(--spacing-xl);
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .btn-large {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .thumbnail {
        width: 50px;
        height: 35px;
    }
    
    .cta-text {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .cta-text i {
        font-size: 2rem;
    }
    
    .cta-text h3 {
        font-size: 1.25rem;
    }
    
    .tab-button {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .radio-options {
        gap: var(--spacing-xs);
    }
    
    .radio-option {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .radio-option span {
        font-size: 0.8rem;
    }
    .footer-right-content {
        flex-direction: column; /* Xếp các cột nav thành 1 hàng dọc */
        gap: 30px; /* Tăng khoảng cách giữa các cột nav */
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title .highlight {
        font-size: 1.75rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: var(--spacing-lg);
    }
    
    .contact-form-card {
        padding: var(--spacing-lg);
    }
    
    .amenities-contact {
        padding: var(--spacing-lg);
    }
    
    .location-cta {
        padding: var(--spacing-lg);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.25rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .cta-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pulse {
        animation: none;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modal-content {
        background: var(--gray-800);
        color: var(--white);
    }
    
    .modal-close {
        background: var(--gray-700);
        color: var(--gray-300);
    }
    
    .modal-close:hover {
        background: var(--gray-600);
        color: var(--white);
    }
    
    .contact-form input {
        background: var(--gray-700);
        color: var(--white);
        border-color: var(--gray-600);
    }
    
    .contact-form input:focus {
        border-color: var(--accent-color);
    }
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .header,
    .floating-contact,
    .back-to-top,
    .modal,
    .gallery-nav {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
    
    .section-title {
        page-break-after: avoid;
    }
    
    .overview-grid,
    .amenities-grid,
    .building-plans {
        page-break-inside: avoid;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
    
    .btn {
        border: 1px solid black;
        background: white !important;
        color: black !important;
    }
}