/* === Hotels Page Styling === */

/* Hotels container */
.hotels-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
  padding: 30px 40px;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Title */
.hotels-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

/* Two-column form layout */
.two-column-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0077b6;
  outline: none;
}

/* Submit button */
.search-btn {
  background-color: #0077b6;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.search-btn:hover {
  background-color: #023e8a;
}

/* Thank you message */
#thank-you-message {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
  color: #222;
  line-height: 1.6;
  font-size: 1.1rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Contact form */
.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  width: 100%;
  padding: 25px 30px;
  margin: 30px auto 0;
  animation: fadeInUp 0.8s ease-in-out;
}

.contact-form-card h2 {
  margin-bottom: 15px;
  color: #0077b6;
}

.contact-form-card input,
.contact-form-card select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
}

.contact-form-card button {
  background-color: #0077b6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
}

.contact-form-card button:hover {
  background-color: #023e8a;
}

/* Fade animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hotels-container {
    padding: 25px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .search-btn {
    font-size: 1rem;
  }
}