/* =========================================================
   EARNING STREET - CONTACT PAGE STYLES
   Load after style.css and mobile-enhance.css
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    padding: 46px 0 38px;
    text-align: center;
    background: linear-gradient(135deg, #f3f9ff, #ffffff 55%, #f3fff7);
}

.contact-hero-inner {
    max-width: 720px;
    margin: auto;
}

.contact-eyebrow {
    display: inline-block;
    color: #16843a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.contact-hero h1 {
    color: #07194c;
    font-size: clamp(32px, 4.5vw, 50px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 14px;
}

    .contact-hero h1 span {
        color: #16843a;
    }

.contact-hero p {
    max-width: 560px;
    margin: auto;
    color: #59657a;
    font-size: 15.5px;
    line-height: 1.65;
}


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

.contact-main {
    padding: 46px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 22px;
    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION (dark panel)
========================================================= */

.contact-info {
    padding: 32px 28px;
    border-radius: 16px;
    background: linear-gradient(145deg, #061542, #0a2d72);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 25, 76, .12);
}

.contact-label {
    color: #f5c21a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-info h2 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    margin: 10px 0 14px;
}

    .contact-info h2 span {
        color: #f5c21a;
    }

.contact-info > p {
    color: #dce5f4;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
}


/* CONTACT ITEMS */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    color: #f5c21a;
}

    .contact-info-icon svg {
        width: 21px;
        height: 21px;
    }

.contact-info-item strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: #cbd7e9;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

    .contact-info-item a:hover {
        color: #f5c21a;
    }


/* SOCIAL */

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

    .contact-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .11);
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        transition: background .2s ease, transform .2s ease;
    }

        .contact-social a:hover {
            background: #f5b400;
            color: #07194c;
            transform: translateY(-2px);
        }


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {
    padding: 32px 30px;
    border: 1px solid #dce4ed;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(7, 25, 76, .06);
}

.contact-form-heading span {
    color: #16843a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.contact-form-heading h2 {
    color: #07194c;
    font-size: 24px;
    font-weight: 900;
    margin: 6px 0 22px;
}


/* FORM ROW */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        color: #07194c;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid #d6dfeb;
        border-radius: 9px;
        background: #f9fbfd;
        color: #26344e;
        font-family: inherit;
        font-size: 14px;
        padding: 12px 13px;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-group input,
    .form-group select {
        height: 48px;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #16843a;
        box-shadow: 0 0 0 3px rgba(22, 132, 58, .10);
        background: #ffffff;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9aa7b8;
    }


/* CHECKBOX */

.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #657188;
    font-size: 13px;
    line-height: 1.45;
    margin: 4px 0 18px;
}

    .contact-checkbox input {
        margin-top: 2px;
        width: 17px;
        height: 17px;
        accent-color: #16843a;
    }


/* SUBMIT */

.contact-submit {
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 30px;
    background: #07194c;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(7, 25, 76, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .contact-submit span {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f5b400;
        color: #07194c;
        font-size: 12px;
    }

    .contact-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(7, 25, 76, .22);
    }


/* =========================================================
   SUPPORT STRIP
========================================================= */

.contact-support {
    padding: 28px 0;
    background: #16843a;
    color: #ffffff;
}

.contact-support-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5b400;
    color: #07194c;
    font-size: 22px;
    font-weight: 900;
}

.contact-support h2 {
    font-size: 19px;
    font-weight: 900;
    margin: 0 0 3px;
}

.contact-support p {
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    margin: 0;
}

.contact-support-inner > a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 26px;
    background: #07194c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    transition: transform .2s ease;
}

    .contact-support-inner > a:hover {
        transform: translateY(-2px);
    }

    .contact-support-inner > a span {
        color: #f5c21a;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    .contact-hero {
        padding: 34px 0 28px;
    }

    .contact-main {
        padding: 34px 0;
    }

    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 560px) {

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-support-inner {
        flex-wrap: wrap;
    }

    .contact-support-inner > a {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}
