/* ============================================
   JOBQUIR — Responsive Breakpoints
   360px → 4K
   ============================================ */

/* ---------- Extra Small (360px+) ---------- */
@media (max-width: 575.98px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero .hero-btns {
        flex-direction: column;
    }

    .hero .hero-btns .btn-primary-gradient,
    .hero .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .hero-stats .hero-stat {
        flex: 0 0 45%;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .glass-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .navbar-custom .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-custom .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .search-box {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-box input {
        border-bottom: 1px solid var(--border);
    }

    .search-box button {
        border-radius: 0 0 12px 12px;
        padding: 0.8rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card .price {
        font-size: 2.2rem;
    }

    .filter-tags {
        gap: 0.4rem;
    }

    .filter-tag {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .step-card {
        margin-bottom: 2rem;
    }

    .toggle-switch-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ---------- Small (576px+) ---------- */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .hero-stats .hero-stat {
        flex: 0 0 auto;
    }

    .hero-glow {
        width: 350px;
        height: 350px;
    }

    .search-box {
        flex-direction: row;
    }
}

/* ---------- Medium / Tablet (768px+) ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero {
        min-height: 85vh;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }
}

/* ---------- Large / Desktop (992px+) ---------- */
@media (min-width: 992px) {
    .navbar-custom .navbar-collapse {
        justify-content: flex-end;
    }

    .hero {
        min-height: 100vh;
    }
}

/* ---------- Extra Large (1200px+) ---------- */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ---------- XXL (1400px+) ---------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }
}

/* ---------- 2K+ (2560px+) ---------- */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .container {
        max-width: 1800px;
    }

    .hero-glow {
        width: 700px;
        height: 700px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
}

/* ---------- 4K (3840px+) ---------- */
@media (min-width: 3840px) {
    html {
        font-size: 26px;
    }

    .container {
        max-width: 2600px;
    }

    .hero-glow {
        width: 900px;
        height: 900px;
        filter: blur(200px);
    }

    .navbar-custom {
        padding: 1rem 0;
    }

    .icon-box {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        border-radius: 24px;
    }

    .glass-card {
        border-radius: 30px;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .back-to-top {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 1.6rem;
    }
}