.elementor-884 .elementor-element.elementor-element-52a0a06{--display:flex;--margin-top:-86px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-36b84eb */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.contact-section{
    font-family:'Poppins',sans-serif;
    padding:100px 8%;
    background:
    radial-gradient(circle at top left, rgba(235,91,0,0.10), transparent 35%),
    radial-gradient(circle at bottom right, rgba(217,22,86,0.10), transparent 35%);
}




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

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */

.contact-content .tag{
    display:inline-block;
    padding:10px 20px;
    background:#fff;
    color:#D91656;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-content h2{
    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
    color:#111;
}

.contact-content h2 span{
    color:#EB5B00;
}

.contact-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

/* =========================
   INFO BOXES
========================= */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-box{
    background:#fff;
    padding:25px;
    border-radius:25px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.4s;
    border-left:5px solid #EB5B00;
}

.info-box:hover{
    transform:translateX(8px);
}

.info-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#EB5B00,#D91656);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

.info-text h4{
    font-size:20px;
    margin-bottom:8px;
}

.info-text p{
    margin:0;
    color:#666;
    line-height:1.7;
}

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

.contact-form{
    background:#fff;
    padding:50px;
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.contact-form::before{
    content:'';
    position:absolute;
    top:-70px;
    right:-70px;
    width:180px;
    height:180px;
    background:#EB5B00;
    border-radius:50%;
    opacity:0.08;
}

.contact-form::after{
    content:'';
    position:absolute;
    bottom:-60px;
    left:-60px;
    width:160px;
    height:160px;
    background:#D91656;
    border-radius:50%;
    opacity:0.08;
}

.form-content{
    position:relative;
    z-index:2;
}

.form-content h3{
    font-size:34px;
    margin-bottom:10px;
}

.form-content p{
    color:#666;
    margin-bottom:30px;
}

/* INPUTS */

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #eee;
    border-radius:15px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    transition:0.3s;
    background:#fafafa;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#EB5B00;
    outline:none;
    background:#fff;
    box-shadow:0 0 0 4px rgba(235,91,0,0.08);
}

.input-group textarea{
    min-height:140px;
    resize:none;
}

/* BUTTON */

.contact-btn{
    width:100%;
    padding:17px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#EB5B00,#D91656);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.contact-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(217,22,86,0.25);
}

/* =========================
   SCROLL ANIMATION
========================= */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}/* End custom CSS */