/* ============================================================
   We4Cleaning — Responsive Breakpoints
   Mobile-first responsive design
   ============================================================ */

/* --- Mobile (< 576px) --- */
@media (max-width: 575.98px) {
    .section-padding {
        padding: 2.5rem 0;
    }

    .hero-section {
        min-height: 100svh;
        padding-top: 5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-wn-primary,
    .hero-buttons .btn-wn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .wn-footer {
        text-align: center;
    }

    .step-indicator {
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .step-line {
        width: 30px;
    }

    .gradient-orb {
        display: none;
    }

    .map-container {
        height: 250px;
    }

    .testimonial-card {
        padding: 1.25rem;
    }
}

/* --- Small tablets (576px - 767px) --- */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 6rem;
    }

    .gradient-orb {
        opacity: 0.1;
    }
}

/* --- Tablets (768px - 991px) --- */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        min-height: 85vh;
        padding-top: 7rem;
    }

    .step-line {
        width: 40px;
    }
}

/* --- Desktop adjustments (992px+) --- */
@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 0;
        display: flex;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0.5rem 0.875rem !important;
    }
}

/* --- Large desktop (1400px+) --- */
@media (min-width: 1400px) {
    .hero-section h1 {
        font-size: 4rem;
    }

    .section-padding {
        padding: 6rem 0;
    }
}

/* --- Mobile navbar collapse adjustments --- */
@media (max-width: 991.98px) {
    .wn-navbar .navbar-collapse {
        background: rgba(10, 15, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid var(--border-subtle);
    }

    .wn-navbar .nav-link.active::after {
        display: none;
    }

    .wn-navbar .nav-link.active {
        background: rgba(13,148,136,0.15);
        color: var(--primary-light) !important;
    }

    .wn-navbar .navbar-nav {
        gap: 0.25rem;
    }
}

/* --- Print styles --- */
@media print {
    .wn-navbar,
    .wn-footer,
    .gradient-orb,
    .particle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .glass-card,
    .feature-card {
        border: 1px solid #ddd;
        background: white;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .gradient-orb,
    .particle {
        animation: none;
    }
}
