/* ================= section02 ================= */
.contact_section02 {
    position: relative;
    padding: 19.7rem 0 9rem;
    background: linear-gradient(to bottom, #fff, #7DB1D9);
    font-family: 'Manrope', sans-serif;
    color: var(--title);
}

.contact_section02 .left_col {
    width: 24.7%;
    flex-shrink: 0;
    padding-top: 11rem;
}

.contact_section02 .subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(58, 66, 99, 0.7);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact_section02 .social_head .subtitle {
    color: #3a4263;
    text-transform: capitalize;
}

.contact_section02 .email_link {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--title);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_section02 .email_link:hover {
    color: var(--primary);
}

.contact_section02 .separator {
    height: 1px;
    background: var(--secondary);
    opacity: 0.24;
    margin: 14.3rem 0 3.2rem;
    width: 100%;
}

.contact_section02 .social_list {
    margin-top: 2.2rem;
    gap: 1.5rem;
}

.contact_section02 .social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    color: var(--title);
}

.contact_section02 .social_link img {
    width: 2.4rem;
    max-height: 2.2rem;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.contact_section02 .social_link:hover {
    transform: translateY(-3px);
}

.contact_section02 .social_link.active {
    background-color: var(--primary);
}

.contact_section02 .social_link.active img {
    filter: brightness(100);
}

.contact_section02 .desc {
    font-size: 1.7rem;
    color: var(--secondary);
    line-height: 1.5;
    margin-top: 14.5rem;
}

.contact_section02 .right_col {
    width: 66.54%;
    min-width: 0;
}

.contact_section02 .title {
    font-size: 5.4rem;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 5rem;
    max-width: 100%;
}

.contact_section02 .form_row {
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.contact_section02 .field_label {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 1.5rem;
}

.contact_section02 .input_wrapper {
    position: relative;
    width: 100%;
    height: 5.6rem;
    background: #f7f8f9;
    border-radius: 0.4rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    box-shadow: 2px 0 8px rgba(155, 161, 165, 0.14);
}

.contact_section02 .input_wrapper:focus-within {
    border-color: var(--primary);
}

.contact_section02 input:not([type="submit"], [type="checkbox"]) {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 2rem;
    font-size: 1.6rem;
    color: var(--title);
    font-family: inherit;
    outline: none;
}

.contact_section02 .input::placeholder {
    color: #7c7d7f;
}

.contact_section02 .phone_prefix {
    padding: 0 1.5rem;
    height: 100%;
    gap: 0.8rem;
    cursor: pointer;
}

body .wpcf7 form .wpcf7-response-output {
    padding: 0;
    margin: 0;
    border: none;
    margin-top: 1rem;
}

.contact_section02 .prefix_flag {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact_section02 .prefix_flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_section02 .prefix_code {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--title);
}

.contact_section02 .prefix_icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: #898989;
    stroke-width: 1.5;
}

.contact_section02 .prefix_divider {
    width: 1px;
    height: 2.4rem;
    background: var(--title);
    opacity: 0.24;
    margin: 0 0.5rem;
    margin-top: 1.5rem;
    margin-left: -0.5rem;
    margin-right: 1.5rem;
}

.contact_section02 .phone_input {
    padding: 0 1.5rem 0 0;
}

.contact_section02 .textarea_wrapper {
    height: 13rem;
    padding: 2rem;
    background: #f7f8f9;
    border-radius: 0.4rem;
    box-shadow: 2px 0 8px rgba(155, 161, 165, 0.14);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact_section02 .textarea_wrapper:focus-within {
    border-color: var(--primary);
}

.contact_section02 textarea {
    width: 100%;
    height: 100%;
    resize: none;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    font-family: inherit;
    outline: none;
    color: var(--title);
}

.intl-tel-input {
    width: 100%;
    height: 100%;
}

.contact_section02 textarea::placeholder {
    color: #7c7d7f;
}

.contact_section02 .consent_row {
    margin-top: 3rem;
    gap: 1.5rem;
}

.contact_section02 .checkbox_input {
    width: 2rem;
    height: 2rem;
    border-radius: 0.2rem;
    background: #fff;
    border: 1px solid #ddd;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact_section02 .checkbox_input:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.contact_section02 .checkbox_input:checked::after {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0.2rem;
    width: 0.5rem;
    height: 1.1rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact_section02 .consent_text {
    font-size: 1.6rem;
    color: var(--text);
    line-height: 1.6;
}

.contact_section02 .consent_text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.contact_section02 .submit_btn {
    margin-top: 4rem;
    width: 20.8rem;
    height: 6.2rem;
    border-radius: 3.1rem;
    background: var(--primary);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact_section02 .submit_btn:hover {
    background: var(--secondary);
}

.contact_section02 .req {
    color: var(--primary);
}

/* ================= section03 ================= */
.contact_section03 {
    padding: 15rem 0 12rem;
    overflow: hidden;
}

.contact_section03 .head {
    margin-bottom: 5rem;
}

.contact_section03 .head h2 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--title);
    margin: 0 auto;
    max-width: 80rem;
}

.contact_section03 .main_row {
    position: relative;
    width: 100%;
}

.contact_section03 .left_col {
    width: 41.91%;
    aspect-ratio: 570/570;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.contact_section03 .img_wrapper {
    width: 100%;
    height: 100%;
    border-radius: 1.95rem 0 0 1.95rem;
    overflow: hidden;
    background: #f1f3f5;
}

.contact_section03 .img_wrapper .img_cv {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_section03 .img_wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_section03 .map_popup {
    position: absolute;
    left: 9.1rem;
    top: 15rem;
    width: 38rem;
    background: #ffffff;
    border-radius: 1.64rem;
    box-shadow: 0.8rem 0 2.4rem rgba(155, 161, 165, 0.44);
    padding: 1.7rem 2.3rem 2.4rem 2.3rem;
    z-index: 3;
}

.contact_section03 .popup_logos {
    gap: 1.4rem;
    margin-bottom: 2.2rem;
}

.contact_section03 .popup_logos img {
    width: 17.4rem;
    height: auto;
    object-fit: contain;
}

.contact_section03 .popup_logos .icon3 {
    height: 1.68rem;
}

.contact_section03 .map_popup h5 {
    font-size: 1.6rem;
    color: var(--title);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact_section03 .map_popup p {
    font-size: 1.4rem;
    color: #60686d;
    line-height: 1.6;
}

.contact_section03 .map_marker {
    position: absolute;
    left: 25.96rem;
    top: 35.63rem;
    width: 4.3rem;
    height: 4.3rem;
    background: rgba(7, 89, 188, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.contact_section03 .map_marker img {
    width: 2.8rem;
    height: 2.8rem;
    display: block;
}

.contact_section03 .right_col {
    width: 58.09%;
    background: #eff5f9;
    border-radius: 0 2.27rem 2.27rem 0;
    padding: 14.9rem 5rem 14.9rem 8rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 57rem;
}

.contact_section03 .right_inner h3 {
    font-size: 3.8rem;
    color: var(--title);
    font-weight: 700;
    margin-bottom: 3.4rem;
    max-width: 60rem;
}

.contact_section03 .line_icon {
    width: 7.6rem;
    margin-bottom: 3rem;
    display: block;
}

.contact_section03 .desc {
    font-size: 1.8rem;
    color: #60686d;
    line-height: 1.77;
    margin-bottom: 6rem;
    max-width: 61rem;
}

.contact_section03 .icon_box {
    width: 6.4rem;
    height: 6.4rem;
    background: var(--primary);
    border-radius: 0.6rem;
    flex-shrink: 0;
    justify-content: center;
}

.contact_section03 .icon_box img {
    width: 3.1rem;
    height: auto;
}

.contact_section03 .details h4 {
    font-size: 2rem;
    color: var(--title);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact_section03 .details p {
    font-size: 1.8rem;
    color: #60686d;
    line-height: 1.77;
}

/* ================= iPad Pro (max-width: 1220px) ================= */
@media screen and (min-width: 769px) and (max-width: 1220px) {

    /* section02 */
    .contact_section02 .content {
        flex-direction: column;
        gap: 4rem;
    }

    .contact_section02 .left_col {
        width: 100%;
        padding-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact_section02 .separator {
        display: none;
    }

    .contact_section02 .title {
        font-size: 4.6rem;
        margin-bottom: 3.5rem;
    }

    .contact_section02 .desc {
        margin-top: 2rem;
        width: 100%;
    }

    /* section03 */
    .contact_section03 .content {
        padding: 0 4rem;
    }

    .contact_section03 .left_col {
        width: 45rem;
        height: 45rem;
    }

    .contact_section03 .right_col {
        width: calc(100% - 41.2rem);
        height: auto;
        padding: 6rem 4rem 6rem 8rem;
    }

    .contact_section03 .map_popup {
        left: 4rem;
        top: 10rem;
        width: 34rem;
    }

    .contact_section03 .map_marker {
        left: 18rem;
        top: 28rem;
    }
}

/* ================= iPad (max-width: 1024px) ================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    /* section02 */
    .contact_section02 {
        padding: 8rem 0;
    }

    .contact_section02 .title {
        font-size: 4rem;
    }

    /* section03 */
    .contact_section03 .main_row {
        flex-direction: column;
    }

    .contact_section03 .right_col {
        margin-left: 0;
        margin-top: -6rem;
        width: 100%;
        max-width: 80rem;
        padding: 12rem 6rem 6rem;
    }
    .contact_section02 .left_col{
        order: 9 !important;
        display: block;
    }
    .contact_section02 .right_col{
        width: 100%;
    }
    .contact_section03 .left_col{
        width: 100% !important;
    }
    .contact_section03 .map_popup, .contact_section03 .map_marker{
        display: none !important;
    }
    .contact_section03 .right_col{
        width: 100% !important;
        max-width: unset !important;
    }
}

/* ================= iPad Mini (max-width: 896px) ================= */
@media screen and (min-width: 769px) and (max-width: 896px) {

    /* section02 */
    .contact_section02 .form_row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .contact_section02 .form_group.flex1,
    .contact_section02 .form_row .flex1 {
        width: 100%;
        flex: none;
    }

    /* section03 */
    .contact_section03 .content {
        padding: 0 3rem;
    }
}

/* ================= Mobile (max-width: 768px) ================= */
@media screen and (max-width: 768px) {

    /* section02 */
    .contact_section02 {
        padding: 120px 0 60px;
    }

    .contact_section02 .content {
        flex-direction: column;
        gap: 30px;
        width: 92%;
    }

    .contact_section02 .left_col {
        width: 100%;
        padding-top: 0;
    }

    .contact_section02 .subtitle {
        font-size: 14px;
    }

    .contact_section02 .email_link {
        font-size: 20px;
    }

    .contact_section02 .separator {
        margin: 20px 0;
    }

    .contact_section02 .social_link {
        width: 40px;
        height: 40px;
    }

    .contact_section02 .social_link img {
        width: 20px;
        max-height: 18px;
    }

    .contact_section02 .desc {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .contact_section02 .right_col {
        width: 100%;
    }

    .contact_section02 .title {
        font-size: 25px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .contact_section02 .form_row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact_section02 .form_group.flex1 {
        width: 100%;
        flex: none;
    }

    .contact_section02 .field_label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact_section02 .input_wrapper {
        height: 44px;
    }

    .contact_section02 .input_field {
        font-size: 14px;
        padding: 0 15px;
    }

    .contact_section02 .phone_prefix {
        padding: 0 10px;
    }

    .contact_section02 .prefix_code {
        font-size: 14px;
    }

    .contact_section02 .textarea_wrapper {
        height: 100px;
        padding: 15px;
    }

    .contact_section02 .textarea_field {
        font-size: 14px;
    }

    .contact_section02 .consent_row {
        margin-top: 20px;
        gap: 10px;
    }

    .contact_section02 .consent_text {
        font-size: 13px;
    }

    .contact_section02 .submit_btn {
        margin-top: 25px;
        width: 100%;
        height: 44px;
        font-size: 14px;
    }

    /* section03 */
    .contact_section03 {
        padding: 40px 0;
    }

    .contact_section03 .content {
        padding: 0 20px;
    }

    .contact_section03 .head {
        margin-bottom: 25px;
    }

    .contact_section03 .head h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .contact_section03 .main_row {
        flex-direction: column;
    }

    .contact_section03 .left_col {
        width: 100%;
        max-width: 100%;
        height: 250px;
        aspect-ratio: unset;
        margin-bottom: -30px;
    }

    .contact_section03 .img_wrapper {
        border-radius: 16px 16px 0 0;
    }

    .contact_section03 .map_popup {
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
        width: 90%;
        max-width: 300px;
        padding: 15px;
        border-radius: 12px;
    }

    .contact_section03 .popup_logos {
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact_section03 .popup_logos img {
        width: 120px;
    }

    .contact_section03 .map_popup h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact_section03 .map_popup p {
        font-size: 12px;
    }

    .contact_section03 .map_marker {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 20px;
        width: 36px;
        height: 36px;
    }

    .contact_section03 .map_marker img {
        width: 22px;
        height: 22px;
    }

    .contact_section03 .right_col {
        margin-left: 0;
        width: 100%;
        height: auto;
        max-height: unset;
        padding: 50px 20px 30px;
        border-radius: 0 0 16px 16px;
    }

    .contact_section03 .right_inner h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .contact_section03 .line_icon {
        width: 50px;
        margin-bottom: 15px;
    }

    .contact_section03 .desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .contact_section03 .icon_box {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }

    .contact_section03 .icon_box img {
        width: 24px;
    }

    .contact_section03 .details h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact_section03 .details p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ================= Small Mobile (max-width: 576px) ================= */
@media screen and (max-width: 576px) {

    /* section02 */
    .contact_section02 {
        padding: 100px 0 50px;
    }

    .contact_section02 .title {
        font-size: 22px;
    }

    .contact_section02 .email_link {
        font-size: 18px;
    }

    .contact_section02 .consent_text {
        font-size: 12px;
    }

    /* section03 */
    .contact_section03 .head h2 {
        font-size: 20px;
    }

    .contact_section03 .left_col {
        height: 220px;
    }

    .contact_section03 .right_col {
        padding: 40px 15px 25px;
    }

    .contact_section03 .right_inner h3 {
        font-size: 20px;
    }

    .contact_section03 .desc {
        font-size: 13px;
    }

    .contact_section03 .details h4 {
        font-size: 15px;
    }

    .contact_section03 .details p {
        font-size: 13px;
    }

    .contact_section03 .icon_box {
        width: 42px;
        height: 42px;
    }

    .contact_section03 .icon_box img {
        width: 20px;
    }
}