

*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}


.contact-section {
     padding: 120px 20px 60px;
    background: #fff8e1;
    text-align: center; 
    position: relative;
    margin-top: 20px;
    z-index: 990;
    
}

.contact-section h1 {
    color: #2B2B2B;
    margin-top: 8px;
    /* margin-bottom: 20px; */
}

.contact-section p{
    margin-bottom: 25px;
    color: #2B2B2B;
}

.contact-form {
    max-width: 500px;
    margin: auto;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

select, input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

/* Focus effect for inputs */
 select:focus,
input:focus,
textarea:focus {
    border-color: #ff5722; 
} 

/* Remove old + label CSS since labels are not used */
 input:focus + label,
input:placeholder-shown + label,
textarea:focus + label,
textarea:placeholder-shown + label {
    display: none; 
} 

.btn.order {
    background-color: #F4A261;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
}

.btn.order:hover {
    background-color: #e64a19;
}

@media (max-width: 480px) {

  .contact-section {
    padding: 110px 15px;
    margin-top: 10px;
  }

  .contact-section h1 {
    font-size: 24px;
  }

  .contact-section p {
    font-size: 14px;
  }

  .contact-form {
    width: 100%;
  }

  select, 
  input, 
  textarea {
    font-size: 14px;
    padding: 10px;
  }

  .btn.order {
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  
  .contact-section {
    padding: 130px 20px;
  }

  .contact-section h1 {
    font-size: 28px;
  }

  .contact-form {
    width: 80%;
  }

  .btn.order {
    padding: 12px 25px;
    font-size: 16px;
  }
}


@media (max-width: 1024px) {

  .contact-section {
    padding: 140px 20px;
  }

  .contact-form {
    width: 70%;
  }
} 
