/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding: 50px 0;
    background: #ffffff;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 70px;
}

/* TITLE */
.contact-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 60px;
}

.contact-title-icon {
    width: 26px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.contact-offices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    column-gap: 70px;
    row-gap: 55px;
}

.contact-office {
    font-size: 1.4rem;
    color: #000;
}

.office-location {
    font-size: 1.6rem;
    font-weight: 600;
    color: #060EA0;
    margin-bottom: 6px;
}

.office-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.office-address,
.office-contact {
    font-size: 1.1rem;
    line-height: 1.55;
}

.contact-right {
    display: flex;
    justify-content: flex-end;
}

.contact-form-box {
    width: 100%;
    max-width: 550px;
    padding: 34px 30px;
    background: #fffefe;
    border: 1.5px solid #060EA0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 87, 255, 0.08);
}

.contact-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-submit input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 65px 10px 25px;
    border-radius: 50px;
    border: 1px solid #060EA0;
    font-size: 1rem;
    cursor: pointer;
    color: #060EA0;

    background-image:
        url('http://opendemo.gr/ahi_corporate/wp-content/uploads/2025/12/Component-30-–-1.svg'),
        linear-gradient(to right, #060EA0 50%, #fff 50%);
    background-repeat: no-repeat, no-repeat;
    background-position: right 28px center, right bottom;
    background-size: 25px, 200% 100%;
    transition: background-position .35s ease-out, color .35s ease-out;
}

.contact-submit input[type="submit"]:hover {
    background-position: right 28px center, left bottom;
    color: #fff;
}

.contact-submit .wpcf7-spinner {
    display: none !important;
}


@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-title-wrap {
        justify-content: center;
    }

    .contact-offices {
        grid-template-columns: 1fr;
    }

    .contact-right {
        justify-content: center;
    }

    .contact-form-box {
        max-width: 100%;
    }
}



@media (max-width: 992px) {
    .form-control {
        margin-top: 15px;
    }

}

@media (max-width: 768px) {

    .contact-checkboxes {
        gap: 20px;
    }

}