/* ===================================
   Responsive Styles - Mobile First
   =================================== */

/* Tablets and below - 768px */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: var(--spacing-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-top: 1px solid var(--border);
        padding: var(--spacing-sm) 0;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Detail */
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page */
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .area-highlights {
        grid-template-columns: 1fr;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Section Spacing */
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    /* Typography */
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Logo */
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .logo .tagline {
        font-size: 0.75rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: var(--spacing-md);
    }
    
    /* Contact Info */
    .phone-number {
        font-size: 1.125rem;
    }
}

/* Large Tablets - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 1025px and above */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .mobile-menu-toggle,
    .hero,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
    
    .page-header {
        background: none;
        color: #000;
        border-bottom: 2px solid #000;
    }
}
