/* Start custom CSS for html, class: .elementor-element-50ca167 */.contact-section{
    padding:120px 0;
    background:#f8f9fb;
    position:relative;
    overflow:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ff9800;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    margin:15px 0;
    color:#111;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* CONTACT WRAPPER */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

/* INFO SIDE */

.contact-info{
    display:grid;
    gap:25px;
}

.info-card{
    background:#fff;
    padding:30px;
    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card .icon{
    font-size:45px;
    margin-bottom:15px;
}

.info-card h3{
    margin-bottom:10px;
    color:#111;
}

.info-card p{
    color:#666;
    line-height:1.8;
}

/* FORM */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:15px;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#ff9800;
}

.submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;

    background:
    linear-gradient(
    90deg,
    #ffcc00,
    #ff9800
    );

    color:#111;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
}

/* WHATSAPP BOX */

.whatsapp-box{
    margin-top:60px;
    text-align:center;

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    padding:50px;
    border-radius:30px;
    color:#fff;
}

.whatsapp-box h3{
    font-size:36px;
    margin-bottom:15px;
}

.whatsapp-box p{
    color:#ddd;
    margin-bottom:25px;
}

.whatsapp-btn{
    display:inline-block;
    padding:15px 35px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
}

/* MOTION GRAPHICS */

.floating-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
}

.circle1{
    width:250px;
    height:250px;
    background:rgba(255,204,0,.12);
    top:-100px;
    left:-100px;
}

.circle2{
    width:300px;
    height:300px;
    background:rgba(255,115,0,.08);
    bottom:-100px;
    right:-100px;
}

/* RESPONSIVE */

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:38px;
}

.whatsapp-box h3{
    font-size:28px;
}

}/* End custom CSS */