/* HERO SECTION */
.hero {
  position: relative;
  height: 500px;
  background: url('../images/attractive-female-doctor-front-medical-600nw-291144536.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

/* CONTACT FORM SECTION */

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #36C2C9;
}

#contact-form-section {
  position: relative;
  padding: 10px 0;
  color: var(--black);
  font-family: 'Roboto', sans-serif;
}

#contact-form-section .overlay {
  background: linear-gradient(to bottom, #d8f9f8, #b6f1ec);
  padding: 60px 20px;
}

/* Centered Form */
#contact-form-section .form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Form Card */
#contact-form-section .booking-form {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

#contact-form-section .booking-form:hover {
  transform: translateY(-3px);
}

/* Form Fields */
#contact-form-section .form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

#contact-form-section label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

#contact-form-section input,
#contact-form-section select,
#contact-form-section textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ff842d;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-form-section input:focus,
#contact-form-section select:focus,
#contact-form-section textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(54,194,201,0.1);
  outline: none;
}

/* Buttons */
#contact-form-section .form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#contact-form-section .btn-orange,
#contact-form-section .btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

#contact-form-section .btn-orange {
  background: orangered;
  color: #fff;
}
#contact-form-section .btn-orange:hover { background: #d94d1e; }

#contact-form-section .btn-whatsapp {
  background: #25D366;
  color: #fff;
}
#contact-form-section .btn-whatsapp:hover { background: #1ebe57; }

/* Responsive Fix */
@media (max-width: 600px) {
  #contact-form-section .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  #contact-form-section .btn-orange,
  #contact-form-section .btn-whatsapp {
    width: 100%;
    flex: unset;
  }
}
#successMessage {
  font-size: 16px;
  color: #36C2C9;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}