/** help-center-section **/

.help-center-section {
    position: relative;
}

/* ── Search Box ── */

.help-center-section .search-box {
    margin-bottom: 60px;
}

.help-center-section .search-box .form-group {
    position: relative;
    margin-bottom: 0;
}

.help-center-section .search-box input[type="search"] {
    width: 100%;
    height: 58px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 68px 10px 22px;
    font-size: 16px;
    color: var(--text-color);
    background: #fff;
    transition: border-color 300ms ease;
    outline: none;
}

.help-center-section .search-box input[type="search"]:focus {
    border-color: var(--btn-green);
}

.help-center-section .search-box button {
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 58px;
    background: var(--btn-green);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 300ms ease;
}

.help-center-section .search-box button:hover {
    background: var(--btn-green-hover);
}

/* ── Help Category Cards ── */

.help-category-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 300ms ease, border-color 300ms ease;
    height: calc(100% - 30px);
}

.help-category-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
    border-color: var(--btn-green);
}

.help-category-item .icon-box {
    width: 60px;
    height: 60px;
    background: #EFF2E6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--btn-green);
}

.help-category-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.help-category-item h3 a {
    color: var(--title-color);
    text-decoration: none;
    transition: color 300ms ease;
}

.help-category-item h3 a:hover {
    color: var(--btn-green);
}

.help-category-item p {
    font-size: 15px;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 20px;
}

.help-category-item .help-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-category-item .help-links li {
    margin-bottom: 10px;
}

.help-category-item .help-links li a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding-left: 20px;
    position: relative;
    transition: color 300ms ease, padding-left 200ms ease;
}

.help-category-item .help-links li a:before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--btn-green);
    font-weight: 700;
}

.help-category-item .help-links li a:hover {
    color: var(--btn-green);
    padding-left: 26px;
}

/* ── Contact / Support Bottom Section ── */

.contact-support-section {
    background: #f8faf5;
    border: 1px solid #e5e7eb;
    padding: 60px 30px;
    border-radius: 10px;
    margin-top: 60px;
}

.contact-support-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-support-section .sec-title p {
    font-size: 16px;
    color: #6b7280;
}

.support-option {
    padding: 30px 20px;
}

.support-option .icon-box {
    width: 76px;
    height: 76px;
    background: var(--btn-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #fff;
}

.support-option h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--title-color);
}

.support-option p {
    font-size: 15px;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 20px;
}

/** responsive-css **/

@media only screen and (max-width: 991px) {
    .help-center-section .search-box {
        margin-bottom: 40px;
    }

    .contact-support-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .help-category-item {
        height: auto;
        padding: 24px 20px;
    }

    .help-category-item h3 {
        font-size: 18px;
    }

    .contact-support-section {
        padding: 30px 16px;
        margin-top: 30px;
    }

    .contact-support-section .sec-title h2 {
        font-size: 28px;
    }

    .support-option {
        padding: 20px 10px;
        margin-bottom: 20px;
    }

    .help-center-section .search-box input[type="search"] {
        font-size: 14px;
        height: 50px;
    }

    .help-center-section .search-box button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .help-category-item {
        padding: 20px 16px;
    }

    .help-category-item .icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .support-option .icon-box {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .contact-support-section .sec-title h2 {
        font-size: 24px;
    }
}
