/* 
 * SudamsBilu Windows - Responsive Stylesheet
 * Media queries for responsive design
 */

/* Large Devices (less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Medium Devices (less than 992px) */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu li {
        margin: 10px 0;
        width: 100%;
    }
    
    .main-menu li a.btn {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .service-content,
    .story-content,
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        display: none;
    }
}

/* Small Devices (less than 768px) */
@media (max-width: 767.98px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
        border-radius: 5px;
    }
    
    .newsletter-btn {
        margin-top: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-container,
    .process-step {
        flex-direction: column;
    }
    
    .process-step:not(:last-child):after {
        left: 25px;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .search-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .filter-categories {
        width: 100%;
        justify-content: flex-start;
    }
    
    .cookie-container {
        flex-direction: column;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .method-icon {
        font-size: 1.5rem;
    }
    
    .contact-method h3 {
        font-size: 1.2rem;
    }
    
    .contact-method a {
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .features-container,
    .values-grid,
    .team-grid,
    .portfolio-items,
    .articles-grid,
    .contact-methods,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-list li {
        flex-direction: column;
    }
    
    .expect-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .quick-contact-methods {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}