/* === Booking Page === */
#booking {
  padding: 40px 20px;
  text-align: center;
}

/* === Service Category Title Styles === */
#booking h3 {
  margin-top: 40px;
  font-size: 1.6em;
  color: #007B5E;
}

#booking h4 {
  margin-bottom: 5px;
}

.service-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin: 10px auto;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* === Payment Modal Styles === */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007B5E;
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.4em;
}

.close {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  transition: color 0.3s;
}

.close:hover {
  color: #ccc;
}

.modal-body {
  padding: 30px;
}

.payment-info {
  margin-bottom: 30px;
}

.payment-info h4 {
  color: #007B5E;
  margin: 15px 0 5px 0;
  font-size: 1.1em;
}

.payment-info p {
  margin: 0 0 15px 0;
  color: #333;
}

.payment-amount-display {
  font-size: 2.5em !important;
  font-weight: bold !important;
  color: #007B5E !important;
  text-align: center;
  margin: 20px 0 !important;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #007B5E;
}

.payment-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-pay {
  background-color: #007B5E;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  flex: 1;
  max-width: 200px;
}

.btn-pay:hover {
  background-color: #005a45;
}

.btn-cancel {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
  flex: 1;
  max-width: 200px;
}

.btn-cancel:hover {
  background-color: #545b62;
}