/* =========================================================
   CARIPULSE HELP CENTER
========================================================= */


/* =========================================================
   HELP CENTER HERO
========================================================= */

.help-hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8, 18, 33, .96),
            rgba(8, 18, 33, .82)
        ),
        url("../images/help-center.jpg")
        center center / cover no-repeat;

    padding: 150px 0 100px;

    overflow: hidden;
}


.help-hero-content {

    max-width: 820px;

    position: relative;

    z-index: 2;

    min-width: 0;
}


.help-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: #ff9d1c;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;
}


.help-hero h1 {

    color: #ffffff;

    font-size: 68px;

    line-height: 1.08;

    font-weight: 800;

    margin: 0 0 28px;

    overflow-wrap: break-word;
}


.help-hero p {

    max-width: 650px;

    color: #e4e8ef;

    font-size: 21px;

    line-height: 1.8;

    margin: 0 0 40px;

    overflow-wrap: break-word;
}


/* =========================================================
   HELP SEARCH
========================================================= */

.help-search {

    width: 100%;

    max-width: 700px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #ffffff;

    border-radius: 16px;

    padding: 0 20px;

    box-sizing: border-box;
}


.help-search i {

    flex: 0 0 auto;

    color: #6f7689;

    font-size: 18px;
}


.help-search input {

    width: 100%;

    min-width: 0;

    border: 0;

    outline: 0;

    background: transparent;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.4;

    padding: 18px 0;

    color: #081221;
}


.help-search input::placeholder {

    color: #8f95a5;
}


.help-search:focus-within {

    box-shadow:
        0 0 0 4px rgba(255, 47, 117, 0.12);
}


/* =========================================================
   MAIN
========================================================= */

.help-main {

    padding: 120px 0;

    background: #ffffff;
}


.help-section-heading {

    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;
}


.help-section-heading span {

    display: block;

    margin-bottom: 14px;

    color: #ff2f75;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}


.help-section-heading h2 {

    color: #081221;

    font-size: 52px;

    line-height: 1.2;

    font-weight: 800;

    margin: 0 0 20px;

    overflow-wrap: break-word;
}


.help-section-heading p {

    color: #687280;

    font-size: 19px;

    line-height: 1.8;

    margin: 0;

    overflow-wrap: break-word;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.help-category-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.help-category-card {

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e9edf3;

    border-radius: 24px;

    padding: 38px 28px;

    transition:
        transform .35s ease,
        border-color .35s ease;
}


.help-category-card:hover {

    transform: translateY(-8px);

    border-color: #ff2f75;
}


.help-category-icon {

    width: 70px;

    height: 70px;

    flex: 0 0 70px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ff2f75,
            #ff9d1c
        );

    margin-bottom: 25px;
}


.help-category-icon i {

    color: #ffffff;

    font-size: 28px;
}


.help-category-content {

    min-width: 0;
}


.help-category-content h3 {

    margin: 0 0 14px;

    color: #081221;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 700;

    overflow-wrap: break-word;
}


.help-category-content p {

    margin: 0 0 22px;

    color: #687280;

    font-size: 16px;

    line-height: 1.75;

    overflow-wrap: break-word;
}


.help-category-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 44px;

    color: #ff2f75;

    font-weight: 600;

    font-size: 15px;

    text-decoration: none;

    touch-action: manipulation;

    -webkit-tap-highlight-color: transparent;
}


.help-category-content a i {

    font-size: 12px;

    transition:
        transform .25s ease;
}


.help-category-content a:hover i {

    transform: translateX(5px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.help-no-results {

    margin-top: 45px;

    padding: 60px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e9edf3;

    border-radius: 24px;
}


.help-no-results i {

    font-size: 30px;

    color: #ff2f75;

    margin-bottom: 18px;
}


.help-no-results h3 {

    margin: 0;

    color: #081221;

    font-size: 26px;

    font-weight: 700;

    overflow-wrap: break-word;
}


.help-no-results p {

    max-width: 520px;

    margin: 14px auto 25px;

    color: #687280;

    font-size: 16px;

    line-height: 1.75;

    overflow-wrap: break-word;
}


.help-no-results a {

    min-height: 50px;

    padding: 0 24px;

    border-radius: 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            90deg,
            #ff2f75,
            #ff9d1c
        );

    color: #ffffff;

    font-weight: 700;

    text-decoration: none;

    touch-action: manipulation;

    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.help-contact-section {

    padding: 0 0 120px;

    background: #ffffff;
}


.help-contact-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 50px;

    border-radius: 24px;

    background: #081221;

    overflow: hidden;
}


.help-contact-card > div {

    min-width: 0;
}


.help-contact-card span {

    display: inline-block;

    color: #ff9d1c;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.help-contact-card h2 {

    margin: 0;

    color: #ffffff;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 800;

    overflow-wrap: break-word;
}


.help-contact-card p {

    max-width: 640px;

    margin: 14px 0 0;

    color: #e4e8ef;

    font-size: 17px;

    line-height: 1.8;

    overflow-wrap: break-word;
}


.help-contact-button {

    flex: 0 0 auto;

    min-height: 54px;

    padding: 0 26px;

    border-radius: 100px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background:
        linear-gradient(
            90deg,
            #ff2f75,
            #ff9d1c
        );

    color: #ffffff;

    font-weight: 700;

    text-decoration: none;

    touch-action: manipulation;

    -webkit-tap-highlight-color: transparent;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.help-contact-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255, 120, 60, 0.45);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.help-category-content a:focus-visible,
.help-no-results a:focus-visible,
.help-contact-button:focus-visible,
.help-search input:focus-visible {

    outline: 3px solid #ff9d1c;

    outline-offset: 4px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .help-hero {

        min-height: 650px;

        padding: 155px 0 95px;
    }


    .help-hero-content {

        max-width: 760px;
    }


    .help-hero h1 {

        font-size: 58px;
    }


    .help-category-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .help-contact-card {

        gap: 30px;

        padding: 42px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

    .help-hero {

        min-height: 500px;

        padding: 135px 0 75px;

        background-position: center center;
    }


    .help-hero-content {

        max-width: 680px;
    }


    .help-eyebrow {

        margin-bottom: 16px;

        font-size: 13px;

        letter-spacing: 1.8px;
    }


    .help-hero h1 {

        font-size: clamp(40px, 10vw, 48px);

        line-height: 1.1;

        margin-bottom: 20px;
    }


    .help-hero p {

        font-size: 17px;

        line-height: 1.7;

        margin-bottom: 30px;
    }


    .help-search {

        width: 100%;

        max-width: none;

        border-radius: 14px;

        padding: 0 18px;
    }


    .help-search input {

        font-size: 16px;

        padding: 17px 0;
    }


    .help-main {

        padding: 80px 0;
    }


    .help-section-heading {

        margin-bottom: 45px;
    }


    .help-section-heading span {

        font-size: 13px;
    }


    .help-section-heading h2 {

        font-size: clamp(34px, 9vw, 40px);
    }


    .help-section-heading p {

        font-size: 17px;

        line-height: 1.7;
    }


    .help-category-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .help-category-card {

        padding: 30px 26px;

        border-radius: 20px;
    }


    .help-category-icon {

        width: 64px;

        height: 64px;

        flex-basis: 64px;

        border-radius: 18px;

        margin-bottom: 22px;
    }


    .help-category-icon i {

        font-size: 25px;
    }


    .help-category-content h3 {

        font-size: 22px;
    }


    .help-category-content p {

        font-size: 16px;

        line-height: 1.7;
    }


    .help-no-results {

        margin-top: 35px;

        padding: 45px 24px;

        border-radius: 20px;
    }


    .help-contact-section {

        padding-bottom: 80px;
    }


    .help-contact-card {

        flex-direction: column;

        align-items: flex-start;

        gap: 28px;

        padding: 35px 28px;

        border-radius: 20px;
    }


    .help-contact-card h2 {

        font-size: 32px;
    }


    .help-contact-card p {

        font-size: 16px;

        line-height: 1.7;
    }


    .help-contact-button {

        width: 100%;

        min-height: 54px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .help-hero {

        min-height: 470px;

        padding: 125px 0 65px;
    }


    .help-hero h1 {

        font-size: clamp(36px, 11vw, 42px);
    }


    .help-hero p {

        font-size: 16px;
    }


    .help-search {

        border-radius: 13px;

        padding: 0 16px;
    }


    .help-search i {

        font-size: 16px;
    }


    .help-search input {

        font-size: 16px;

        padding: 16px 0;
    }


    .help-main {

        padding: 70px 0;
    }


    .help-section-heading {

        margin-bottom: 36px;
    }


    .help-section-heading h2 {

        font-size: 34px;
    }


    .help-section-heading p {

        font-size: 16px;
    }


    .help-category-card {

        border-radius: 18px;

        padding: 28px 22px;
    }


    .help-category-icon {

        width: 60px;

        height: 60px;

        flex-basis: 60px;

        border-radius: 17px;
    }


    .help-category-icon i {

        font-size: 23px;
    }


    .help-category-content h3 {

        font-size: 21px;
    }


    .help-category-content p {

        font-size: 15px;
    }


    .help-no-results {

        padding: 38px 20px;
    }


    .help-no-results h3 {

        font-size: 23px;
    }


    .help-no-results p {

        font-size: 15px;
    }


    .help-no-results a {

        width: 100%;

        min-height: 52px;
    }


    .help-contact-section {

        padding-bottom: 70px;
    }


    .help-contact-card {

        padding: 30px 22px;

        border-radius: 18px;
    }


    .help-contact-card h2 {

        font-size: 29px;
    }


    .help-contact-card p {

        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .help-hero {

        padding: 118px 0 60px;
    }


    .help-hero h1 {

        font-size: 34px;
    }


    .help-hero p {

        font-size: 15px;
    }


    .help-main {

        padding: 62px 0;
    }


    .help-section-heading h2 {

        font-size: 31px;
    }


    .help-category-card {

        padding: 25px 18px;
    }


    .help-contact-card {

        padding: 27px 18px;
    }


    .help-contact-card h2 {

        font-size: 27px;
    }

}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {

    .help-hero {

        min-height: auto;

        padding: 115px 0 60px;
    }


    .help-hero h1 {

        font-size: 42px;
    }


    .help-hero p {

        font-size: 16px;

        margin-bottom: 24px;
    }


    .help-search {

        max-width: 620px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .help-category-card:hover,
    .help-contact-button:hover {

        transform: none;

        box-shadow: none;
    }


    .help-category-content a:hover i {

        transform: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .help-category-card,
    .help-category-content a i,
    .help-contact-button {

        transition: none !important;
    }

}
