/* kHotel Website - Component Styles */

/* Search Results Page */
.khotel-search-results {
  padding: 2rem 0;
}

/* Clean & Simple Search Header */
.search-header-clean {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: all 0.3s ease;
}

.search-header-clean.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(248, 249, 250, 0.95);
}

.search-header-clean.scrolled .results-count-clean {
  font-size: 1.5rem;
}

.search-header-clean.scrolled .search-info-clean {
  font-size: 0.9rem;
}

.search-header-clean.scrolled .input-group-clean .form-control,
.search-header-clean.scrolled .input-group-clean .form-select {
  height: 36px;
  font-size: 0.85rem;
}

.search-header-clean.scrolled .search-inputs-row .btn {
  height: 36px;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
}

.results-summary-clean {
  text-align: left;
}

.results-count-clean {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.count-number {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.count-text {
  color: var(--text-dark);
  font-weight: 600;
}

.search-info-clean {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.search-dates {
  font-weight: 500;
}

.search-guests {
  font-weight: 500;
}

/* Compact Search Form */
.quick-search-clean {
  text-align: right;
}

.search-form-inline {
  display: inline-block;
}

.search-inputs-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.input-group-clean {
  min-width: 120px;
}

.input-group-clean:last-of-type {
  min-width: 140px;
}

.input-group-clean .form-control,
.input-group-clean .form-select {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  height: 38px;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input-group-clean .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.input-group-clean .form-control:focus,
.input-group-clean .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.15rem rgba(0, 53, 128, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  outline: 0;
}

.input-group-clean .form-control:hover,
.input-group-clean .form-select:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.search-inputs-row .btn {
  height: 38px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 53, 128, 0.2);
}

.search-inputs-row .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

/* Ensure proper select dropdown display */
.search-form-inline select {
  display: block !important;
  width: 100% !important;
  cursor: pointer;
}

.search-form-inline select option {
  padding: 0.5rem;
  background: var(--white);
  color: var(--text-dark);
}

/* Room Results Layout Styles */
.room-results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

/* Room Cards */
.room-results .room-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.room-results .room-card .row {
  margin: 0;
}

.room-results .room-card .col-md-4,
.room-results .room-card .col-md-5,
.room-results .room-card .col-md-3 {
  padding: 1.5rem;
}

.room-results .room-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Legacy styles for backward compatibility */
.search-header {
  background: var(--background-light);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.search-summary h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.search-details {
  color: var(--text-light);
  font-size: 1.125rem;
}

.quick-search {
  margin-top: 1.5rem;
}

.filters-sidebar {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(0, 53, 128, 0.08);
}

.filters-sidebar h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filters-sidebar h5::before {
  content: "🔍";
  font-size: 1rem;
}

.filter-group {
  margin-bottom: 1.75rem;
  padding-bottom: 0;
  position: relative;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group h6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Add icons to filter group headers */
.filter-group:nth-child(2) h6::before {
  content: "💰";
  font-size: 1rem;
}

.filter-group:nth-child(3) h6::before {
  content: "🏠";
  font-size: 1rem;
}

.filter-group:nth-child(4) h6::before {
  content: "✨";
  font-size: 1rem;
}

.price-range .row {
  gap: 0.75rem;
  flex-direction: column;
}

.price-range .col-6 {
  flex: 1;
  width: 100%;
  max-width: none;
}

.price-range .form-control {
  border: 2px solid rgba(0, 53, 128, 0.1);
  border-radius: 8px;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(0, 53, 128, 0.02);
  font-size: 0.9rem;
}

.price-range .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
  background: var(--white);
}

.price-range .form-control::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

/* Enhanced Room Type Select */
.filter-group .form-select {
  border: 2px solid rgba(0, 53, 128, 0.1);
  border-radius: 8px;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  background: rgba(0, 53, 128, 0.02);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-group .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
  background: var(--white);
}

/* Enhanced Amenity Checkboxes */
.amenity-filters .form-check {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 53, 128, 0.02);
  border: 1px solid rgba(0, 53, 128, 0.08);
  transition: all 0.3s ease;
}

.amenity-filters .form-check:hover {
  background: rgba(0, 53, 128, 0.05);
  border-color: rgba(0, 53, 128, 0.15);
}

.amenity-filters .form-check-input:checked ~ .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.amenity-filters .form-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  font-size: 0.9rem;
}

.amenity-filters .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(0, 53, 128, 0.2);
  border-radius: 4px;
}

.amenity-filters .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Enhanced Filter Buttons */
.filters-sidebar .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 53, 128, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Override the global loading state for filter buttons */
.filters-sidebar .btn-primary.loading {
  color: white !important;
  opacity: 0.8;
}

.filters-sidebar .btn-primary.loading::after {
  display: none;
}

.filters-sidebar .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.filters-sidebar .btn-primary:hover::before {
  left: 100%;
}

.filters-sidebar .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.4);
}

.filters-sidebar .btn-outline-secondary {
  background: transparent;
  border: 2px solid rgba(0, 53, 128, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filters-sidebar .btn-outline-secondary:hover {
  background: rgba(0, 53, 128, 0.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* Enhanced Sort Options */
.sort-options-modern {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 53, 128, 0.1);
}

.results-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.results-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.results-count i {
  color: var(--primary-color);
}

.results-location {
  font-size: 0.9rem;
}

.sort-controls-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.sort-label i {
  color: var(--primary-color);
}

.custom-select-wrapper {
  position: relative;
  min-width: 200px;
}

.custom-sort-select {
  appearance: none;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-sort-select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 53, 128, 0.15);
  transform: translateY(-1px);
}

.custom-sort-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.1);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.custom-sort-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Active Filters */
.active-filters {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideInUp 0.3s ease;
}

.filter-tag .remove-filter {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  transition: background 0.2s ease;
}

.filter-tag .remove-filter:hover {
  background: rgba(255, 255, 255, 0.3);
}

.clear-all-btn {
  background: var(--danger-color);
  color: white;
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.clear-all-btn:hover {
  background: #b30000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loading-spinner {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 53, 128, 0.1);
}

.loading-spinner p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .sort-options-modern {
    padding: 1rem;
  }

  .sort-controls-modern {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .sort-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .custom-select-wrapper {
    min-width: auto;
  }

  .results-summary {
    text-align: center;
  }

  .filter-tags {
    justify-content: center;
  }
}

/* Responsive Styles for Clean Header */
@media (max-width: 768px) {
  .search-header-clean {
    padding: 1rem 0;
  }

  .results-summary-clean {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .results-count-clean {
    font-size: 1.5rem;
  }

  .quick-search-clean {
    text-align: center;
  }

  .search-inputs-row {
    justify-content: center;
    gap: 0.5rem;
  }

  .input-group-clean {
    min-width: 100px;
    flex: 1;
  }

  .search-inputs-row .btn {
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  .search-inputs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .input-group-clean {
    min-width: auto;
  }

  .search-inputs-row .btn {
    width: 100%;
  }
}

.room-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.room-info {
  padding: 0;
}

.room-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.room-title a {
  color: var(--text-dark);
  text-decoration: none;
}

.room-title a:hover {
  color: var(--primary-color);
}

.room-type {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Room Details Section */
.room-details-section {
  margin-bottom: 1.5rem;
}

.room-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.room-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.room-features .feature i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.room-amenities {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.amenity-tag i {
  color: var(--primary-color);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Simple amenities for booking pages */
.room-amenities-simple {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.simple-amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.simple-amenity i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Enhanced Guest Form Styling - Contact Form Style */
.guest-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.booking-content h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Enhanced form actions */
.form-actions {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 53, 128, 0.1);
  margin-top: 2rem;
}

.form-actions .btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0071c2 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 53, 128, 0.3);
}

.form-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.4);
}

.form-actions .btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
}

.form-actions .btn-outline-secondary:hover {
  background: #6c757d;
  border-color: #6c757d;
  transform: translateY(-1px);
}

/* Enhanced checkbox styling */
.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(0, 53, 128, 0.3);
  border-radius: 4px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Enhanced Booking Action Buttons */
.booking-actions-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 53, 128, 0.1);
}

.action-buttons-container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.btn-back-enhanced {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  color: #6c757d;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-back-enhanced:hover {
  background: #f8f9fa;
  border-color: #6c757d;
  color: #495057;
  transform: translateY(-1px);
}

.btn-complete-enhanced {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-complete-enhanced:hover {
  background: linear-gradient(135deg, #5f4fcf 0%, #9085e8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-complete-enhanced .btn-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.btn-complete-enhanced .btn-content i {
  font-size: 1.1rem;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-complete-enhanced:hover .btn-shine {
  left: 100%;
}

/* Enhanced Price Breakdown in Booking Summary */
.price-breakdown-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.price-breakdown-summary .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #495057;
}

.price-breakdown-summary .price-item:first-child {
  padding-top: 0;
}

.price-breakdown-summary .price-item span:last-child {
  font-weight: 600;
  color: #212529;
}

.price-divider {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid #dee2e6;
}

.price-breakdown-summary .total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  border-top: 2px solid #6c5ce7;
  margin-top: 1rem;
}

.price-breakdown-summary .total-amount {
  font-size: 1.25rem;
  color: #6c5ce7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .action-buttons-container {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-back-enhanced,
  .btn-complete-enhanced {
    width: 100%;
    justify-content: center;
  }

  .price-breakdown-summary {
    padding: 1rem;
  }

  .price-breakdown-summary .price-item {
    font-size: 0.9rem;
  }
}

.amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--background-light);
  border-radius: 50%;
  color: var(--primary-color);
}

.room-description {
  color: var(--text-light);
  line-height: 1.5;
}

.room-booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.price-section {
  margin-bottom: 1.5rem;
}

.price-section .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1rem;
  font-weight: 600;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-unit {
  color: var(--text-light);
  font-size: 0.875rem;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

/* Hotel Detail Page */
.khotel-hotel-detail {
  padding: 1rem 0;
}

.breadcrumb-section {
  background: var(--background-light);
  padding: 1rem 0;
}

.hotel-header {
  padding: 2rem 0;
}

.hotel-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hotel-meta {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hotel-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-display {
  text-align: right;
}

.price-display .price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-display .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.photo-gallery {
  margin-bottom: 2rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gallery-thumbnails {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.thumbnail {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-weight: 600;
}

.hotel-tabs {
  margin-bottom: 2rem;
}

.hotel-tabs .nav-tabs {
  border-bottom: 2px solid var(--border-color);
}

.hotel-tabs .nav-link {
  border: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-bottom: 3px solid transparent;
}

.hotel-tabs .nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: none;
}

.tab-content {
  padding: 2rem 0;
}

.overview-content h4,
.amenities-content h4,
.location-content h4 {
  margin-bottom: 1.5rem;
}

.room-specs {
  margin-top: 2rem;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.spec-list li:last-child {
  border-bottom: none;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--background-light);
  border-radius: var(--border-radius);
}

.amenity-item i {
  color: var(--primary-color);
  width: 20px;
}

.location-map {
  margin-top: 1.5rem;
}

.map-placeholder {
  height: 300px;
  background: var(--background-light);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--secondary-color);
}

.booking-card h5 {
  margin-bottom: 1.5rem;
  text-align: center;
}



.price-summary {
  background: var(--background-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.booking-features {
  margin-top: 1.5rem;
}

.booking-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.related-rooms {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.related-rooms h3 {
  margin-bottom: 2rem;
}
