/* ============================================================
   Get Help page — vgh-*
   Navy: #012255  |  Yellow: #FAAF16
   ============================================================ */

.vgh-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #012255;
    margin-bottom: 12px;
}
.vgh-eyebrow--center { text-align: center; }

/* ══ 1. HERO ══ */
.vgh-hero { background: #fff; padding: 64px 0 72px; }
.vgh-hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}
.vgh-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: #012255;
    margin: 0 0 20px;
    max-width: 520px;
}
.vgh-hero__body {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a4a6b;
    margin: 0 0 28px;
    max-width: 480px;
}
.vgh-hero__crisis {
    font-size: 0.8rem;
    font-style: italic;
    color: #8a95a8;
    margin: 20px 0 0;
}

/* Yellow call card */
.vgh-callcard {
    background: #FAAF16;
    border-radius: 14px;
    padding: 36px 36px 32px;
    color: #012255;
}
.vgh-callcard__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 10px;
    opacity: 0.75;
}
.vgh-callcard__title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #012255;
    margin: 0 0 10px;
}
.vgh-callcard__body {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 24px;
    opacity: 0.85;
}
.vgh-callcard__region { margin-bottom: 18px; }
.vgh-callcard__region:last-child { margin-bottom: 0; }
.vgh-callcard__region-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 4px;
    opacity: 0.75;
}
.vgh-callcard__phone {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #012255;
    text-decoration: none;
}
.vgh-callcard__phone:hover { text-decoration: underline; }
.vgh-callcard__hours {
    font-size: 0.8rem;
    margin: 2px 0 0;
    opacity: 0.8;
}

/* ══ 3. FORM ══ */
.vgh-form { background: #fff; padding: 72px 0; }
.vgh-form__container { max-width: 920px; }
.vgh-form__title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: #012255;
    margin: 0 0 12px;
}
.vgh-form__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a4a6b;
    margin: 0 0 32px;
    white-space: pre-line;
}
.vgh-notice {
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.vgh-notice--ok  { background: #eaf6ec; color: #1e5c2a; border: 1px solid #bfe3c6; }
.vgh-notice--err { background: #fdecec; color: #8a1f1f; border: 1px solid #f2c4c4; }

.vgh-form__form {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    padding: 36px 40px;
}
.vgh-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.vgh-form__required-note {
    font-size: 0.78rem;
    color: #8a95a8;
    margin: 0 0 24px;
}
.vgh-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    margin-bottom: 28px;
}
.vgh-field { display: flex; flex-direction: column; gap: 6px; }
.vgh-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #012255;
}
.vgh-req { color: #c2410c; }
.vgh-field input,
.vgh-field select,
.vgh-field textarea {
    border: 1.5px solid #d7dde8;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #012255;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.vgh-field input:focus,
.vgh-field select:focus,
.vgh-field textarea:focus {
    outline: none;
    border-color: #012255;
    box-shadow: 0 0 0 3px rgba(1, 34, 85, 0.12);
}
.vgh-field input::placeholder,
.vgh-field textarea::placeholder { color: #a9b3c4; }

.vgh-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 24px;
}
.vgh-fieldset legend {
    font-size: 0.82rem;
    font-weight: 700;
    color: #012255;
    margin-bottom: 10px;
    padding: 0;
}
.vgh-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
}
.vgh-radios label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #3a4a6b;
    cursor: pointer;
}
.vgh-radios input { accent-color: #012255; width: 16px; height: 16px; }

.vgh-consent {
    border-top: 1px solid #e5e9f0;
    padding-top: 20px;
    margin: 24px 0;
}
.vgh-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #3a4a6b;
    cursor: pointer;
}
.vgh-consent input { accent-color: #012255; margin-top: 3px; flex-shrink: 0; }

.vgh-form__submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.vgh-form__submit button { cursor: pointer; border: 0; }
.vgh-form__after { font-size: 0.8rem; color: #8a95a8; }

/* ── Gravity Forms skin: replicate the native form 1:1 ──
   Same white card, 2-column grid on the first six fields,
   2-column radios, consent row with top border, navy button. */
.vgh-form__gf {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    padding: 36px 40px;
}
.vgh-form__gf .gform_title,
.vgh-form__gf .gform_description,
.vgh-form__gf .gform_required_legend { display: none; }

/* Grid: first 6 fields (name/email/phone/zip/role/help) side by side. */
.vgh-form__gf .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
}
.vgh-form__gf .gfield { grid-column: span 2; }
.vgh-form__gf .gfield:nth-child(-n+6) { grid-column: span 1; }

/* Labels */
.vgh-form__gf .gfield_label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #012255;
    margin-bottom: 6px;
    padding: 0;
}
.vgh-form__gf .gfield_required { color: #c2410c; padding-left: 2px; }

/* Inputs */
.vgh-form__gf input[type="text"],
.vgh-form__gf input[type="email"],
.vgh-form__gf input[type="tel"],
.vgh-form__gf input[type="number"],
.vgh-form__gf select,
.vgh-form__gf textarea {
    border: 1.5px solid #d7dde8 !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    font-size: 0.92rem !important;
    font-family: inherit !important;
    line-height: 1.4 !important;
    color: #012255 !important;
    background: #fff !important;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.vgh-form__gf input:focus,
.vgh-form__gf select:focus,
.vgh-form__gf textarea:focus {
    outline: none !important;
    border-color: #012255 !important;
    box-shadow: 0 0 0 3px rgba(1, 34, 85, 0.12) !important;
}
.vgh-form__gf ::placeholder { color: #a9b3c4 !important; opacity: 1; }
.vgh-form__gf textarea { min-height: 150px; }

/* Radio groups: 2-column layout like the native fieldsets. */
.vgh-form__gf .gfield_radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
}
.vgh-form__gf .gchoice {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vgh-form__gf .gfield_radio label,
.vgh-form__gf .gfield_checkbox label {
    font-size: 0.9rem;
    color: #3a4a6b;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.vgh-form__gf input[type="radio"],
.vgh-form__gf input[type="checkbox"] {
    accent-color: #012255;
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
}

/* Consent row: top border like the native form. */
.vgh-form__gf .gfield--type-consent {
    border-top: 1px solid #e5e9f0;
    padding-top: 20px;
    margin-top: 4px;
}
.vgh-form__gf .gfield--type-consent .gfield_label { display: none; }
.vgh-form__gf .gfield_consent_label,
.vgh-form__gf .gfield--type-consent label {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #3a4a6b;
    font-weight: 400;
    cursor: pointer;
}
.vgh-form__gf .ginput_container_consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.vgh-form__gf .ginput_container_consent input[type="checkbox"] { margin-top: 3px; }

/* Footer: navy button + note, like the native submit row. */
.vgh-form__gf .gform_footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 24px;
}
.vgh-form__gf .gform_button {
    background: #012255 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: opacity 0.18s;
    width: auto !important;
}
.vgh-form__gf .gform_button:hover { opacity: 0.88; }
.vgh-form__gf .gform_footer::after {
    content: 'You will receive a confirmation after submitting.';
    font-size: 0.8rem;
    color: #8a95a8;
}

/* Validation + confirmation states in the vgh notice style. */
.vgh-form__gf .gform_validation_errors {
    background: #fdecec;
    color: #8a1f1f;
    border: 1px solid #f2c4c4 !important;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: none !important;
}
.vgh-form__gf .gform_validation_errors h2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #8a1f1f;
    margin: 0;
}
.vgh-form__gf .gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    color: #8a1f1f !important;
    font-size: 0.8rem;
    padding: 4px 0 0 !important;
}
.vgh-form__gf .gfield_error input,
.vgh-form__gf .gfield_error select,
.vgh-form__gf .gfield_error textarea {
    border-color: #c94444 !important;
}
.vgh-form__gf .gform_confirmation_message {
    background: #eaf6ec;
    color: #1e5c2a;
    border: 1px solid #bfe3c6;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .vgh-form__gf { padding: 28px 22px; }
    .vgh-form__gf .gform_fields { grid-template-columns: 1fr; }
    .vgh-form__gf .gfield,
    .vgh-form__gf .gfield:nth-child(-n+6) { grid-column: span 1; }
    .vgh-form__gf .gfield_radio { grid-template-columns: 1fr; }
}

/* ══ 4. WHAT HAPPENS NEXT — yellow ══ */
.vgh-next { background: #FAAF16; padding: 72px 0; }
.vgh-next .vgh-eyebrow--center { color: #012255; opacity: 0.75; }
.vgh-next__title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #012255;
    margin: 0 0 48px;
}
.vgh-next__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.vgh-next__step { text-align: center; }
.vgh-next__circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 2px 10px rgba(1, 34, 85, 0.12);
}
.vgh-next__circle img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.vgh-next__num {
    font-size: 2rem;
    font-weight: 900;
    color: #012255;
}
.vgh-next__step-title {
    font-size: 1rem;
    font-weight: 800;
    color: #012255;
    margin: 0 0 8px;
}
.vgh-next__step-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #012255;
    opacity: 0.8;
    margin: 0;
    max-width: 260px;
    margin-inline: auto;
}

/* ══ 5. PREFER TO TALK — navy ══ */
.vgh-talk { background: #012255; padding: 72px 0; color: #fff; }
.vgh-talk__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}
.vgh-talk__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
}
.vgh-talk__body {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0 0 28px;
    max-width: 460px;
}
.vgh-talk__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vgh-talk .victor-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.vgh-talk .victor-btn--outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }
.vgh-talk__region {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    margin: 0 0 16px;
}
.vgh-talk__region a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    color: #fff;
    text-decoration: none;
    margin-top: 4px;
}
.vgh-talk__region a:hover { text-decoration: underline; }
.vgh-talk__hours {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 8px 0 0;
}

/* ══ Responsive ══ */
@media (max-width: 900px) {
    .vgh-hero__inner  { grid-template-columns: 1fr; }
    .vgh-talk__inner  { grid-template-columns: 1fr; }
    .vgh-next__steps  { grid-template-columns: 1fr; gap: 40px; }
    .vgh-form__grid   { grid-template-columns: 1fr; }
    .vgh-radios       { grid-template-columns: 1fr; }
    .vgh-form__form   { padding: 28px 22px; }
}

/* Mobile (rem-based, consistent with theme breakpoints).
   overflow:hidden on sections prevents any grid overflow from widening
   the layout viewport — which would push the location finder's right
   padding off-screen, making the map/form appear to touch the right edge. */
@media (max-width: 47.99rem) {
    .vgh-hero         { overflow: hidden; }
    .vgh-hero__inner  { grid-template-columns: 1fr; gap: 32px; }
    .vgh-talk         { overflow: hidden; }
    .vgh-talk__inner  { grid-template-columns: 1fr; gap: 32px; }
    .vgh-next         { overflow: hidden; }
    .vgh-next__steps  { grid-template-columns: 1fr; gap: 32px; }
    .vgh-form         { overflow: hidden; }
    .vgh-form__grid   { grid-template-columns: 1fr; }
    .vgh-radios       { grid-template-columns: 1fr; }
    .vgh-form__form   { padding: 24px 18px; }
}
