.request-an-accomm-availability-check-powermail-form-2026 {
  display: none;
}

#results-navigation .navigation-buttons {
  gap: 1em;
  font-size: 1.1em;
}

/* Room Availability Checker - Custom Styles */
#resultsContainer .card-body > .row {
  margin-left: -30px;
  margin-right: -30px;
}

/* Loading and Animation Styles */
.loading-spinner {
  display: none;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Enhancements */
.child-age-container {
  margin-top: 1em;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2em rgba(0, 123, 255, 0.25);
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Room Card Styles */
.room-card {
  margin-bottom: 1.5em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #dee2e6;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.price-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0.5em;
  padding: 1.5em;
  margin: 1em 0;
}

.price-display h4 {
  font-size: 2em;
  font-weight: bold;
}

/* Facility List Styles */
.facility-list {
  list-style: none;
  padding-left: 0;
  columns: 2;
  column-gap: 1em;
}

.facility-list li {
  break-inside: avoid;
  margin-bottom: 0.5em;
}

.facility-list li::before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5em;
}

/* Inline Facilities Display (like Booking.com) */
.facilities-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em 0.75em;
}

.facility-item {
  color: #28a745;
  font-size: 0.9em;
  white-space: nowrap;
}

.facility-item::before {
  content: "";
  margin-right: 0.25em;
}

/* Bedroom Breakdown Styles */
.bedroom-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.bedroom-item {
  color: #495057;
  font-size: 0.95em;
  padding: 0.25em 0;
  border-left: 3px solid #007bff;
  padding-left: 0.75em;
}

/* Badge Styles */
.highlight-badge {
  margin: 0.2em;
  font-size: 0.875em;
  color: white;
  padding: 0.4em;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .room-card .row {
    flex-direction: column;
  }

  .price-section {
    margin-top: 1em;
    text-align: center;
  }

  .facility-list {
    columns: 1;
  }

  .facilities-inline {
    gap: 0.5em;
  }

  .facility-item {
    font-size: 0.85em;
  }

  .bedroom-item {
    font-size: 0.9em;
    padding-left: 0.5em;
  }

  .highlight-badge {
    font-size: 0.75em;
    margin: 0.1em;
  }

  h1 {
    font-size: 1.75em;
  }

  .card-title {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .container {
    margin-top: 1em;
  }

  .btn-lg {
    font-size: 1em;
    padding: 0.75em 1em;
  }

  .price-display h4 {
    font-size: 1.5em;
  }

  .room-card {
    margin-bottom: 1em;
  }
}

/* Accessibility Enhancements */
.btn:focus,
.form-control:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Loading State Enhancements */
.form-disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Error State Styling */
.is-invalid {
  border-color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Success State Animation */
.alert {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .btn,
  .loading-spinner,
  .alert {
    display: none !important;
  }

  .room-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #000;
  }
}

/* Modal Specific Styles */
.modal-body {
  max-height: 80vh;
  overflow-y: auto;
  font-size: 0.9em;
}

.modal-lg {
  max-width: 900px;
}

/*
#siteModal .card {
  border: none;
  box-shadow: none;
}
*/

#siteModal .card-header {
  background-color: #f8f9fa;
}

/* Bootstrap 4 btn-block for full width button */
.btn-block {
  display: block;
  width: 100%;
}

/* Image Carousel Styles */
.carousel-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5; /* 3:2 aspect ratio to match url_original images */
  object-fit: cover;
  border-radius: 0.5em;
}

.carousel-placeholder {
  width: 100%;
  aspect-ratio: 1.5;
}

.carousel-indicators {
  bottom: 10px;
}

.carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 3px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* Responsive carousel adjustments */
@media (max-width: 768px) {
  .carousel-image {
    aspect-ratio: 1.5; /* Maintain 3:2 aspect ratio on mobile */
  }

  .room-card .row {
    flex-direction: column;
  }

  .room-card .col-md-5,
  .room-card .col-md-4,
  .room-card .col-md-3 {
    margin-bottom: 1em;
  }
}

/* Breakfast Information Box Styles */
.breakfast-info-box {
  display: flex;
  align-items: center;
  padding: 0.75em 1em;
  border-radius: 0.375em;
  font-size: 0.9em;
  line-height: 1.4;
  text-align: left;
  border: 1px solid;
}

.breakfast-info-box .breakfast-icon {
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 0.75em;
  flex-shrink: 0;
}

.breakfast-info-box .breakfast-text {
  flex: 1;
}

/* Included breakfast - green success style */
.breakfast-included {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.breakfast-included .breakfast-icon {
  color: #28a745;
}

/* Optional breakfast - blue info style */
.breakfast-optional {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.breakfast-optional .breakfast-icon {
  color: #17a2b8;
}

/* Responsive breakfast info */
@media (max-width: 576px) {
  .breakfast-info-box {
    font-size: 0.85em;
    padding: 0.6em 0.8em;
  }

  .breakfast-info-box .breakfast-icon {
    font-size: 1em;
    margin-right: 0.5em;
  }
}

/* Room Description Styles */
.room-description {
  color: #495057;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Room Selection Summary Styles */
.room-selection-summary {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5em;
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.room-summary-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5em;
  align-items: start;
}

.room-summary-image img {
  width: 100%;
  height: auto;
  border-radius: 0.375em;
  object-fit: cover;
  aspect-ratio: 1.5;
}

.room-summary-image .no-image {
  width: 100%;
  aspect-ratio: 1.5;
  background-color: #e9ecef;
  border-radius: 0.375em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 0.9em;
}

.room-summary-details {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.room-summary-title {
  margin: 0;
  color: #212529;
  font-size: 1.25em;
  font-weight: 600;
}

.room-summary-info {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.summary-item {
  color: #495057;
  font-size: 0.95em;
  line-height: 1.5;
}

.summary-item strong {
  color: #212529;
  margin-right: 0.5em;
}

/* Responsive adjustments for room summary */
@media (max-width: 576px) {
  .room-summary-grid {
    grid-template-columns: 150px 1fr;
    gap: 1em;
  }

  .room-selection-summary {
    padding: 1em;
  }

  .room-summary-title {
    font-size: 1.1em;
  }

  .summary-item {
    font-size: 0.875em;
  }
}

@media (max-width: 400px) {
  .room-summary-grid {
    grid-template-columns: 120px 1fr;
    gap: 0.75em;
  }
}

/* Booking Instructions Styles */
.booking-instructions {
  background-color: #fff;
  border-left: 4px solid #007bff;
  padding: 1.25em 1.5em;
  margin-bottom: 1.5em;
}

.instruction-heading {
  font-size: 1.05em;
  color: #212529;
  margin-bottom: 0.75em;
}

.instruction-text {
  font-size: 0.95em;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for instructions */
@media (max-width: 576px) {
  .booking-instructions {
    padding: 1em;
  }

  .instruction-heading {
    font-size: 1em;
  }

  .instruction-text {
    font-size: 0.9em;
  }
}

/* Results Navigation Styles */
.results-navigation {
  margin-top: 3em;
  margin-bottom: 2em;
}

.results-navigation hr {
  border-top: 2px solid #dee2e6;
}

.navigation-buttons {
  gap: 1em;
}

.navigation-buttons .btn {
  min-width: 180px;
  padding: 0.75em 1.5em;
  font-size: 0.95em;
  font-weight: 500;
}

/* Responsive adjustments for navigation */
@media (max-width: 576px) {
  .navigation-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .navigation-buttons .btn {
    width: 100%;
    min-width: auto;
  }
}
