/* Responsive Styles for Myagkaya Grusha Cleaning Services */

/* Tablet Styles - Screens up to 992px */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Header */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    /* Hero Section */
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 1;
        text-align: center;
    }
    
    .about-image {
        order: 2;
    }
    
    /* Featured Article */
    .featured-article {
        flex-direction: column;
    }
    
    .featured-article-image,
    .featured-article-content {
        width: 100%;
    }
    
    .featured-article-image {
        min-height: 250px;
    }
    
    /* Service Detail Section */
    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }
    
    .service-detail-image {
        order: 1;
    }
    
    .service-detail-text {
        order: 2;
    }
    
    /* Contact Form */
    .contact-form .form-columns {
        flex-direction: column;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .consent-checkbox {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    /* Newsletter Form */
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Thank You Actions */
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Styles - Screens up to 768px */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Section Padding */
    .hero-section,
    .services-section,
    .about-section,
    .why-choose-section,
    .testimonials-section,
    .newsletter-section,
    .contact-form-section,
    .blog-intro-section,
    .featured-article-section,
    .blog-articles-section,
    .legal-content-section,
    .thank-you-section,
    .additional-info-section,
    .page-banner,
    .about-company-section,
    .mission-values-section,
    .team-section,
    .why-choose-about-section,
    .service-detail-section,
    .contact-info-section,
    .service-areas-section,
    .emergency-cleaning-section {
        padding: 50px 0;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    /* Features Grid */
    .features-grid,
    .values-grid,
    .team-grid,
    .service-areas-grid,
    .info-cards,
    .contact-method-cards {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    /* Legal Content */
    .legal-content {
        padding: 30px 20px;
    }
    
    /* Steps Container */
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Banner */
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Cookie Settings Panel */
    .cookie-settings-panel {
        padding: 15px;
    }
    
    /* Blog Article */
    .article-meta-full {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Small Mobile Styles - Screens up to 480px */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Featured Article */
    .featured-article-content {
        padding: 25px;
    }
    
    .featured-article-content h3 {
        font-size: 1.4rem;
    }
    
    /* Blog Card */
    .blog-content {
        padding: 20px;
    }
    
    /* Legal Content */
    .legal-content {
        padding: 20px 15px;
    }
    
    /* Thank You Section */
    .thank-you-content {
        padding: 30px 20px;
    }
    
    /* Emergency Number */
    .emergency-number {
        font-size: 1.6rem;
    }
}