/* ===========================
   General Page Styling
=========================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #faf7ff 0%, #f3f1f7 100%);
  
}

/* ===========================
   Contact Section (Form)
=========================== */
.contact-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.container {
  max-width: 900px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  color: #333;
}

/* Titles */
.contact-subtitle {
  /* text-transform: uppercase; */
  color: #f5a623;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 25px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0;
  text-align: center;
}

.contact-desc {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

/* ===========================
   Form Layout
=========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

/* Inputs & Selects */
.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f5a623;
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.3);
}

/* Textarea */
textarea {
  resize: none;
  height: 120px;
}

/* ===========================
   Button
=========================== */
.btn-wrapper {
  text-align: center;
}

.btn {
  background-color: #f5a623;
  color: #000;
  border: none;
  padding: 12px 35px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background-color: #ffb84d;
}


/* ===========================
   Responsive Design
=========================== */
@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
  }

  .container {
    padding: 30px;
  }

  .contact-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 15px;
  }

  .container {
    padding: 25px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  
}
