.service--clickable {
    cursor: pointer;
}

.hs-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 9999;
}

.hs-modal {
    width: min(720px, 96vw);
    background: #071b33;
    color: #eaf0ff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    padding: 18px 18px 16px;
}

.hs-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.hs-modal-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.hs-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.hs-modal-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

    .hs-modal-list li {
        opacity: .95;
    }

/*for mobile menu*/
.burger {
    position: relative;
}

    .burger svg {
        position: absolute;
    }

.icon-close {
    display: none;
}

.burger.is-open .icon-burger {
    display: none;
}

.burger.is-open .icon-close {
    display: block;
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: 12px;
    transition: background-color .15s ease, color .15s ease;
}

.mobile-menu a:hover {
    background-color: rgba(29, 78, 216, 0.08);
    color: #1d4ed8;
}
.mobile-menu a:active {
    background-color: rgba(29, 78, 216, 0.15);
}

/*------------------service modal scrolbar*/

/* ===== Modal scroll fix for mobile ===== */
.hs-modal {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* Header stays fixed */
.hs-modal-head {
    flex-shrink: 0;
}

/* Scrollable content area */
.hs-modal-list {
    overflow-y: auto;
    padding-right: 6px;
}

/* Mobile-specific tuning */
@media (max-width: 560px) {
    .hs-modal {
        max-height: 85vh;
        width: 100%;
        border-radius: 16px;
    }

    .hs-modal-list {
        max-height: calc(85vh - 60px); /* subtract header height */
        -webkit-overflow-scrolling: touch;
    }
}

/*service modal hover color*/
/* ===== Modal list hover effect ===== */
.hs-modal-list li {
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color .2s ease, color .2s ease, transform .15s ease;
}

    /* Desktop hover */
    .hs-modal-list li:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #7dd3fc; /* light blue accent */
        transform: translateX(2px);
    }

/* Mobile tap highlight */
@media (hover: none) {
    .hs-modal-list li:active {
        background-color: rgba(255, 255, 255, 0.12);
        color: #7dd3fc;
    }
}
/* ===== Modal list hover effect ===== */
.hs-modal-list li {
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color .2s ease, color .2s ease, transform .15s ease;
}

    /* Desktop hover */
    .hs-modal-list li:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #7dd3fc; /* light blue accent */
        transform: translateX(2px);
    }

/* Mobile tap highlight */
@media (hover: none) {
    .hs-modal-list li:active {
        background-color: rgba(255, 255, 255, 0.12);
        color: #7dd3fc;
    }
}