/* ===========================================
   GET HELP PAGE — gh- prefix
   =========================================== */

.page-template-get-help {
    background: #f3f3f3;
}

.gh-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------------
   HERO BANNER
   ------------------------------------------- */

.gh-hero {
    padding: 60px 20px 0;
    margin-top: 80px;
}

.gh-hero__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    padding: 90px 0;
    min-height: 480px;
    border-radius: 34px;
    overflow: hidden;
    background-color: #1c1716;
    background-image: url("/wp-content/themes/virtuworks/images/get-help-hero-bg.svg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    color: #ffffff;
}

.gh-hero__left {
    text-align: left;
    padding-left: 30%;
}

.gh-hero__title {
    margin: 0 0 28px;
    font-size: 90px;
    line-height: 1.15;
    font-weight: 500;
    color: #ffffff;
}

.gh-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: none;
    border-radius: 999px;
    background: #FF4B00;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

.gh-hero__btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.gh-hero__right {
    text-align: center;
    margin-left: -35%;
}

.gh-hero__right img {
    max-width: 460px;
    width: 100%;
    height: auto;
}

/* -------------------------------------------
   QUICK LINKS
   ------------------------------------------- */

.gh-links {
    padding: 40px 20px;
}

.gh-links > .gh-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 50px;
}

.gh-links__row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
}

.gh-links__row:hover {
    text-decoration: none;
    color: inherit;
}

.gh-links__icon {
    flex-shrink: 0;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1716;
    border-radius: 16px;
}

.gh-links__icon img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.gh-links__info {
    flex: 1;
    border-bottom: 1px solid #666;
    padding-bottom: 24px;
}

.gh-links__row:first-child .gh-links__info {
    border-top: 1px solid #666;
    padding-top: 24px;
}

.gh-links__title {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: #FF4B00;
}

.gh-links__desc,
.gh-links__desc p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #888;
}

/* -------------------------------------------
   SUPPORT TICKET FORM
   ------------------------------------------- */

.gh-form {
    padding: 0 20px 80px;
}

.gh-form > .gh-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 50px;
}

.gh-form__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

.gh-form__left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px 40px;
}

.gh-form__left img {
    max-width: 100%;
    height: auto;
}

.gh-form__right {
    padding: 50px 50px 50px 30px;
}

.gh-form__title {
    margin: 0 0 45px;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.25;
    color: #FF4B00;
}

/* CF7 form overrides */
.gh-form__right .wpcf7 label {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #151111;
    margin-bottom: 0;
}

.gh-form__right .wpcf7-form p {
    margin: 0 0 4px;
}

.gh-form__right .wpcf7 input[type="text"],
.gh-form__right .wpcf7 input[type="email"],
.gh-form__right .wpcf7 input[type="tel"],
.gh-form__right .wpcf7 textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #666;
    border-radius: 0;
    font-size: 16px;
    background: transparent;
    margin-bottom: 8px;
    outline: none;
}

.gh-form__right .wpcf7 input[type="text"]:focus,
.gh-form__right .wpcf7 input[type="email"]:focus,
.gh-form__right .wpcf7 input[type="tel"]:focus,
.gh-form__right .wpcf7 textarea:focus {
    border-bottom-color: #FF4B00;
}

.gh-form__right .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.gh-form__right .wpcf7 input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FF4B00;
    vertical-align: middle;
    margin-right: 6px;
    cursor: pointer;
}

.gh-form__right .wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: none;
    border-radius: 999px;
    background: #FF4B00;
    color: #ffffff;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 0.5px currentColor;
    cursor: pointer;
    margin-top: 10px;
}

/* -------------------------------------------
   RESPONSIVE
   ------------------------------------------- */

/* ---- Tablet (601px – 960px) ---- */
@media (max-width: 960px) {
    .gh-container {
        padding: 0;
    }

    .gh-hero {
        margin-top: 110px;
        padding: 0 20px;
    }

    .gh-hero__card {
        grid-template-columns: 1fr 1fr;
        padding: 50px 30px;
        min-height: auto;
    }

    .gh-hero__left {
        padding-left: 10%;
    }

    .gh-hero__right {
        margin-left: -10%;
    }

    .gh-hero__right img {
        max-width: 220px;
    }

    .gh-hero__title {
        font-size: clamp(32px, 6vw, 50px);
    }

    .gh-links {
        padding: 20px;
    }

    .gh-links > .gh-container {
        padding: 30px;
    }

    .gh-links__icon {
        width: 75px;
        height: 75px;
    }

    .gh-form {
        padding: 0 20px 60px;
    }

    .gh-form > .gh-container {
        padding: 30px;
    }

    .gh-form__card {
        grid-template-columns: 1fr;
    }

    .gh-form__left {
        padding: 30px;
        align-items: center;
    }

    .gh-form__left img {
        max-width: 320px;
    }

    .gh-form__right {
        padding: 30px;
    }

    .gh-form__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* ---- Mobile (≤600px) ---- */
@media (max-width: 600px) {
    .gh-hero {
        margin-top: 110px;
    }

    .gh-hero__card {
        grid-template-columns: 1fr;
        padding: 35px 24px;
        border-radius: 20px;
        text-align: center;
    }

    .gh-hero__left {
        padding-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .gh-hero__right {
        margin-left: 0;
        text-align: center;
    }

    .gh-hero__right img {
        max-width: 220px;
    }

    .gh-hero__title {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 20px;
    }

    .gh-hero__btn {
        font-size: 15px;
        padding: 11px 22px;
    }

    .gh-links > .gh-container {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .gh-links__row {
        gap: 16px;
        padding: 10px 0;
    }

    .gh-links__icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .gh-links__title {
        font-size: 18px;
    }

    .gh-links__desc,
    .gh-links__desc p {
        font-size: 14px;
    }

    .gh-links__info {
        padding-bottom: 16px;
    }

    .gh-links__row:first-child .gh-links__info {
        padding-top: 16px;
    }

    .gh-form {
        padding: 0 20px 40px;
    }

    .gh-form > .gh-container {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .gh-form__left {
        padding: 20px;
    }

    .gh-form__left img {
        max-width: 240px;
    }

    .gh-form__right {
        padding: 20px;
    }

    .gh-form__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .gh-form__right .wpcf7 input[type="submit"] {
        width: 100%;
        padding: 14px 30px;
    }
}
