/*
 * LAXMI SUPPLIERS - responsive layout styles
 * Author: Antigravity UI/UX
 */

@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
    
    .why-choose-us, .about-preview {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .why-choose-us {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .wcu-image {
        max-width: 500px;
        margin: 0 auto 2rem auto;
    }
    
    .wcu-experience-badge {
        bottom: -20px;
        right: -20px;
        padding: 1.5rem;
    }
    
    .about-preview {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .about-preview-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu styles */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(45, 27, 22, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--white);
    }
    
    /* Header Scrolled Styles for Mobile Menu toggle lines */
    .header.scrolled .mobile-nav-toggle span {
        background-color: var(--dark);
    }
    .header.scrolled .mobile-nav-toggle.active span {
        background-color: var(--white);
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .page-banner-title {
        font-size: 2.5rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-preview-image {
        grid-template-columns: 1fr;
    }
    
    .about-img-box:nth-child(even) {
        transform: translateY(0);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-actions {
        left: 20px;
        bottom: 20px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}
