/* Global page reset and typography */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #12365f;
  background-color: #f6f9fc;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

/* Full page booking layout */
.booking-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

/* Centered booking section */
.booking-section {
  width: 100%;
}

/* Max width wrapper for the booking content */
.booking-container {
  width: min(500px, 100%);
  margin: 0 auto;
}

/* Heading area above the form card */
.booking-header {
  margin-bottom: 28px;
  text-align: center;
}

/* Small medical label */
.booking-label {
  margin: 0 0 8px;
  color: #0679c8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Main page title */
.booking-header h1 {
  margin: 0 0 10px;
  color: #12365f;
  font-size: clamp(32px, 7vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

/* Subtitle text */
.booking-header p:last-child {
  margin: 0;
  color: #5d7690;
  font-size: 15px;
  line-height: 1.6;
}

/* White booking form card */
.booking-form-card {
  padding: 30px;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 22px 60px rgba(18, 54, 95, 0.12);
}

/* Individual form field group */
.form-group {
  margin-bottom: 18px;
}

/* Accessible form labels */
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #12365f;
  font-size: 14px;
  font-weight: 700;
}

/* Shared input and select styling */
.form-group input,
.form-group select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(18, 54, 95, 0.16);
  border-radius: 14px;
  padding: 0 15px;
  color: #12365f;
  background-color: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

/* Placeholder color */
.form-group input::placeholder {
  color: #94a7ba;
}

/* Blue focus state for better accessibility */
.form-group input:focus,
.form-group select:focus {
  border-color: #0679c8;
  box-shadow: 0 0 0 4px rgba(6, 121, 200, 0.12);
}

/* Primary WhatsApp booking button */
.whatsapp-button {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border: 0;
  border-radius: 14px;
  background-color: #25d366;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* WhatsApp button hover effect */
.whatsapp-button:hover,
.whatsapp-button:focus {
  background-color: #1fb85a;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* Secondary blue home button */
.secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  border-radius: 14px;
  background-color: #0679c8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Secondary button hover effect */
.secondary-button:hover,
.secondary-button:focus {
  background-color: #045f9f;
  box-shadow: 0 14px 28px rgba(6, 121, 200, 0.22);
  transform: translateY(-2px);
}

/* Small mobile spacing adjustments */
@media (max-width: 420px) {
  .booking-page {
    padding: 24px 12px;
  }

  .booking-form-card {
    padding: 24px;
    border-radius: 20px;
  }
}
