/* Responsive Styles */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Hero Section */
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* About Section */
    .about-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .about-highlights li {
        justify-content: center;
    }
    
    .about-section .btn {
        margin: 0 auto;
    }
    
    /* Service Hero (Services Page) */
    .service-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact Page */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Header & Navigation */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 80px var(--spacing-md) var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Newsletter Form */
    .newsletter-section .form-group {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Cookie Banner */
    .cookie-banner {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team Grid */
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
