/* =========================================
   ELACTREE CONTACT SECTION
========================================= */

.el-contact-section{
    background:#f7f8fa;
    padding:90px 0;
}

.el-contact-wrapper{
    background:#fff;
    border-radius:28px;
    padding:55px;
    border:1px solid #ececec;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

/* =========================================
   HEADING
========================================= */

.el-contact-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.el-contact-tag{
    display:inline-block;
    padding:10px 18px;
    background:#eef9df;
    color:#74d31d;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.el-contact-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin-bottom:18px;
}

.el-contact-heading p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

/* =========================================
   FORM BOX
========================================= */

.el-contact-form-box{
    background:#fff;
    border:1px solid #ededed;
    border-radius:24px;
    padding:40px;
    height:100%;
}

.el-form-head{
    margin-bottom:30px;
}

.el-form-head h3{
    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.el-form-head p{
    color:#666;
    line-height:1.8;
}

/* =========================================
   FORM
========================================= */

.form-group{
    position:relative;
}

.form-control{
    height:60px;
    border-radius:16px;
    border:1px solid #e5e5e5;
    background:#fff;
    padding:0 20px;
    font-size:15px;
    box-shadow:none !important;
    transition:all 0.3s ease;
}

textarea.form-control{
    height:160px !important;
    padding-top:18px;
    resize:none;
}

.form-control:focus{
    border-color:#74d31d;
    box-shadow:0 0 0 4px rgba(116,211,29,0.10) !important;
}

/* =========================================
   BUTTON
========================================= */

.el-contact-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#74d31d;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:all 0.3s ease;
}

.el-contact-btn:hover{
    background:#5fbb0f;
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(116,211,29,0.22);
}

/* =========================================
   MAP
========================================= */

.el-map-box{
    height:100%;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ececec;
}

.el-map-box iframe{
    width:100%;
    height:100%;
    min-height:100%;
    border:0;
}

/* =========================================
   INFO CARDS
========================================= */

.el-info-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:28px;
    height:100%;
    transition:all 0.3s ease;
}

.el-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
    border-color:#dff0cb;
}

.el-info-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#74d31d;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.el-info-icon i{
    color:#fff;
    font-size:24px;
}

.el-info-card h4{
    font-size:21px;
    font-weight:600;
    color:#111;
    margin-bottom:12px;
}

.el-info-card p{
    color:#666;
    line-height:1.8;
    font-size:14px;
    margin:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .el-contact-wrapper{
        padding:35px;
    }

    .el-contact-heading h2{
        font-size:38px;
    }

    .el-form-head h3{
        font-size:28px;
    }

    .el-map-box iframe{
        min-height:400px;
    }
}

@media(max-width:767px){

    .el-contact-section{
        padding:50px 0;
    }

    .el-contact-wrapper{
        padding:22px;
        border-radius:20px;
    }

    .el-contact-heading{
        margin-bottom:40px;
    }

    .el-contact-heading h2{
        font-size:30px;
    }

    .el-contact-form-box{
        padding:24px;
        border-radius:18px;
    }

    .el-form-head h3{
        font-size:24px;
    }

    .form-control{
        height:54px;
        border-radius:14px;
    }

    textarea.form-control{
        height:140px !important;
    }

    .el-contact-btn{
        height:54px;
        border-radius:14px;
    }

    .el-map-box{
        border-radius:18px;
    }

    .el-map-box iframe{
        min-height:320px;
    }

    .el-info-card{
        border-radius:18px;
        padding:22px;
    }

    .el-info-icon{
        width:56px;
        height:56px;
    }

    .el-info-icon i{
        font-size:22px;
    }

    .el-info-card h4{
        font-size:18px;
    }
}