/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (1024px and below) ────────────────────────────── */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__right {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }

    .hero__content {
        padding: 0 32px;
        padding-top: 72px;
    }

    .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .why-choose__text {
        text-align: justify;
        margin: 0 auto; 
        right: 0; 
        left: 0;
    }
}

/* ── Mobile (768px and below) ─────────────────────────────── */
@media (max-width: 768px) {
    .svc-detail__causes-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .why-choose__title {
        text-align: center;
    }
    

    .svc-detail__causes-img {
        display: flex;
        justify-content: center;
        margin: 0 auto; 
        right: 0; 
        left: 0;
    }

    /* Center the labels for the radio and checkbox fields */
    .svc-consult__field .svc-consult__label {
        text-align: center;
        width: 100%;
    }

    /* Center the actual radio and checkbox options */
    .svc-consult__radio-group,
    .svc-consult__checkbox-group {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 16px; /* Adjust this value to add more or less space between Yes/No */
    }


    .svc-consult__submit {
        width: 100%;
        display: flex; 
        justify-content: center;
        align-items: center;
    }

    .hero {
        min-height: 100vh;
        max-height: none;
    }

    .hero__content {
        padding: 0 24px;
        padding-top: 72px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__tagline {
        font-size: 1rem;
    }

    .hero__slide::after {
        background: linear-gradient(
            to right,
            rgba(10, 22, 40, 0.9) 0%,
            rgba(10, 22, 40, 0.7) 50%,
            rgba(10, 22, 40, 0.4) 100%
        );
    }

    .floating-cta__text {
        display: none;
    }

    .floating-cta {
        padding: 14px;
        border-radius: 50%;
    }

    .floating-cta__icon {
        width: 24px;
        height: 24px;
    }
}

/* ── Small Mobile (480px and below) ───────────────────────── */
@media (max-width: 480px) {
    .svc-detail__causes-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .svc-detail__causes-img {
        display: flex;
        justify-content: center;
        margin: 0 auto; 
        right: 0; 
        left: 0;
    }

    /* Center the labels for the radio and checkbox fields */
    .svc-consult__field .svc-consult__label {
        text-align: center;
        width: 100%;
    }

    /* Center the actual radio and checkbox options */
    .svc-consult__radio-group,
    .svc-consult__checkbox-group {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 16px; /* Adjust this value to add more or less space between Yes/No */
    }

    .svc-consult__submit {
        width: 100%;
        display: flex; 
        justify-content: center;
        align-items: center;
    }

    .hero__content {
        padding: 0 20px;
        padding-top: 64px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__label-line {
        width: 32px;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 4px 0;
    }
}
