/**
 * Responsive Styles
 * Domain Financial Audit Website
 */

/* Large Screens (Desktop default) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-info,
    .contact-info {
        grid-column: span 1;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    /* Process */
    .process-timeline::before {
        left: 15px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .process-step {
        padding-left: 50px;
    }
}

/* Small Screens (Mobile Landscape) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    /* Form */
    .form-container {
        padding: var(--space-lg);
    }
    
    /* Cookie Popup */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra Small Screens (Mobile Portrait) */
@media (max-width: 576px) {
    .section {
        padding: var(--space-lg) 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: var(--space-lg) 0;
    }
    
    /* Process */
    .process-step {
        margin-bottom: var(--space-lg);
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .cta-buttons .button {
        width: 100%;
    }
    
    /* FAQ */
    .faq-question {
        padding: var(--space-md);
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: var(--space-md);
    }
}
