/* Responsive Styles */

/* Large Screens (1200px and below) */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* Medium Screens (992px and below) */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .grid-layout.three-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .nav-links, .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .grid-layout.three-column {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .grid-item.content {
        order: -1;
    }
    
    .policy-content {
        padding: var(--spacing-lg);
    }
}

/* Mobile Phones (576px and below) */
@media screen and (max-width: 576px) {
    :root {
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
        --header-height: 70px;
        --header-height-scrolled: 50px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-info, .contact-form-container {
        padding: var(--spacing-md);
    }
    
    .tiers-container {
        gap: var(--spacing-sm);
    }
    
    .tier-benefits {
        padding: var(--spacing-sm);
    }
    
    .policy-content {
        padding: var(--spacing-md);
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header, .modal-body {
        padding: var(--spacing-md);
    }
}

/* Very Small Phones (375px and below) */
@media screen and (max-width: 375px) {
    :root {
        --spacing-lg: 24px;
        --spacing-xl: 28px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
}