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

.contactPage{
    background:#f7fafc;
}

.contactContainer{
    width:min(1200px,calc(100% - 40px));
    margin:auto;
}


/*==========================
Contact Info
==========================*/

.contactInfo{
    padding:90px 0;
    background:#fff;
}

.contactGrid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:center;
}

.contactEn{
    display:block;
    color:#0789c8;
    font-size:12px;
    font-weight:700;
    letter-spacing:.25em;
    margin-bottom:16px;
}

.contactLeft h2{
    font-size:44px;
    color:#183241;
    line-height:1.3;
    margin-bottom:24px;
}

.contactDesc{
    color:#5c6d78;
    line-height:2;
    font-size:17px;
}


/*==========================
Info Card
==========================*/

.contactCards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.contactCard{
    background:#fff;
    border-radius:18px;
    padding:30px 24px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.contactCard:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.contactCard .icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#0789c8;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    margin-bottom:18px;
}

.contactCard h3{
    font-size:20px;
    color:#183241;
    margin-bottom:12px;
}

.contactCard p{
    color:#5c6d78;
    line-height:1.9;
}


/*==========================
Map
==========================*/

.contactMap{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    background:#e9eef2;
    min-height:520px;
}

.contactMap iframe{
    width:100%;
    height:520px;
    border:0;
    display:block;
}


/*==========================
Form
==========================*/

.contactFormSection{
    padding:90px 0;
}

.formHead{
    text-align:center;
    margin-bottom:50px;
}

.formHead span{
    display:block;
    color:#0789c8;
    font-size:12px;
    font-weight:700;
    letter-spacing:.25em;
    margin-bottom:16px;
}

.formHead h2{
    font-size:42px;
    color:#183241;
    margin-bottom:18px;
}

.formHead p{
    color:#5c6d78;
    line-height:2;
    max-width:760px;
    margin:auto;
}

.formBox{
    background:#fff;
    border-radius:22px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.formList{
    display:flex;
    flex-wrap:wrap;
    gap:24px 0;
}

.formColumn{
    padding:0 12px;
    box-sizing:border-box;
}

.g-6{
    width:50%;
}

.g-12{
    width:100%;
}

.columnTitle{
    display:block;
    margin-bottom:12px;
    font-size:15px;
    color:#183241;
    font-weight:600;
}

.requireStyle::after{
    content:" *";
    color:#d93025;
}

.columnInput,
.columnSelect,
.columnTextarea{
    width:100%;
    border:1px solid #d8e2e8;
    border-radius:12px;
    padding:14px 18px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.columnTextarea{
    resize:vertical;
    min-height:180px;
}

.columnInput:focus,
.columnSelect:focus,
.columnTextarea:focus{
    border-color:#0789c8;
    outline:none;
}

.formBtn{
    text-align:center;
    margin-top:40px;
}

.formBtn .btn{
    min-width:240px;
}


/*==========================
Responsive
==========================*/

@media(max-width:1024px){

    .contactGrid{
        gap:40px;
    }

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

    .contactLeft h2{
        font-size:38px;
    }

}

@media(max-width:900px){

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

    .contactRight{
        order:-1;
    }

    .contactMap,
    .contactMap iframe{
        height:420px;
        min-height:420px;
    }

}

@media(max-width:768px){

    .contactInfo,
    .contactFormSection{
        padding:70px 0;
    }

    .contactLeft h2{
        font-size:32px;
    }

    .formHead h2{
        font-size:34px;
    }

    .g-6{
        width:100%;
    }

    .formBox{
        padding:30px 24px;
    }

}

@media(max-width:480px){

    .contactContainer{
        width:calc(100% - 30px);
    }

    .contactInfo,
    .contactFormSection{
        padding:60px 0;
    }

    .contactLeft h2{
        font-size:28px;
    }

    .contactDesc,
    .formHead p{
        font-size:15px;
    }

    .contactMap,
    .contactMap iframe{
        height:320px;
        min-height:320px;
    }

    .contactCard{
        padding:24px 20px;
    }

    .contactCard h3{
        font-size:18px;
    }

    .formHead h2{
        font-size:28px;
    }

    .formBtn .btn{
        width:100%;
        min-width:inherit;
    }

}