body{
font-family: Arial, sans-serif;
}

.contact-section{
background:#f5f5f5;
padding: 135px 40px;
}

.contact-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

/* CONTACT INFO */

.contact-info h2{
margin-bottom:30px;
}

.info-item{
display:flex;
gap:15px;
margin-bottom:20px;
}

.icon{
background:#f0e8ff;
color:#6b46c1;
padding:10px;
border-radius:8px;
}

/* STEPS BOX */

.steps-box{
background:white;
padding:25px;
border-radius:10px;
margin-top:30px;
}

.step{
display:flex;
gap:15px;
margin-top:15px;
}

.step-number{
background:#7c3aed;
color:white;
width:28px;
height:28px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
}

/* FORM */

.contact-form{
background:white;
padding:30px;
border-radius:10px;
}

.contact-form h2{
margin-bottom:20px;
}

.row{
display:flex;
gap:15px;
margin-bottom:15px;
}

.row input,
.row select{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
margin-bottom:20px;
height:120px;
}

.contact-btn{
background:#7c3aed;
color:white;
padding:14px;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
width:100%;
}

button:hover{
background:#6d28d9;
}

/* MOBILE */

@media (max-width:900px){

.contact-container{
grid-template-columns:1fr;
}

.row{
flex-direction:column;
}

}
.contact-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px auto;
    }
    
    .subtitle{
    color:#7c3aed;
    font-weight:600;
    margin-bottom:10px;
    }
    
    .contact-header h1{
    font-size:42px;
    margin-bottom:15px;
    line-height:1.2;
    }
    
    .description{
    color:#666;
    font-size:16px;
    }
/* =============================================
   CONTACT MOBILE FIXES
   ============================================= */

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 16px !important;
  }

  .contact-header h1 {
    font-size: 28px !important;
  }

  .contact-header {
    margin-bottom: 40px !important;
  }

  /* Stack 3 selects vertically */
  .row {
    flex-direction: column !important;
  }

  .row input,
  .row select {
    width: 100%;
  }

  textarea {
    box-sizing: border-box;
  }
}