/* =========================================================
   VARGOU CONTACT PAGE
   contact.css

   ALL SELECTORS ARE SCOPED TO .contact-page
   TO PREVENT COLLISION WITH INDEX / FAQ / OTHER PAGES.
========================================================= */


/* =========================================================
   CONTAINER
========================================================= */

.contact-page .contact-page-container {
    width: 100%;
    max-width: 1180px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
========================================================= */

.contact-page .contact-page-hero {
    position: relative;

    overflow: hidden;

    padding: 32px 0 65px;

    background:
        linear-gradient(
            120deg,
            #f8fbff 0%,
            #edf5ff 100%
        );

    border-bottom: 1px solid #dfe7f1;
}


.contact-page .contact-page-breadcrumb {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 42px;

    color: #8a96a6;

    font-size: 10px;
}


.contact-page .contact-page-breadcrumb a {
    color: #0a348b;

    text-decoration: none;
}


.contact-page .contact-page-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 60px;
}


.contact-page .contact-page-hero-content {
    max-width: 610px;
}


.contact-page .contact-page-eyebrow {
    color: #0a348b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.contact-page .contact-page-hero-content h1 {
    margin: 10px 0 20px;

    color: #17243a;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}


.contact-page .contact-page-hero-content h1 span {
    color: #0a348b;
}


.contact-page .contact-page-hero-content > p {
    max-width: 550px;

    margin: 0;

    color: #687587;

    font-size: 14px;

    line-height: 1.8;
}


.contact-page .contact-page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 24px;

    margin-top: 28px;
}


.contact-page .contact-page-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 5px;

    background: #0a348b;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}


.contact-page .contact-page-primary-btn:hover {
    background: #07276a;

    transform: translateY(-2px);
}


/* =========================================================
   CALL LINK
========================================================= */

.contact-page .contact-page-call-link {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #17243a;

    text-decoration: none;
}


.contact-page .contact-page-call-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #0a348b;

    box-shadow:
        0 4px 15px rgba(20,55,100,.08);
}


.contact-page .contact-page-call-link small {
    display: block;

    margin-bottom: 2px;

    color: #8b96a5;

    font-size: 7px;
}


.contact-page .contact-page-call-link strong {
    display: block;

    color: #26364e;

    font-size: 10px;
}


/* =========================================================
   HERO ART
========================================================= */

.contact-page .contact-page-hero-art {
    position: relative;

    width: 100%;
    height: 350px;
}


.contact-page .contact-page-art-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.contact-page .contact-page-art-circle.circle-one {
    width: 300px;
    height: 300px;

    border: 1px solid #bfd0e5;
}


.contact-page .contact-page-art-circle.circle-two {
    width: 205px;
    height: 205px;

    border: 1px dashed #c3d4e9;
}


.contact-page .contact-page-art-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: #0a348b;

    box-shadow:
        0 20px 50px rgba(10,52,139,.20);

    color: #ffffff;

    text-align: center;
}


.contact-page .contact-page-art-center span {
    font-size: 10px;
}


.contact-page .contact-page-art-center strong {
    margin-top: 2px;

    font-size: 28px;

    line-height: 1;
}


.contact-page .contact-page-floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 195px;

    padding: 12px 14px;

    border: 1px solid #dbe5f1;

    border-radius: 7px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 14px 35px rgba(28,64,110,.10);
}


.contact-page .contact-page-mini-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf3fc;

    color: #0a348b;

    font-size: 12px;
    font-weight: 800;
}


.contact-page .contact-page-floating-card strong {
    display: block;

    color: #1d2b41;

    font-size: 9px;
}


.contact-page .contact-page-floating-card small {
    display: block;

    margin-top: 3px;

    color: #8792a1;

    font-size: 7px;
}


.contact-page .contact-card-top {
    top: 25px;
    left: 5px;
}


.contact-page .contact-card-bottom {
    right: 0;
    bottom: 25px;
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-page .contact-page-main {
    padding: 85px 0;

    background: #ffffff;
}


.contact-page .contact-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    align-items: start;

    gap: 75px;
}


/* =========================================================
   INFORMATION
========================================================= */

.contact-page .contact-page-information {
    padding-top: 8px;
}


.contact-page .contact-page-section-label {
    color: #0a348b;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}


.contact-page .contact-page-information h2 {
    max-width: 450px;

    margin: 9px 0 15px;

    color: #17243a;

    font-size: 32px;

    line-height: 1.15;

    letter-spacing: -.7px;
}


.contact-page .contact-page-information h2 span {
    color: #0a348b;
}


.contact-page .contact-page-intro {
    max-width: 450px;

    margin: 0;

    color: #6f7b8c;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   DETAILS
========================================================= */

.contact-page .contact-page-details {
    margin-top: 35px;
}


.contact-page .contact-page-detail {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 21px;
}


.contact-page .contact-page-detail-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #edf3fb;

    color: #0a348b;

    font-size: 13px;
}


.contact-page .contact-page-detail span {
    display: block;

    margin-bottom: 3px;

    color: #929baa;

    font-size: 7px;
}


.contact-page .contact-page-detail a,
.contact-page .contact-page-detail strong {
    color: #26364d;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;
}


.contact-page .contact-page-social-wrap {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #e8edf3;
}


.contact-page .contact-page-social-wrap > span {
    color: #8994a3;

    font-size: 8px;
}


.contact-page .contact-page-social {
    display: flex;

    gap: 7px;
}


.contact-page .contact-page-social a {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe6ee;

    border-radius: 50%;

    color: #526177;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}


.contact-page .contact-page-social a:hover {
    border-color: #0a348b;

    background: #0a348b;

    color: #ffffff;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-page .contact-page-form-wrapper {
    padding: 30px;

    border: 1px solid #dfe6ef;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(26,62,108,.07);
}


.contact-page .contact-page-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e7ecf2;
}


.contact-page .contact-page-form-header > div > span {
    color: #0a348b;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}


.contact-page .contact-page-form-header h2 {
    margin: 5px 0 0;

    color: #1d2c42;

    font-size: 22px;

    line-height: 1.2;
}


.contact-page .contact-page-form-number {
    color: #d0d8e2;

    font-size: 28px;
    font-weight: 700;
}


/* =========================================================
   FORM GRID
========================================================= */

.contact-page .contact-page-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px 15px;
}


.contact-page .contact-page-form-group {
    min-width: 0;
}


.contact-page .contact-page-form-full {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
========================================================= */

.contact-page .contact-page-form label:not(.contact-page-checkbox) {
    display: block;

    margin-bottom: 7px;

    color: #334158;

    font-size: 9px;
    font-weight: 700;
}


.contact-page .contact-page-form label span {
    color: #d34747;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-page .contact-page-form input[type="text"],
.contact-page .contact-page-form input[type="email"],
.contact-page .contact-page-form input[type="tel"],
.contact-page .contact-page-form select,
.contact-page .contact-page-form textarea {

    width: 100%;

    border: 1px solid #dce4ed;

    border-radius: 5px;

    background: #ffffff;

    color: #29374d;

    font-family: inherit;

    font-size: 10px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.contact-page .contact-page-form input[type="text"],
.contact-page .contact-page-form input[type="email"],
.contact-page .contact-page-form input[type="tel"],
.contact-page .contact-page-form select {

    height: 43px;

    padding: 0 13px;
}


.contact-page .contact-page-form textarea {
    min-height: 115px;

    resize: vertical;

    padding: 12px 13px;
}


.contact-page .contact-page-form input::placeholder,
.contact-page .contact-page-form textarea::placeholder {
    color: #a5adb8;
}


.contact-page .contact-page-form input:focus,
.contact-page .contact-page-form select:focus,
.contact-page .contact-page-form textarea:focus {

    border-color: #7c9dcc;

    box-shadow:
        0 0 0 3px rgba(10,52,139,.06);
}


.contact-page .contact-page-form-group.has-error input,
.contact-page .contact-page-form-group.has-error select,
.contact-page .contact-page-form-group.has-error textarea {

    border-color: #dc5c5c;
}


/* =========================================================
   ERROR
========================================================= */

.contact-page .contact-page-error {
    display: block;

    min-height: 0;

    margin-top: 4px;

    color: #d34d4d;

    font-size: 7px;
}


/* =========================================================
   CHECKBOX
========================================================= */

.contact-page .contact-page-checkbox {
    position: relative;

    display: flex !important;
    align-items: flex-start;

    gap: 9px;

    color: #788394;

    font-size: 8px !important;
    font-weight: 400 !important;

    line-height: 1.6;

    cursor: pointer;
}


.contact-page .contact-page-checkbox input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.contact-page .contact-page-checkmark {
    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    margin-top: 1px;

    border: 1px solid #cbd5e0;

    border-radius: 3px;

    background: #ffffff;

    position: relative;
}


.contact-page .contact-page-checkbox input:checked
+ .contact-page-checkmark {

    border-color: #0a348b;

    background: #0a348b;
}


.contact-page .contact-page-checkbox input:checked
+ .contact-page-checkmark::after {

    content: "✓";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -55%);

    color: #ffffff;

    font-size: 9px;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-page .contact-page-submit-row {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 4px;
}


.contact-page .contact-page-submit-btn {
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 0 20px;

    border: 0;

    border-radius: 5px;

    background: #0a348b;

    color: #ffffff;

    font-family: inherit;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}


.contact-page .contact-page-submit-btn b {
    font-size: 15px;

    font-weight: 400;
}


.contact-page .contact-page-submit-btn:hover {
    background: #07276a;

    transform: translateY(-2px);
}


.contact-page .contact-page-submit-btn.loading {
    opacity: .7;

    pointer-events: none;
}


.contact-page .contact-page-secure-note {
    color: #929baa;

    font-size: 7px;
}


.contact-page .contact-page-secure-note span {
    margin-right: 4px;

    color: #3b9b63;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.contact-page .contact-page-success {
    grid-column: 1 / -1;

    display: none;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border: 1px solid #cde8d7;

    border-radius: 5px;

    background: #f2fbf5;
}


.contact-page .contact-page-success.show {
    display: flex;
}


.contact-page .contact-page-success-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #3c9a61;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


.contact-page .contact-page-success strong {
    display: block;

    color: #276c43;

    font-size: 10px;
}


.contact-page .contact-page-success p {
    margin: 3px 0 0;

    color: #6b8375;

    font-size: 8px;
}


/* =========================================================
   BENEFITS
========================================================= */

.contact-page .contact-page-benefits {
    padding: 80px 0;

    background: #f7f9fc;

    border-top: 1px solid #edf1f5;

    border-bottom: 1px solid #edf1f5;
}


.contact-page .contact-page-benefits-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.contact-page .contact-page-benefits-heading h2 {
    margin: 8px 0 0;

    color: #17243a;

    font-size: 30px;

    line-height: 1.15;
}


.contact-page .contact-page-benefits-heading h2 span {
    color: #0a348b;
}


.contact-page .contact-page-benefits-heading > p {
    max-width: 430px;

    margin: 0;

    color: #788394;

    font-size: 10px;

    line-height: 1.8;
}


.contact-page .contact-page-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.contact-page .contact-page-benefit {
    position: relative;

    min-height: 235px;

    padding: 27px;

    border: 1px solid #e0e6ee;

    border-radius: 7px;

    background: #ffffff;
}


.contact-page .contact-page-benefit-number {
    position: absolute;

    right: 20px;
    top: 18px;

    color: #dbe2ea;

    font-size: 22px;
    font-weight: 700;
}


.contact-page .contact-page-benefit-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 6px;

    background: #edf3fb;

    color: #0a348b;

    font-size: 16px;
}


.contact-page .contact-page-benefit h3 {
    margin: 0 0 9px;

    color: #25344b;

    font-size: 13px;
}


.contact-page .contact-page-benefit p {
    max-width: 270px;

    margin: 0;

    color: #7b8695;

    font-size: 9px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-page .contact-page-final-cta {
    padding: 65px 0;
}


.contact-page .contact-page-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px 42px;

    border-radius: 8px;

    background: #082e87;
}


.contact-page .contact-page-final-label {
    color: #a9c3ed;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}


.contact-page .contact-page-final-box h2 {
    margin: 7px 0 0;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.2;
}


.contact-page .contact-page-final-box h2 span {
    color: #bcd3f6;
}


.contact-page .contact-page-final-btn {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 5px;

    background: #ffd95d;

    color: #172e66;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: .2s ease;
}


.contact-page .contact-page-final-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.contact-page .contact-page-final-btn span {
    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.contact-page .site-footer {
    position: relative;

    z-index: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-page .contact-page-layout {
        gap: 40px;
    }


    .contact-page .contact-page-hero-grid {
        gap: 35px;
    }

}


/* =========================================================
   SMALL LAPTOP / TABLET
========================================================= */

@media (max-width: 850px) {

    .contact-page .contact-page-hero-grid {
        grid-template-columns: 1fr;
    }


    .contact-page .contact-page-hero-content {
        max-width: 700px;
    }


    .contact-page .contact-page-hero-art {
        max-width: 600px;

        margin: 0 auto;
    }


    .contact-page .contact-page-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-page .contact-page-information {
        max-width: 650px;
    }


    .contact-page .contact-page-benefits-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .contact-page .contact-page-benefits-heading > p {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-page .contact-page-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .contact-page .contact-page-hero {
        padding: 25px 0 45px;
    }


    .contact-page .contact-page-breadcrumb {
        margin-bottom: 28px;
    }


    .contact-page .contact-page-hero-content h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .contact-page .contact-page-hero-content > p {
        font-size: 12px;
    }


    .contact-page .contact-page-hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 16px;
    }


    .contact-page .contact-page-hero-art {
        height: 285px;
    }


    .contact-page .contact-page-art-circle.circle-one {
        width: 225px;
        height: 225px;
    }


    .contact-page .contact-page-art-circle.circle-two {
        width: 150px;
        height: 150px;
    }


    .contact-page .contact-page-art-center {
        width: 95px;
        height: 95px;
    }


    .contact-page .contact-page-art-center strong {
        font-size: 22px;
    }


    .contact-page .contact-page-floating-card {
        min-width: 155px;

        padding: 9px 10px;
    }


    .contact-page .contact-page-mini-icon {
        width: 27px;
        height: 27px;

        flex-basis: 27px;
    }


    .contact-page .contact-card-top {
        left: -5px;
    }


    .contact-page .contact-card-bottom {
        right: -5px;
    }


    .contact-page .contact-page-main {
        padding: 55px 0;
    }


    .contact-page .contact-page-information h2 {
        font-size: 28px;
    }


    .contact-page .contact-page-form-wrapper {
        padding: 20px 16px;
    }


    .contact-page .contact-page-form {
        grid-template-columns: 1fr;
    }


    .contact-page .contact-page-form-full {
        grid-column: auto;
    }


    .contact-page .contact-page-submit-row {
        grid-column: auto;

        align-items: flex-start;

        flex-direction: column;
    }


    .contact-page .contact-page-submit-btn {
        width: 100%;
    }


    .contact-page .contact-page-benefits {
        padding: 55px 0;
    }


    .contact-page .contact-page-benefits-grid {
        grid-template-columns: 1fr;
    }


    .contact-page .contact-page-benefit {
        min-height: auto;

        padding: 24px;
    }


    .contact-page .contact-page-final-cta {
        padding: 45px 0;
    }


    .contact-page .contact-page-final-box {
        align-items: flex-start;

        flex-direction: column;

        padding: 30px 24px;
    }


    .contact-page .contact-page-final-box h2 {
        font-size: 24px;
    }


    .contact-page .contact-page-final-btn {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .contact-page .contact-page-hero-content h1 {
        font-size: 31px;
    }


    .contact-page .contact-page-floating-card {
        transform: scale(.9);
    }

}