/* CONTACT WRAPPER */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

/* FORM BOX */
.contact-form {
  width: 100%;
  max-width: 600px;
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  animation: fadeIn 0.6s ease;
}

/* TITLE */
.contact-form h2 {
  text-align: center;
  color: #062a5e;
  margin-bottom: 20px;
}

/* LABEL */
.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #062a5e;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f9f9f9;
  transition: 0.3s;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #062a5e;
  background: white;
  box-shadow: 0 0 0 3px rgba(6,42,94,0.1);
}

/* BUTTON */
.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #062a5e, #0d47a1);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.contact-form button:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: 50vh !important;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  /* SECTION WRAPPER */
  .contact-section {
    padding: 30px 15px;
  }

  /* FORM BOX */
  .contact-form {
    padding: 20px;
    border-radius: 12px;
  }

  /* TITLE */
  .contact-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* LABEL */
  .contact-form label {
    font-size: 13px;
  }

  /* INPUTS */
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 13px;
  }

  /* BUTTON */
  .contact-form button {
    padding: 12px;
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  .contact-form {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

}