/* Responsive Design */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition-base), opacity var(--transition-base);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-gray-200);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-badge {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .service-image {
        height: 240px;
    }
    
    .carousel-slide {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        padding: 32px 24px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .brand-gluck {
        font-size: 26px;
    }
    
    .brand-subtitle {
        font-size: 11px;
    }
    
    .nav-container {
        padding: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .carousel-slide {
        height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .why-us-lead {
        font-size: 18px;
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-content h4 {
        font-size: 18px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-text {
        font-size: 16px;
    }
    
    .stars-large {
        font-size: 28px;
    }
    
    .contact-method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .method-value {
        font-size: 16px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .quote-form {
        padding: 24px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .footer-brand .brand-gluck {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        padding: 40px 32px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-cta-group {
        margin-bottom: 24px;
    }
    
    .hero-trust-badges {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-scroll-indicator,
    .mobile-menu-toggle,
    .contact-form-side,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    
    .service-card,
    .review-card {
        page-break-inside: avoid;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .squeegee-wipe,
    .hero-image-clean,
    .hero-image-dirty {
        animation: none;
    }
    
    .hero-image-clean {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hero-image-dirty {
        opacity: 0;
        visibility: hidden;
    }
    
    .hero-content {
        opacity: 1;
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--color-navy);
    }
    
    .btn-secondary {
        border: 2px solid var(--color-primary);
    }
    
    .nav-link::after {
        height: 3px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 3px;
    }
}