/* Booking Page Styles */
.booking-page {
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: var(--top-bg);
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
}

.booking-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

/* Step Indicator */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 30px;
  font-size: 14px;
  color: var(--top-text-muted);
  transition: all 0.3s;
}

.booking-step.active {
  background: var(--top-orange);
  color: #fff;
}

.booking-step.completed {
  background: rgba(212,130,42,0.3);
  color: var(--top-orange);
}

.step-number {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-weight: 600;
}

.booking-step.active .step-number {
  background: rgba(255,255,255,0.2);
}

/* Booking Type Selection */
.booking-type-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.booking-type-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.booking-type-card:hover,
.booking-type-card.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

.booking-type-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--top-orange);
}

.booking-type-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.booking-type-desc {
  font-size: 14px;
  color: var(--top-text-muted);
}

/* Form Styles */
.booking-form {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section:last-child {
  margin-bottom: 0;
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--top-orange);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-input.invalid {
  border-color: #f44336;
}

.input-hint {
  font-size: 11px;
  color: var(--top-text-muted);
  margin-top: 4px;
}

.input-error {
  font-size: 11px;
  color: #f44336;
  margin-top: 4px;
  display: none;
}

.form-input.invalid + .input-error {
  display: block;
}

/* Ticket Selection */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.ticket-option {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.ticket-option:hover,
.ticket-option.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

.ticket-option-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.ticket-option-price {
  color: var(--top-orange);
  font-size: 18px;
  font-weight: 700;
}

.ticket-option-desc {
  font-size: 12px;
  color: var(--top-text-muted);
  margin-top: 5px;
}

/* Guest Cards */
.guest-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.guest-card-header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--top-orange);
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: var(--top-orange);
}

.quantity-value {
  font-size: 24px;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

/* Date Selection - UPDATED FOR DECEMBER */
.date-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.date-option {
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.date-option:hover,
.date-option.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

/* Price Summary */
.price-summary {
  background: rgba(212,130,42,0.1);
  border: 1px solid var(--top-orange);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.price-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 18px;
  font-weight: 700;
}

.price-row.total .price-value {
  color: var(--top-orange);
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 16px 32px;
  background: var(--top-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: var(--top-orange-hover);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  background: rgba(255,255,255,0.2);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

/* Status Page */
.status-container {
  text-align: center;
  padding: 60px 20px;
}

.status-icon {
  font-size: 80px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-icon.success {
  color: #4CAF50;
}

.status-icon.pending {
  color: var(--top-orange);
}

.status-icon.error {
  color: #f44336;
}

.status-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.status-desc {
  font-size: 16px;
  color: var(--top-text-muted);
  margin-bottom: 30px;
}

.booking-details {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .booking-details {
	max-width: 700px;
  }
}

@media (min-width: 1200px) {
  .booking-details {
	max-width: 850px;
  }
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--top-text-muted);
}

.detail-value {
  font-weight: 600;
}

/* Hotel Search - FIXED LAYOUT */
.hotel-search-form {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hotel-search-form .form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.hotel-search-form .btn-primary {
  width: auto;
  height: 48px;
  padding: 0 32px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hotel-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.hotel-card:hover {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.08);
  transform: translateY(-2px);
}

.hotel-card.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.15);
}

.hotel-card.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(40%);
}

.hotel-card.sold-out:hover {
  transform: none;
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.hotel-image-container {
  position: relative;
}

.hotel-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
}

.hotel-sold-out-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(244, 67, 54, 0.9);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotel-content {
  display: flex;
  flex-direction: column;
}

.hotel-info {
  flex: 1;
}

.hotel-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-info h3 i {
  color: var(--top-orange);
  font-size: 18px;
}

.hotel-stars {
  color: var(--top-orange);
  margin-bottom: 10px;
  font-size: 14px;
}

.hotel-address {
  font-size: 13px;
  color: var(--top-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.hotel-address i {
  color: var(--top-orange);
  margin-top: 2px;
}

.hotel-distance {
  font-size: 13px;
  color: var(--top-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.hotel-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.hotel-facility-tag {
  background: rgba(212,130,42,0.15);
  color: var(--top-orange);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hotel-facility-tag i {
  font-size: 10px;
}

.hotel-price {
  text-align: right;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hotel-price-label {
  font-size: 12px;
  color: var(--top-text-muted);
  margin-bottom: 4px;
}

.hotel-price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--top-orange);
}

.hotel-price-usd {
  font-size: 14px;
  color: #4CAF50;
  font-weight: 600;
}

.hotel-price-nights {
  font-size: 11px;
  color: var(--top-text-muted);
}

/* Infinite scroll loader */
.infinite-scroll-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-top: 20px;
}

.infinite-scroll-loader .spinner {
  width: 40px;
  height: 40px;
}

.load-more-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.load-more-btn:hover {
  background: rgba(212,130,42,0.2);
  border-color: var(--top-orange);
}

/* Room Selection */
.room-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.room-card:hover {
  border-color: var(--top-orange);
}

.room-card.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

.room-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.room-details {
  font-size: 13px;
  color: var(--top-text-muted);
}

.room-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--top-orange);
}

.room-price-usd {
  font-size: 12px;
  color: var(--top-text-muted);
}

/* Ticket Pass Selection for Hotel */
.pass-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.pass-option:hover,
.pass-option.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

.pass-radio {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pass-option.selected .pass-radio {
  border-color: var(--top-orange);
  background: var(--top-orange);
}

.pass-option.selected .pass-radio::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
}

/* Loading Spinner */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--top-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  margin-top: 20px;
  color: var(--top-text-muted);
}

/* Simple Phone input styling */
.phone-input {
  width: 100%;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Hotel Info Header in Rooms Page */
.hotel-header-info {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hotel-header-top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.hotel-thumbnail {
  width: 200px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s;
}

.hotel-thumbnail:hover {
  transform: scale(1.02);
}

.hotel-main-info {
  flex: 1;
}

.hotel-name-large {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-name-large i {
  color: var(--top-orange);
  font-size: 24px;
}

.hotel-address-info {
  color: var(--top-text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.hotel-stars-large {
  color: var(--top-orange);
  font-size: 16px;
  margin-bottom: 12px;
}

.hotel-dates-info {
  background: rgba(212,130,42,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--top-orange);
}

.hotel-gallery-btn {
  background: linear-gradient(135deg, var(--top-orange), #c77b2a);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: all 0.3s;
}

.hotel-gallery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,130,42,0.4);
}

.hotel-details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hotel-detail-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--top-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail-block p {
  font-size: 13px;
  color: var(--top-text-muted);
  line-height: 1.6;
}

.hotel-facilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facility-tag {
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--top-text-muted);
}

/* Enhanced Room Cards */
.room-card-enhanced {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.room-card-enhanced:hover {
  border-color: rgba(212,130,42,0.3);
  background: rgba(255,255,255,0.05);
}

.room-card-enhanced.selected {
  border-color: var(--top-orange);
  background: rgba(212,130,42,0.1);
}

.room-card-enhanced.sold-out {
  opacity: 0.5;
  pointer-events: none;
}

.room-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.room-name-package {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--top-text-muted);
}

.room-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-specs i {
  color: var(--top-orange);
  font-size: 12px;
}

.room-price-section {
  text-align: right;
}

.room-price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--top-orange);
}

.room-price-usd-small {
  font-size: 12px;
  color: var(--top-text-muted);
}

.room-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.room-amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.amenity-badge {
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  color: var(--top-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.amenity-badge i {
  font-size: 10px;
  color: var(--top-orange);
}

.breakfast-badge {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.breakfast-badge i {
  color: #4CAF50;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
}

.gallery-close:hover {
  color: var(--top-orange);
}

.gallery-container {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
}

.gallery-main-image {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: var(--top-orange);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: center;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--top-orange);
}

.gallery-counter {
  text-align: center;
  color: var(--top-text-muted);
  font-size: 14px;
  margin-top: 10px;
}
div#statusSection {
    padding-top: 0;
}
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 650px;
	border-radius: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .booking-type-selection {
	grid-template-columns: 1fr;
  }
  
  .form-row {
	grid-template-columns: 1fr;
  }
  
  .ticket-grid {
	grid-template-columns: 1fr;
  }
  
  .hotel-card {
	grid-template-columns: 1fr;
  }
  
  .hotel-search-form {
	flex-direction: column;
  }
  
  .hotel-search-form .form-group {
	width: 100%;
  }
  
  .hotel-search-form .btn-primary {
	width: 100%;
  }
  
  .booking-steps {
	flex-wrap: wrap;
  }
  
  .room-card {
	grid-template-columns: 1fr;
	text-align: center;
  }
  
  .hotel-header-top {
	flex-direction: column;
  }
  
  .hotel-thumbnail {
	width: 100%;
	height: 180px;
  }
  
  .hotel-name-large {
	font-size: 22px;
  }
  
  .hotel-details-section {
	grid-template-columns: 1fr;
  }
  
  .room-card-top {
	flex-direction: column;
	gap: 12px;
  }
  
  .room-price-section {
	text-align: left;
  }
  
  .room-card-bottom {
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
  }
  
  .gallery-main-image {
	height: 300px;
  }
  
  .gallery-nav {
	width: 40px;
	height: 40px;
	font-size: 18px;
  }
  .top-header-right {
	  display: none;
  }
  .top-header {
        flex-wrap: wrap;
        width: 90%;
		min-width: 90%;
        border-radius: 5px;
		max-width: 900px;
    }
div#bookingDetails {
	padding: 0;
}
}
