/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    /* Navigation Adjustments */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Responsive Toggle States */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5deg, -5px);
    }
    
    /* Layouts Collapse to Stack */
    .split-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-img-wrapper img {
        height: 320px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 40px 24px;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 1.85rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .grid-3, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 24px;
    }
}