/* <=992 */

@media (max-width:992px) {

    html,
    body {
        overflow-x: hidden;
    }

    .nav-cta {
        display: none;
    }

    .nav-center {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-center ul {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .nav-center.active {
        display: block;
    }

    .menu-toggle {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #222;
        display: block;
    }

    .header-area .main-nav .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-area .main-nav ul.nav {
        gap: 14px;
    }

    .main-banner {
        padding-top: 170px;
        padding-bottom: 80px;
    }

    .main-banner .top-text h2 {
        font-size: 34px;
    }

    .main-banner ul.categories {
        justify-content: center;
    }

    .main-banner ul.categories li {
        width: 30%;
        margin-bottom: 20px;
    }

    .calculator-form {
        padding: 30px;
    }

    .listing-item {
        display: block;
    }

    .listing-item .left-image img {
        width: 100%;
        height: auto;
    }

    .popular-categories .menu {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* setiap service button */

    .popular-categories .menu>div {
        width: 100%;
    }

    /* card style */

    .popular-categories .menu .thumb {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 12px;
        background: #f7f7f7;
    }

    /* icon kecil sikit */

    .popular-categories .menu .thumb .icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .popular-categories .menu .thumb .icon img {
        width: 20px;
    }

    .popular-categories .menu .thumb .label {
        font-size: 14px;
        line-height: 1.3;
    }

    .popular-categories .menu .active .thumb {
        background: #0f172a;
        color: #fff;
    }

    .popular-categories .menu .active .icon {
        background: #f5b400;
        border-radius: 50%;
    }

    .popular-categories .menu .active .label {
        color: #fff;
    }

    /* content area */

    .popular-categories .nacc {
        margin-top: 30px;
    }

    .nacc .row {
        flex-direction: column;
    }

    .right-image {
        margin-top: 20px;
    }

    .right-image img {
        width: 100%;
        border-radius: 12px;
    }

    .left-text h4 {
        font-size: 22px;
    }

    .left-text p {
        font-size: 14px;
    }

    /* helpful links tablet */

    .helpful-links {
        text-align: center;
    }

    .helpful-links .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 40px;
        margin-top: 20px;
    }

    .helpful-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .helpful-links li {
        margin: 6px 0;
    }

    .helpful-links a {
        font-size: 14px;
        color: #0f172a;
        transition: 0.3s;
    }

    .helpful-links a:hover {
        color: #f5b400;
    }

    footer {
        text-align: center;
    }

    footer .about,
    footer .helpful-links,
    footer .contact-us {
        margin-bottom: 40px;
    }

}