/* General Styling */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

h2, p {
  margin: 0;
}

/* Phone Booking Section */
.phone_booking_container {
  background-color: #eaf7ff;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 4px #0000001a;
}

.phone_booking {
  font-size: 1.1rem;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem; /* Space between icon and text */
}

.phone_booking i {
  font-size: 1.5rem;
  color: #007bff;
}

.phone_booking .phone_link {
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone_booking .phone_link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.additional_message {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.625rem;
}

/* Appointment Section */
.appointment_section {
  margin-top: 10vh;
  padding: 3.125rem 1.25rem;
  background: #fff;
}

.section_heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section_heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.section_heading p {
  font-size: 1.2rem;
  color: #555;
}

/* Appointment Form */
.appointment_form_wrapper {
  max-width: 37.5rem;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 1.25rem 1.875rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px #0000001a;
}

.appointment_form .form_group {
  margin-bottom: 1.25rem;
}

.appointment_form .form_control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: inset 0 1px 3px #0000001a;
  transition: border-color 0.3s ease-in-out;
}

.appointment_form .form_control:focus {
  border-color: #007bff;
  outline: none;
}

.appointment_form .message-box {
  height: 100px;
}

.appointment_form .btn_primary {
  display: block;
  width: 100%;
  padding: 0.9375rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #007bff;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.appointment_form .btn_primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section_heading h2 {
    font-size: 2rem;
  }

  .section_heading p {
    font-size: 1rem;
  }

  .appointment_form_wrapper {
    padding: 1rem 1.25rem;
  }

  .phone_booking {
    flex-direction: column;
    gap: 0.3125rem; /* Reduces space between icon and text */
  }

  .phone_booking_container {
    padding: 1rem;
  }

  .phone_booking i {
    font-size: 1.3rem;
  }

  .phone_booking_container p {
    font-size: 0.85rem;
  }
}
