@charset "UTF-8";
.booking-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .booking-container {
    padding: 12px;
  }
}
.booking-container h1 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .booking-container h1 {
    font-size: 20px;
  }
}
.booking-container .booking-content {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .booking-container .booking-content {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}
.booking-container .booking-content .booking-main {
  flex: 1;
}
.booking-container .booking-content .booking-sidebar {
  width: 400px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .booking-container .booking-content .booking-sidebar {
    width: 100%;
  }
}

.tour-summary {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
.tour-summary .summary-content {
  display: flex;
  justify-content: space-between;
}
.tour-summary .departure-section {
  flex: 1;
  width: 50%;
}
.tour-summary .departure-section .date-range {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}
.tour-summary .departure-section .date-range .date-block {
  text-align: left;
}
.tour-summary .departure-section .date-range .date-block .day-label {
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.tour-summary .departure-section .date-range .date-block .date {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 700;
  display: block;
}
.tour-summary .departure-section .date-range .arrow {
  color: #666;
  font-size: 20px;
  margin: 0 8px;
}
.tour-summary .departure-section .tour-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tour-summary .departure-section .tour-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0d0d0d;
  font-size: 16px;
}
.tour-summary .departure-section .tour-features .feature-item i {
  color: #0d0d0d;
  width: 20px;
  font-size: 16px;
}
.tour-summary .price-section {
  text-align: right;
  flex-shrink: 0;
  width: 45%;
}
.tour-summary .price-section .discount-badge {
  background: #ff4444;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}
.tour-summary .price-section .price-info {
  padding-bottom: 16px;
}
.tour-summary .price-section .price-info .price-label {
  color: #0d0d0d;
  font-size: 14px;
}
.tour-summary .price-section .price-info .price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.tour-summary .price-section .price-info .price-row .original-price {
  color: #999;
  font-size: 18px;
  text-decoration: line-through;
}
.tour-summary .price-section .price-info .price-row .current-price {
  color: #333;
  font-size: 28px;
  font-weight: 700;
}
.tour-summary .price-section .price_child,
.tour-summary .price-section .price_infant {
  padding-bottom: 16px;
}
.tour-summary .price-section .price_child .price-label,
.tour-summary .price-section .price_infant .price-label {
  color: #0d0d0d;
  font-size: 14px;
}
.tour-summary .price-section .price_child .price-amount,
.tour-summary .price-section .price_infant .price-amount {
  color: #333;
  font-size: 28px;
  font-weight: 700;
}
.tour-summary .price-section .seats-info {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  padding: 16px 0;
  margin-bottom: 16px;
}
.tour-summary .price-section .seats-info .seats-label {
  color: #0d0d0d;
  font-size: 14px;
}
.tour-summary .price-section .seats-info .seats-count {
  color: #0d0d0d;
  font-size: 20px;
  font-weight: 700;
}
.tour-summary .price-section .booking-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.tour-summary .price-section .booking-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tour-summary .price-section .booking-actions .btn.btn-cancel {
  color: #0d0d0d;
}
.tour-summary .price-section .booking-actions .btn.btn-change {
  background: #ffebee;
  color: #d32f2f;
  border-radius: 4px 4px 24px 4px;
}
.tour-summary .price-section .booking-actions .btn.btn-change:hover {
  background: #ffcdd2;
}
@media (max-width: 768px) {
  .tour-summary {
    padding: 16px;
  }
  .tour-summary .summary-content {
    flex-direction: column;
    gap: 20px;
  }
  .tour-summary .price-section {
    text-align: left;
    width: 100%;
  }
  .tour-summary .departure-section {
    width: 100%;
  }
  .tour-summary .departure-section .date-range {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tour-summary .departure-section .date-range .arrow {
    transform: rotate(90deg);
  }
  .tour-summary .departure-section .tour-features .feature-item {
    font-size: 14px;
  }
  .tour-summary .departure-section .tour-features .feature-item i {
    font-size: 14px;
  }
}

.passenger-selection {
  background: white;
  margin-bottom: 24px;
}
.passenger-selection h5 {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 12px;
  position: relative;
}
.passenger-selection h5::after {
  content: "";
  display: block;
  background: #e40808;
  position: absolute;
  height: 1px;
  width: 35%;
  bottom: 0;
}
.passenger-selection .passenger-controls {
  display: flex;
  gap: 80px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 18px;
}
@media (max-width: 768px) {
  .passenger-selection .passenger-controls {
    flex-direction: column;
    gap: 16px;
    padding: 12px;
  }
}
.passenger-selection .passenger-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .passenger-selection .passenger-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  .passenger-selection .passenger-type .type-info {
    width: 100%;
  }
}
.passenger-selection .passenger-type .type-info .type-label {
  font-weight: 500;
  color: #333;
  font-size: 16px;
}
.passenger-selection .passenger-type .type-info .age-range {
  color: #666;
  font-size: 13px;
  margin-top: 2px;
}
.passenger-selection .passenger-type .quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f8f8;
  border-radius: 4px;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 8px;
  min-width: 180px;
}
@media (max-width: 768px) {
  .passenger-selection .passenger-type .quantity-controls {
    width: 100%;
    margin-top: 0;
    padding: 10px;
  }
}
.passenger-selection .passenger-type .quantity-controls .qty-btn {
  width: 20px;
  height: 20px;
  border: 2px solid #0d0d0d;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.passenger-selection .passenger-type .quantity-controls .qty-btn:hover:not(.disabled) {
  border-color: #007bff;
  color: #007bff;
}
.passenger-selection .passenger-type .quantity-controls .qty-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.passenger-selection .passenger-type .quantity-controls .qty-btn i {
  font-size: 12px;
}
.passenger-selection .passenger-type .quantity-controls .qty-input {
  height: 36px;
  text-align: right;
  font-weight: 500;
  border: 0;
  background: #f8f8f8;
}

.passenger-type {
  margin-bottom: 12px;
  background: #fff;
}

.passenger-type .type-label {
  font-weight: 500;
  color: #333;
  flex-basis: 120px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-basis: 120px;
  justify-content: center;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-input {
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  font-weight: 500;
}

.price-per-person {
  flex-basis: 180px;
  text-align: right;
  font-size: 14px;
}

.price-label {
  color: #6c757d;
  font-size: 13px;
}

.price-value {
  font-weight: 600;
  color: #e74c3c;
  margin: 0 4px;
}

.per-person-text {
  color: #6c757d;
  font-size: 13px;
}

/* Sidebar Summary Styles */
.summary-widget {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.summary-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.summary-hint {
  font-size: 12px;
  color: #6c757d;
}

.summary-list {
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.item-details {
  flex: 1;
}

.item-type {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.item-breakdown {
  font-size: 12px;
  color: #6c757d;
  margin-top: 2px;
}

.item-total {
  font-weight: 600;
  color: #e74c3c;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 12px;
}

.summary-totals {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  margin-top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-row.subtotal {
  font-size: 14px;
}

.summary-row.discount {
  font-size: 14px;
}

.summary-row.discount .summary-value {
  color: #28a745;
}

.summary-row.total {
  font-weight: 600;
  font-size: 18px;
  padding-top: 12px;
  border-top: 2px solid #dee2e6;
  margin-top: 8px;
}

.summary-label {
  color: #0d0d0d;
}

.summary-value {
  font-weight: 600;
  color: #0d0d0d;
}

.summary-row.total .summary-value {
  color: #e74c3c;
  font-size: 20px;
}

.booking-btn {
  width: 100%;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover:not(:disabled) {
  background: #c0392b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.booking-btn:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.empty-summary {
  text-align: center;
  padding: 24px;
  color: #6c757d;
  font-size: 14px;
}

@media (max-width: 768px) {
  .passenger-type {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .passenger-type .type-label,
  .quantity-controls,
  .price-per-person {
    flex-basis: auto;
    text-align: center;
  }
  .summary-item {
    gap: 8px;
  }
  .item-total {
    margin-left: 0;
    text-align: right;
  }
}
.layout-choose-accommodation h5 {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 12px;
  position: relative;
}
.layout-choose-accommodation h5::after {
  content: "";
  display: block;
  background: #e40808;
  position: absolute;
  height: 1px;
  width: 20%;
  bottom: 0;
}

.booking-form h5 {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 12px;
  position: relative;
}
.booking-form h5::after {
  content: "";
  display: block;
  background: #e40808;
  position: absolute;
  height: 1px;
  width: 35%;
  bottom: 0;
}
.booking-form .form-section-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-form .form-section-title i {
  color: #007bff;
}
.booking-form .form-group {
  margin-bottom: 20px;
}
.booking-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0d0d0d;
}
.booking-form .form-group label .required {
  color: #dc3545;
}
.booking-form .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.booking-form .form-group .form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.booking-form .form-group .form-control.error {
  border-color: #dc3545;
}
.booking-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.booking-form .form-group .text-danger {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
}
.booking-form .submit-btn {
  width: 100%;
  background: #dc3545;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.booking-form .submit-btn:hover {
  background: #c82333;
}
.booking-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.booking-form .block-note {
  margin-bottom: 24px;
}
.booking-form .block-note h6 {
  margin: 0;
  color: #0d0d0d;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-form .block-note h6 img {
  width: 16px;
  height: 16px;
}
.booking-form .block-note h6 span {
  color: #0d0d0d;
}
@media (max-width: 768px) {
  .booking-form .block-note h6 {
    display: unset !important;
  }
}
.booking-form .passenger-detail-card .card {
  border-radius: 16px;
  transition: all 0.3s ease;
}
.booking-form .passenger-detail-card h6 {
  color: #0d0d0d !important;
}
.booking-form .passenger-detail-card .card-header {
  background: #f5f5f5;
  margin: 8px;
  border-radius: 12px;
  border-bottom: 0;
}
.booking-form .passenger-detail-card .passenger-collapse-btn {
  text-decoration: none;
  color: #0d0d0d;
  font-weight: 500;
  border: none;
  outline: none;
}
.booking-form .passenger-detail-card .passenger-collapse-btn:focus {
  box-shadow: none;
}
.booking-form .passenger-detail-card .passenger-collapse-btn .passenger-title {
  font-size: 16px;
  color: #0d0d0d;
}
.booking-form .passenger-detail-card .passenger-collapse-btn .passenger-subtitle {
  font-size: 16px;
  color: #0d0d0d;
}
.booking-form .passenger-detail-card .passenger-collapse-btn .collapse-icon {
  transition: transform 0.3s ease;
  color: #0d0d0d;
}
.booking-form .passenger-detail-card .card-body {
  padding: 18px 24px 0 24px;
  background: white;
  border-radius: 24px;
}
.booking-form .passenger-detail-card .card-body .form-control {
  font-family: "Opensans-Regular";
}
.booking-form .passenger-detail-card .form-group .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: white;
}
.booking-form .passenger-detail-card .form-group .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}
.booking-form .passenger-detail-card .form-group .form-select.is-invalid {
  border-color: #dc3545;
}
.booking-form .passenger-detail-card .form-group .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.booking-form .form-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}
.booking-form .form-actions .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.booking-form .form-actions .btn.btn-primary {
  background: #007bff;
  border-color: #007bff;
}
.booking-form .form-actions .btn.btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
}

.price-summary {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e9ecef;
  position: sticky;
  top: 20px;
}
.price-summary .summary-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.price-summary .schedule-selector {
  margin-bottom: 20px;
}
.price-summary .schedule-selector .selector-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  display: block;
}
.price-summary .schedule-selector .schedule-options {
  display: flex;
  gap: 8px;
}
.price-summary .schedule-selector .schedule-options .schedule-option {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.price-summary .schedule-selector .schedule-options .schedule-option.active {
  border-color: #dc3545;
  background: #dc3545;
  color: white;
}
.price-summary .schedule-selector .schedule-options .schedule-option:hover:not(.active) {
  border-color: #dc3545;
}
.price-summary .passenger-summary {
  margin-bottom: 20px;
}
.price-summary .passenger-summary .passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.price-summary .passenger-summary .passenger-row .passenger-info {
  display: flex;
  flex-direction: column;
}
.price-summary .passenger-summary .passenger-row .passenger-info .passenger-type {
  font-weight: 500;
  color: #333;
}
.price-summary .passenger-summary .passenger-row .passenger-info .passenger-age {
  font-size: 12px;
  color: #666;
}
.price-summary .passenger-summary .passenger-row .passenger-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-summary .passenger-summary .passenger-row .passenger-controls .qty-btn {
  width: 20px;
  height: 20px;
  border: 2px solid #0d0d0d;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.price-summary .passenger-summary .passenger-row .passenger-controls .qty-btn:hover:not(.disabled) {
  border-color: #007bff;
  color: #007bff;
}
.price-summary .passenger-summary .passenger-row .passenger-controls .qty-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.price-summary .passenger-summary .passenger-row .passenger-controls .qty-display {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: #dc3545;
}
.price-summary .passenger-summary .passenger-row .passenger-controls .price-display {
  color: #dc3545;
  font-weight: 600;
}
.price-summary .additional-fees {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f3f4;
}
.price-summary .additional-fees .fee-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}
.price-summary .additional-fees .fee-row .fee-amount {
  color: #dc3545;
  font-weight: 500;
}
.price-summary .contact-info {
  margin-bottom: 20px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.price-summary .contact-info .info-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.price-summary .contact-info .info-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
.price-summary .contact-info .info-link:hover {
  text-decoration: underline;
}
.price-summary .total-price {
  padding: 16px 0;
  border-top: 2px solid #f1f3f4;
  text-align: center;
}
.price-summary .total-price .total-label {
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}
.price-summary .total-price .total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #dc3545;
}
.price-summary .book-now-btn {
  width: 100%;
  background: #dc3545;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.price-summary .book-now-btn:hover {
  background: #c82333;
}
.price-summary .book-now-btn i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .booking-container .booking-content {
    flex-direction: column;
  }
  .booking-container .booking-content .booking-sidebar {
    width: 100%;
    order: -1;
  }
  .price-summary {
    position: static;
  }
}
.tour-booking-widget {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  position: sticky;
  top: 20px;
}
@media (max-width: 768px) {
  .tour-booking-widget {
    padding: 16px;
    position: static;
  }
}

.widget-header {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .widget-header {
    margin-bottom: 16px;
  }
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .widget-title {
    font-size: 16px;
  }
}

.widget-subtitle {
  font-size: 14px;
  color: #0d0d0d;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .widget-subtitle {
    font-size: 13px;
  }
}

/* Departure Dates */
.departure-dates {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .departure-dates {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .departure-dates::-webkit-scrollbar {
    height: 4px;
  }
  .departure-dates::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
  }
}

.date-option {
  flex: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.date-option:last-child .date-box span {
  color: #0d0d0d;
  font-size: 14px;
}

.date-option.active .date-box {
  color: #0d0d0d;
  border-color: #e40808;
}

.date-box {
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: "Opensans-Regular";
}
@media (max-width: 768px) {
  .date-box {
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}

.date-option:hover .date-box {
  border-color: #e74c3c;
  background: #fff5f5;
}

.all-dates-btn .date-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
}

.passenger-type-right {
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #ebebeb;
  margin-bottom: 12px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .passenger-type-right {
    padding: 10px 12px;
  }
}

.type-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .type-info {
    flex: 1;
  }
}

.type-label {
  font-size: 14px;
  color: #0d0d0d;
}
@media (max-width: 768px) {
  .type-label {
    font-size: 13px;
  }
}

.age-range {
  font-size: 14px;
  color: #0d0d0d;
}
@media (max-width: 768px) {
  .age-range {
    font-size: 12px;
  }
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .quantity-controls {
    gap: 10px;
  }
}

.qty-btn {
  width: 20px;
  height: 20px;
  border: 2px solid #1e1e1e;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.qty-btn:hover {
  background: #f8f9fa;
  border-color: #e74c3c;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-input {
  width: 40px;
  text-align: end;
  border: none;
  font-weight: 600;
  font-size: 16px;
}

.booking-btn {
  width: 100%;
  background: #e40808;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .booking-btn {
    padding: 14px;
    font-size: 15px;
  }
}
.booking-btn img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}
@media (max-width: 768px) {
  .booking-btn img {
    width: 18px;
    height: 18px;
  }
}
.booking-btn:disabled, .booking-btn.disabled {
  background: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}
.booking-btn:disabled img, .booking-btn.disabled img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(88%);
  opacity: 0.6;
}

.booking-btn:hover:not(:disabled):not(.disabled) {
  background: #c0392b;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .booking-btn:hover:not(:disabled):not(.disabled) {
    transform: none;
  }
}

.contact-text {
  font-size: 14px;
  color: #4a90e2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 12px 0;
}

.layout-choose-accommodation {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .layout-choose-accommodation {
    margin: 20px 0;
  }
}

.accommodation-option {
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  background: #fff;
  display: grid;
  grid-template-columns: 55% 45%;
}
@media (max-width: 768px) {
  .accommodation-option {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
    margin-bottom: 16px;
  }
}

.accommodation-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.accommodation-header h6 {
  margin: 0;
  font-weight: 600;
  color: #0d0d0d;
}

.availability-badge {
  background-color: #fdf8f4;
  color: #e40808;
  padding: 4px 16px;
  border-radius: 16px;
  font-size: 13px;
}

.accommodation-details {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 768px) {
  .accommodation-details {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
}
.accommodation-details li {
  color: #0d0d0d;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-features span {
  font-size: 14px;
  color: #0d0d0d;
}
@media (max-width: 768px) {
  .room-features span {
    font-size: 13px;
  }
}

.pricing-info {
  text-align: right;
}
@media (max-width: 768px) {
  .pricing-info {
    text-align: left;
    width: 100%;
  }
}

.adult-price,
.child-price,
.infant-price {
  display: flex;
  flex-direction: column;
}

.adult-price {
  margin-bottom: 12px;
}

.price {
  font-weight: 600;
  color: #e74c3c;
  font-size: 16px;
  font-family: "Opensans-SemiBold";
}

.per-person {
  font-size: 13px;
  color: #0d0d0d;
  margin-left: 8px;
}

.selection-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .selection-controls {
    min-width: 100%;
    gap: 10px;
  }
}

.selection-controls select {
  font-size: 14px;
  padding: 8px 12px;
  font-family: "Opensans-Regular";
}
@media (max-width: 768px) {
  .selection-controls select {
    font-size: 13px;
    padding: 10px;
  }
  .accommodation-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pricing-info {
    text-align: left;
  }
  .selection-controls {
    min-width: 100%;
  }
}
.total-amount {
  font-size: 20px;
  font-weight: 700;
  color: #e40808;
}

.hotel-star-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hotel-radio {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hotel-radio input[type=radio] {
  display: none;
}

.hotel-radio:hover {
  border-color: #ffc107;
  background-color: #fffbf0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.hotel-radio input[type=radio]:checked ~ label,
.hotel-radio:has(input[type=radio]:checked) {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.hotel-radio label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  margin: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.hotel-radio input[type=radio]:checked ~ label {
  color: #f57c00;
  font-weight: 600;
}

.hotel-radio .fa-star {
  color: #ffc107;
  transition: all 0.3s ease;
}

.hotel-radio input[type=radio]:checked ~ label .fa-star {
  color: #ff9800;
  transform: scale(1.1);
}

.accommodation-option {
  display: none;
}

.accommodation-option.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
select:disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

/* ====== Sidebar Summary ====== */
.summary-widget {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .summary-widget {
    padding: 14px;
    border-radius: 12px;
  }
}

.summary-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .summary-header {
    margin-bottom: 12px;
  }
}

.summary-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary-title {
    font-size: 15px;
  }
}

.summary-hint {
  color: #888;
}
@media (max-width: 768px) {
  .summary-hint {
    font-size: 12px;
  }
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  overflow: auto;
  padding-right: 2px;
}
@media (max-width: 768px) {
  .summary-list {
    max-height: 250px;
    gap: 8px;
  }
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 10px 12px;
  border: 1px dashed #eee;
  border-radius: 12px;
  background: #fcfcfc;
}
@media (max-width: 768px) {
  .summary-row {
    padding: 8px 10px;
    gap: 6px;
  }
}

.summary-row .left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-room {
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .summary-room {
    font-size: 13px;
  }
}

.summary-meta {
  color: #666;
  font-size: 12px;
}
@media (max-width: 768px) {
  .summary-meta {
    font-size: 11px;
  }
}

.summary-calc {
  font-size: 13px;
  color: #444;
}
@media (max-width: 768px) {
  .summary-calc {
    font-size: 12px;
  }
}

.summary-amt {
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .summary-amt {
    font-size: 14px;
  }
}

.summary-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 768px) {
  .summary-total {
    font-size: 15px;
    padding-top: 10px;
    margin-top: 10px;
  }
}

.summary-total strong {
  font-size: 18px;
}
@media (max-width: 768px) {
  .summary-total strong {
    font-size: 16px;
  }
}

.hotel-block {
  margin-bottom: 2rem;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-header {
  background: #6a1b1b;
  /* đỏ trầm */
  color: #fff;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.accommodation-option {
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;
}

.accommodation-option:last-child {
  border-bottom: none;
}

.room-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #087be4;
}

.room-features {
  font-size: 0.9rem;
  color: #555;
}

.pricing-info .price {
  font-weight: 600;
  color: #e20000;
}

.form-select {
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  border-color: #6a1b1b;
  box-shadow: 0 0 0 0.2rem rgba(106, 27, 27, 0.25);
}

.form-select.disabled,
.form-select:disabled {
  background: #f9f9f9;
  color: #aaa;
  cursor: not-allowed;
}

#booking-btn-sidebar.disabled,
#booking-btn-sidebar:disabled {
  background-color: #ccc !important;
  /* nền xám */
  color: #666 !important;
  /* chữ xám */
  cursor: not-allowed;
  /* đổi icon chuột */
  border-color: #bbb !important;
  /* viền mờ */
  opacity: 0.7;
  /* mờ đi */
}

/* ====== Package Type 1 Styles (Per Person Pricing) ====== */
.passenger-type.package-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
}
.passenger-type.package-1 .type-label {
  font-weight: 500;
  color: #333;
  flex-basis: 120px;
}
.passenger-type.package-1 .quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-basis: 120px;
  justify-content: center;
}
.passenger-type.package-1 .price-per-person {
  flex-basis: 180px;
  text-align: right;
  font-size: 14px;
}
.passenger-type.package-1 .price-per-person .price-label {
  color: #6c757d;
  font-size: 13px;
}
.passenger-type.package-1 .price-per-person .price-value {
  font-weight: 600;
  color: #e74c3c;
  margin: 0 4px;
}
.passenger-type.package-1 .price-per-person .per-person-text {
  color: #6c757d;
  font-size: 13px;
}
@media (max-width: 768px) {
  .passenger-type.package-1 {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .passenger-type.package-1 .type-label,
  .passenger-type.package-1 .quantity-controls,
  .passenger-type.package-1 .price-per-person {
    flex-basis: auto;
    text-align: center;
  }
}

.total-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}
.total-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.total-summary .summary-row:last-child {
  margin-bottom: 0;
}
.total-summary .summary-row.total {
  font-weight: 600;
  font-size: 16px;
  padding-top: 12px;
  border-top: 1px solid #dee2e6;
  margin-top: 12px;
}
.total-summary .summary-row.total .summary-value {
  color: #e74c3c;
  font-size: 18px;
}
.total-summary .summary-row.discount .summary-value {
  color: #28a745;
}

@media (max-width: 768px) {
  .passenger-detail-card .card-body {
    padding: 12px !important;
  }
}
/* ====== Form Footer Actions ====== */
.form-footer-actions {
  margin-top: 30px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .form-footer-actions {
    padding: 16px;
    margin-top: 20px;
  }
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .terms-checkbox {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.terms-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #e40808;
}
@media (max-width: 768px) {
  .terms-input {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}

.terms-label {
  font-size: 14px;
  line-height: 1.6;
  color: #0d0d0d;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .terms-label {
    font-size: 13px;
    line-height: 1.5;
  }
}

.hotel-block {
  margin-bottom: 2rem;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-header {
  background: #6a1b1b;
  /* đỏ trầm */
  color: #fff;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.accommodation-option {
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;
}

.accommodation-option:last-child {
  border-bottom: none;
}

.room-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #087be4;
}

.room-features {
  font-size: 0.9rem;
  color: #555;
}

.pricing-info .price {
  font-weight: 600;
  color: #e20000;
}

.form-select {
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  border-color: #6a1b1b;
  box-shadow: 0 0 0 0.2rem rgba(106, 27, 27, 0.25);
}

.form-select.disabled,
.form-select:disabled {
  background: #f9f9f9;
  color: #aaa;
  cursor: not-allowed;
}

#booking-btn-sidebar.disabled,
#booking-btn-sidebar:disabled {
  background-color: #ccc !important;
  /* nền xám */
  color: #666 !important;
  /* chữ xám */
  cursor: not-allowed;
  /* đổi icon chuột */
  border-color: #bbb !important;
  /* viền mờ */
  opacity: 0.7;
  /* mờ đi */
}

.booking-btn-bottom {
  background: #e40808;
  color: white;
  border: none;
  padding: 13px 86px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .booking-btn-bottom {
    padding: 14px 20px;
    font-size: 15px;
  }
}
.booking-btn-bottom i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .booking-btn-bottom i {
    font-size: 16px;
  }
}
.booking-btn-bottom:hover:not(:disabled) {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 8, 8, 0.3);
}
.booking-btn-bottom:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}
.booking-btn-bottom:disabled img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(88%);
  opacity: 0.6;
}
.booking-btn-bottom img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}
@media (max-width: 768px) {
  .booking-btn-bottom img {
    width: 18px;
    height: 18px;
  }
}
