/* ============================================================
   Location Page — Hero Section
   File: assets/css/location/lp-hero.css
   Scope: .lp-hero__* classes only
   ============================================================ */

/* ============================
   SECTION: Hero
   Node: 3292:3321 | 1280×681
   ============================ */

.lp-hero {
    background-color: var(--lp-cream);
    padding: 80px 0 100px;
}

.lp-hero__wrapper {
    width: 100%;
}

.lp-hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left column */
.lp-hero__col--left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

/* Breadcrumb / eyebrow — fs=14, fw=900, uppercase */
.lp-hero__eyebrow {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-navy);
    opacity: 0.5;
    margin: 0;
}

/* H1 — fs=64, fw=400, Hedvig Serif */
.lp-hero__heading {
    font-family: var(--lp-font-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.125em;
    color: var(--lp-navy);
    margin: 0;
}

/* Body — fs=18, fw=500 */
.lp-hero__body {
    font-family: var(--lp-font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--lp-navy);
    line-height: 1.667em;
    margin: 0;
}

/* CTA row */
.lp-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

/* Secondary CTA — outline */
.lp-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 46, 0.25);
    color: var(--lp-navy);
    font-family: var(--lp-font-sans);
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--lp-radius-btn);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.lp-hero__cta-secondary:hover {
    background: rgba(0, 0, 46, 0.05);
    color: var(--lp-navy);
    text-decoration: none;
}

/* Trust line — fs=14, fw=900, uppercase, deep navy */
.lp-hero__note {
    font-family: var(--lp-font-sans);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-deep-navy);
    margin: 0;
}

/* Right column: form card */
.lp-hero__col--right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Form card — bg=#fff, r=24, p≈42px */
.lp-hero__form-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-card-lg);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    padding: 42px 44px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form heading — fs=36, fw=400 */
.lp-hero__form-heading {
    font-family: var(--lp-font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.34em;
    color: var(--lp-navy);
    margin: 0;
}

/* Form subheading — fs=16, fw=500 */
.lp-hero__form-desc {
    font-family: var(--lp-font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-navy);
    line-height: 1.625em;
    margin: 0;
}

/* Form layout: column, gap=20 */
.lp-hero__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Inputs — h=60, bg=#f5f5f5, r=8 */
.lp-hero__form-input {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    border: 1px solid var(--lp-cream);
    border-radius: var(--lp-radius-btn);
    font-family: var(--lp-font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-navy);
    background: var(--lp-input-bg);
    box-sizing: border-box;
    outline: none;
    transition: background 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

textarea.lp-hero__form-input {
    padding: 16px 20px;
    height: auto;
}

select.lp-hero__form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2744' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
    transition: none;
}

.lp-hero__form-input:focus {
    background: #ececec;
    box-shadow: inset 0 0 0 2px var(--lp-blue);
}

.lp-hero__form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2301011e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Submit button */
.lp-hero__form-submit {
    width: 100%;
    height: 53px;
    font-family: var(--lp-font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-white);
    background: var(--lp-blue);
    border: none;
    border-radius: var(--lp-radius-btn);
    cursor: pointer;
    transition: opacity 0.15s;
}

.lp-hero__form-submit:hover {
    opacity: 0.9;
}

/* Disclaimer — fs=12, fw=900, uppercase, 50% opacity */
.lp-hero__form-disclaimer {
    font-family: var(--lp-font-sans);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-deep-navy);
    opacity: 0.5;
    line-height: 1.5em;
    text-align: center;
    margin: 0;
}


/* ============================
   RESPONSIVE — Hero
   ============================ */

@media (max-width: 1200px) {
    .lp-hero__heading { font-size: 48px; }
}

@media (max-width: 1024px) {
    .lp-hero__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero__col--left {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 60px 0;
    }

    .lp-hero__heading {
        font-size: 38px;
    }

    .lp-hero__form-card {
        padding: 28px 24px;
        border-radius: var(--lp-radius-card);
    }

    .lp-hero__form-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .lp-hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}


/* === Contact Form 7 — Partner Page Form Styling === */

.wpcf7-form input.wpcf7-text,
.wpcf7-form input.wpcf7-email,
.wpcf7-form input.wpcf7-tel {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #F2F2F2;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    color: #1a1a2e;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form select.wpcf7-select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #F2F2F2;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 14px 20px;
    padding-right: 44px;
    font-size: 16px;
    color: #1a1a2e;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.wpcf7-form textarea.wpcf7-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #F2F2F2;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    color: #1a1a2e;
    height: 135px;
    min-height: 135px;
    resize: vertical;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form input.wpcf7-submit {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #4361EE;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form input.wpcf7-submit:hover {
    background: #3451d1;
}

.wpcf7-form p {
    margin-bottom: 12px;
}

/* Form card description spacing — adds bottom gap before first CF7 field */
.partner_program_new_hero-card .site-desc,
.submitclaim-section__wrapper___row--column.custom_form .site-desc {
    padding-bottom: 20px;
}

/* Form card heading — adds gap between heading and first CF7 field */
.partner_program_new_hero-card h2,
.partner_program_new_hero-card h3 {
    margin-bottom: 16px;
}
