/*==================================================
    CONTACT HEADER
==================================================*/

.th-contact-header{
    padding:100px 0 80px;
    background:#ffffff;
}

.th-contact-header-content{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.th-contact-header-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#F74723;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.th-contact-header-title{
    margin:0 0 25px;
    color:#002147;
    font-size:48px;
    font-weight:700;
    line-height:1.25;
}

.th-contact-header-description{
    margin:0;
    color:#666666;
    font-size:17px;
    line-height:1.9;
}


/*==================================================
    CONTACT INFO
==================================================*/

.th-contact-info{
    padding:0 0 90px;
    background:#ffffff;
}

.th-contact-info-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.th-contact-card{
    padding:35px 30px;

    text-align:center;

    background:#ffffff;

    border:2px solid #dfe7f0;
    border-radius:18px;

    box-shadow:
        0 10px 30px rgba(0,33,71,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.th-contact-card:hover{
    transform:translateY(-6px);

    border-color:#cbd8e6;

    box-shadow:
        0 18px 40px rgba(0,33,71,.13);
}

.th-contact-card-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#175A99;
    color:#ffffff;
    font-size:28px;
}

.th-contact-card-title{
    margin:0 0 15px;
    color:#002147;
    font-size:22px;
    font-weight:700;
}

.th-contact-card-text{
    margin:0;
    color:#666666;
    font-size:16px;
    line-height:1.8;
}

.th-contact-card-text a{
    color:#666666;
    text-decoration:none;
    transition:.3s;
}

.th-contact-card-text a:hover{
    color:#F74723;
}



/*==================================================
    CONTACT FORM
==================================================*/

.th-contact-form{
    padding:0 0 100px;
    background:#ffffff;
}

.th-contact-form-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    margin-bottom:70px;
    gap:60px;
    align-items:center;
}

.th-contact-form-content{
    max-width:500px;
}

.th-contact-form-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#F74723;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.th-contact-form-title{
    margin:0 0 18px;
    color:#002147;
    font-size:36px;
    font-weight:700;
    line-height:1.2;
    white-space:nowrap;
}

.th-contact-form-description{
    margin:0;
    color:#666666;
    font-size:17px;
    line-height:1.9;
}


/*==================================================*
* CONTACT FORM 7 BOX — FINAL
*==================================================*/

.th-contact-form-box{
    padding:35px 40px;
    background:#002147;
    border-radius:20px;
    border:1px solid #002147;
    box-shadow:0 20px 50px rgba(0,33,71,.15);
}


/*==================================================*
* FORM LABELS
*==================================================*/

.th-contact-form-box form label{
    display:block;
    margin:0 0 6px;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    line-height:1.4;
}


/*==================================================*
* INPUT / SELECT
*==================================================*/

.th-contact-form-box form input[type="text"],
.th-contact-form-box form input[type="email"],
.th-contact-form-box form input[type="tel"],
.th-contact-form-box form input[type="number"],
.th-contact-form-box form select,
.th-contact-form-box form textarea{

    width:100%;
    box-sizing:border-box;
    display:block;

    height:44px;

    padding:10px 14px;

    margin:0 0 14px;

    background:#ffffff;
    color:#002147;

    font-family:inherit;
    font-size:14px;

    border:1px solid #d9e1ea;
    border-radius:7px;

    outline:none;

    transition:all .25s ease;
}


/*==================================================*
* INPUT FOCUS
*==================================================*/

.th-contact-form-box form input[type="text"]:focus,
.th-contact-form-box form input[type="email"]:focus,
.th-contact-form-box form input[type="tel"]:focus,
.th-contact-form-box form input[type="number"]:focus,
.th-contact-form-box form select:focus,
.th-contact-form-box form textarea:focus{

    border-color:#F74723;

    box-shadow:
        0 0 0 3px rgba(247,71,35,.12);
}


/*==================================================*
* PLACEHOLDER
*==================================================*/

.th-contact-form-box form input::placeholder,
.th-contact-form-box form textarea::placeholder{
    color:#999999;
    opacity:1;
}


/*==================================================*
* COURSE SELECT
*==================================================*/

.th-contact-form-box form select{
    height:44px;
    cursor:pointer;
}


/*==================================================*
* SUBMIT BUTTON
*==================================================*/

.th-contact-form-box form input[type="submit"],
.th-contact-form-box form button[type="submit"]{

    display:inline-block;

    width:auto;
    min-width:135px;

    height:42px;

    padding:9px 25px;

    margin-top:3px;

    background:#F74723;
    color:#ffffff;

    border:0;
    border-radius:7px;

    font-family:inherit;
    font-size:14px;
    font-weight:700;

    line-height:1.4;
    text-align:center;

    cursor:pointer;

    transition:all .25s ease;
}


.th-contact-form-box form input[type="submit"]:hover,
.th-contact-form-box form button[type="submit"]:hover{

    background:#ffffff;
    color:#002147;

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}


/*==================================================*
* FORM PARAGRAPH SPACING
*==================================================*/

.th-contact-form-box form p{
    margin:0 0 3px;
}


/*==================================================*
* CF7 WRAPPER
*==================================================*/

.th-contact-form-box .wpcf7-form-control-wrap{
    display:block;
}


/*==================================================*
* VALIDATION
*==================================================*/

.th-contact-form-box .wpcf7-not-valid-tip{
    display:block;
    margin-top:-9px;
    margin-bottom:9px;

    color:#ffd4ca;
    font-size:12px;
}


/*==================================================*
* SUCCESS / RESPONSE MESSAGE
*==================================================*/

.th-contact-form-box .wpcf7-response-output{
    margin:15px 0 0;
    padding:10px 14px;

    border-radius:7px;

    color:#ffffff;
    font-size:13px;
}


/*==================================================*
* CONTACT FORM → MAP GAP
*==================================================*/

.th-contact-form{
    padding:0 0 70px;
}

.th-contact-map{
    padding:0 0 100px;
}


/*==================================================
    CONTACT MAP
==================================================*/

.th-contact-map{
    padding:0 0 100px;
    background:#ffffff;
}

.th-contact-map-wrapper{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.th-contact-map-wrapper iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

.th-contact-map-placeholder{
    padding:120px 30px;
    text-align:center;
    background:#f8fafc;
    border:2px dashed #d8e1ea;
}

.th-contact-map-placeholder h3{
    margin:0 0 15px;
    color:#002147;
    font-size:30px;
    font-weight:700;
}

.th-contact-map-placeholder p{
    margin:0;
    color:#666666;
    font-size:16px;
    line-height:1.8;
}