.booking-wrapper {
  max-width: 420px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  font-family: sans-serif;
}

.booking-wrapper h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2f4f4f;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.booking-wrapper input,
.booking-wrapper select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.booking-wrapper input:focus,
.booking-wrapper select:focus {
  outline: none;
  border-color: #7bb1a2;
}

.btn-book {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #7bb1a2;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
#time option:disabled {
  color: #aaa;
  background-color: #f5f5f5;
}

.btn-book:hover {
  background: #5e988a;
}
@media (max-width: 480px) {
  .booking-wrapper {
    margin: 20px;
    padding: 20px;
  }
}
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Ẩn nút radio gốc */
.service-selection input[type="radio"] {
    position: absolute;
      opacity: 0;
}

/* Thiết kế nút giả */
.service-item {
    flex: 1;
    padding: 12px 7px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    background-color: #fff;
    
    /* Hiệu ứng chuyển tiếp quan trọng */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hiệu ứng khi di chuột qua (Hover) */
.service-item:hover {
    border-color: #ffb400;
    color: #ffb400;
    transform: translateY(-3px); /* Nhảy nhẹ lên trên */
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.2);
}

/* Hiệu ứng khi được chọn (Checked) */
.service-selection input:checked + .service-item {
    background-color: #ffb400; /* Màu vàng giống nút Đặt ngay */
    border-color: #ffb400;
    color: #fff;
    transform: scale(1.05); /* Phóng to nhẹ */
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.3);
}

/* Hiệu ứng click (Active) */
.service-item:active {
    transform: scale(0.95); /* Nhấn lún xuống khi click */
}
.detail-box img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.detail-box h1 {
  margin: 10px 0;
}

.detail-box p {
  margin-bottom: 20px;
}

.detail-box .btn-box a {
  margin-top: 10px;
}
#customCarousel1, .carousel-item {
  height: 100vh; /* chiếm full màn hình */
  width: 100%;
  position: relative;
}