/* =========================================================
   ARPIVA TECHNOLOGIES
   CONTACT US PAGE
========================================================= */

.contact-page {
    background: #f7faff;
    color: #081b4b;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    padding: 170px 0 105px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(47,128,237,.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #06183f 0%,
            #0b2a6f 55%,
            #123d8f 100%
        );
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -250px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -500px;
    bottom: -580px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.contact-hero .section-badge {
    background: rgba(255,255,255,.10);
    color: #76aaff;
    border: 1px solid rgba(255,255,255,.10);
}

.contact-hero h1 {
    margin: 25px 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.contact-hero h1 span {
    display: block;
    color: #ff9f1c;
}

.contact-hero p {
    max-width: 760px;
    margin: 0 auto;

    color: #d9e5fb;

    font-size: 19px;
    line-height: 1.8;
}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-main {
    padding: 100px 0 110px;
    background: #f7faff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   INFORMATION SIDE
========================================================= */

.contact-information {
    padding-top: 20px;
}

.contact-information .section-badge {
    background: #eef4ff;
    color: #2f80ed;
}

.contact-information h2 {
    margin: 24px 0 22px;

    color: #081b4b;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 800;
}

.contact-information h2 span {
    color: #2f80ed;
}

.contact-intro {
    margin: 0 0 38px;

    color: #687790;

    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   CONTACT INFORMATION CARDS
========================================================= */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 18px;
    padding: 20px;

    background: #ffffff;

    border: 1px solid #e3eaf4;
    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(15,43,91,.05);

    transition: .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);

    border-color: #cddbef;

    box-shadow: 0 16px 40px rgba(15,43,91,.08);
}

.contact-info-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eef4ff;

    color: #2f80ed;

    font-size: 20px;
    font-weight: 700;
}

.contact-info-card h3 {
    margin: 0 0 5px;

    color: #081b4b;

    font-size: 16px;
    font-weight: 700;
}

.contact-info-card p {
    margin: 0;

    color: #687790;

    font-size: 14px;
}

.contact-info-card a {
    color: #2f80ed;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.contact-info-card a:hover {
    color: #ff8c00;
}


/* =========================================================
   CAREER NOTE
========================================================= */

.contact-note {
    margin-top: 32px;
    padding: 25px;

    background: linear-gradient(
        135deg,
        #071d4c,
        #0d347e
    );

    border-radius: 18px;

    color: #ffffff;

    box-shadow: 0 18px 45px rgba(8,27,75,.15);
}

.contact-note strong {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 16px;
}

.contact-note p {
    margin: 0 0 12px;

    color: #d6e2fa;

    font-size: 14px;
    line-height: 1.7;
}

.contact-note a {
    color: #ffb347;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.contact-note a:hover {
    color: #ffffff;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #e2e9f3;
    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(15,43,91,.10);
}

.contact-form-heading {
    margin-bottom: 32px;
}

.contact-form-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #2f80ed;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-form-heading h2 {
    margin: 0 0 12px;

    color: #081b4b;

    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-form-heading h2 strong {
    color: #2f80ed;
}

.contact-form-heading p {
    margin: 0;

    color: #687790;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.arpiva-contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-field {
    margin-bottom: 20px;
}

.contact-field label {
    display: block;

    margin-bottom: 8px;

    color: #172b50;

    font-size: 13px;
    font-weight: 700;
}

.contact-field label span {
    color: #ff8c00;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #dbe4f0;
    border-radius: 11px;

    background: #fbfdff;

    color: #081b4b;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-field input,
.contact-field select {
    height: 50px;
}

.contact-field textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9aa8bc;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #2f80ed;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(47,128,237,.10);
}


/* =========================================================
   HONEYPOT
========================================================= */

.contact-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
    width: 100%;
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 15px 25px;

    border: 0;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ffb347,
            #ff8c00
        );

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(255,140,0,.28);

    transition: .35s ease;
}

.contact-submit-button span {
    font-size: 20px;
}

.contact-submit-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(255,140,0,.38);
}

.contact-form-disclaimer {
    margin: 15px 0 0;

    color: #8a98aa;

    text-align: center;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   FORM MESSAGES
========================================================= */

.contact-form-error {
    margin-bottom: 25px;
    padding: 14px 17px;

    border: 1px solid #f4c8c8;
    border-radius: 10px;

    background: #fff5f5;

    color: #b42323;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   SUCCESS
========================================================= */

.contact-success {
    padding: 45px 20px;

    text-align: center;
}

.contact-success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f9ef;

    color: #159447;

    font-size: 34px;
    font-weight: 700;
}

.contact-success h3 {
    margin: 0 0 14px;

    color: #081b4b;

    font-size: 32px;
    font-weight: 800;
}

.contact-success p {
    max-width: 500px;

    margin: 0 auto 28px;

    color: #687790;

    font-size: 15px;
    line-height: 1.8;
}

.contact-success .contact-submit-button {
    width: auto;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-cta {
    padding: 0 0 120px;

    background: #f7faff;
}

.contact-cta-box {
    position: relative;

    padding: 70px 40px;

    overflow: hidden;

    text-align: center;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(47,128,237,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071d4c,
            #0d347e
        );

    box-shadow:
        0 30px 70px rgba(8,27,75,.18);
}

.contact-cta-box .section-badge {
    background: rgba(255,255,255,.10);
    color: #78aaff;
}

.contact-cta-box h2 {
    margin: 22px 0 18px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 800;
}

.contact-cta-box h2 span {
    color: #ff9f1c;
}

.contact-cta-box p {
    max-width: 700px;

    margin: 0 auto;

    color: #d6e2fa;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-information {
        max-width: 750px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-hero {
        padding: 130px 0 80px;
    }

    .contact-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .contact-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-main {
        padding: 70px 0 80px;
    }

    .contact-information h2 {
        font-size: 36px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 30px 22px;

        border-radius: 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-heading h2 {
        font-size: 28px;
    }

    .contact-cta {
        padding-bottom: 80px;
    }

    .contact-cta-box {
        padding: 55px 25px;
        border-radius: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        padding: 115px 0 70px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-information h2 {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 17px;
    }

    .contact-form-card {
        padding: 25px 17px;
    }

    .contact-form-heading h2 {
        font-size: 25px;
    }

    .contact-cta-box h2 {
        font-size: 31px;
    }

}