/* === BOOKING APPOINTMENT === */
.booking-section {
  max-width: 520px;
  margin: 140px auto 80px;
  padding: 32px 28px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.booking-section h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #002c5f; /* Hyundai Blue */
}

.booking-section p {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* === FORM === */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus state */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #002c5f;
  box-shadow: 0 0 0 2px rgba(0, 44, 95, 0.15);
}

/* Textarea */
.form-group textarea {
  resize: vertical;
}

/* === BUTTON === */
.btn-book {
  width: 100%;
  padding: 13px;
  margin-top: 10px;
  background: #002c5f;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-book:hover {
  background: #001f42;
}

.btn-book:active {
  transform: scale(0.98);
}

/* === MOBILE === */
@media (max-width: 480px) {
  .booking-section {
    margin: 120px 16px 60px;
    padding: 24px 18px;
  }

  .booking-section h1 {
    font-size: 22px;
  }

  .booking-section p {
    font-size: 13px;
  }
}
