/* Responsive Styles */

/* Large Screens (1200px and below) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .benefits-list,
    .services-list,
    .testimonials-list,
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Medium Screens (992px and below) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .section-title {
        font-size: var(--font-3xl);
    }
    
    .hero h1 {
        font-size: var(--font-4xl);
    }
    
    .hero p {
        font-size: var(--font-lg);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

/* Small Screens (768px and below) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    /* Mobile Menu */
    .menu-icon {
        display: block;
        z-index: 1010;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        z-index: 1000;
        padding: 80px var(--space-lg) var(--space-lg);
        overflow-y: auto;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg);
        top: 8px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .main-nav a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .btn-contact {
        display: inline-block;
        margin-top: var(--space-md);
    }
    
    .benefits-list,
    .services-list,
    .testimonials-list,
    .blog-list {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .benefit-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-col:first-child {
        grid-column: auto;
    }
}

/* Extra Small Screens (576px and below) */
@media (max-width: 576px) {
    .section-title {
        font-size: var(--font-2xl);
    }
    
    .hero h1 {
        font-size: var(--font-3xl);
    }
    
    .hero p {
        font-size: var(--font-md);
    }
    
    .order-container {
        padding: var(--space-lg);
    }
    
    .form-row {
        margin-bottom: var(--space-md);
    }
    
    .footer-bottom {
        padding-top: var(--space-md);
    }
}
