/* Hotels Page */
.travel-hotels-page {
  background: #445C6A;
}

.hotels-hero-section {
  position: relative;
  overflow: hidden;
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotels-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hotels-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 40, 60, 0.62), rgba(18, 40, 60, 0.45));
  z-index: 1;
}

.hotels-hero-section .container {
  position: relative;
  z-index: 2;
}

.hotels-hero-content {
  text-align: center;
}

.hotels-hero-title {
  color: var(--brand-white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Popins", sans-serif;
}

.hotels-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-base);
  font-family: "Poppins", sans-serif;
}

.hotels-booking-section,
.hotels-listing-section {
  padding: 64px 0;
  background: #445C6A;
}

.booking-enquiry-form {
  border: 1px solid rgba(198, 154, 74, 0.8);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(94.07deg, #1b2932 0.63%, #2e4755 98.69%);
}

.booking-input {
  width: 100%;
  background: var(--brand-input);
  color: var(--brand-white);
  border: 0;
  border-radius: 277px;
  padding: 0.625rem 1.25rem;
  font-weight: 400;
  font-size: var(--fs-sm);
  outline: none;
  box-shadow: 0 0 3.5px 0 #00000078;
  font-family: "Poppins", sans-serif;
}

.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.booking-submit-wrap {
  display: flex;
  align-items: stretch;
}

.booking-submit-button {
  background: var(--brand-gold);
  color: var(--brand-white);
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  text-align: center;
  padding: 0.625rem 1.25rem;
}

.hotels-section-header {
  margin-bottom: 34px;
}

.hotels-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--brand-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: "Popins", sans-serif;
}

.hotels-section-header h2 {
  color: var(--brand-white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 0.6rem;
  font-family: "Popins", sans-serif;
}

.hotels-section-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-base);
  font-family: "Poppins", sans-serif;
}

.country-offer-card {
  background: linear-gradient(135deg, #1b2932 0%, #243847 100%);
  border: 1px solid rgba(176, 135, 71, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.country-offer-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-gold);
  box-shadow: 0 16px 30px rgba(8, 18, 26, 0.28);
}

.card-img-wrap {
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.country-offer-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

.card-body-custom {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title-custom {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-white);
  margin-bottom: 8px;
  font-family: "Popins", sans-serif;
}

.card-location-custom {
  color: var(--brand-gold);
  font-size: var(--fs-xs);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
}

.card-text-custom {
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
}

.hotel-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.hotel-rating,
.hotel-price {
  font-size: var(--fs-2xs);
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 10px;
  font-family: "Poppins", sans-serif;
}

.hotel-rating {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.1);
}

.hotel-price {
  color: var(--brand-gold);
  background: rgba(176, 135, 71, 0.14);
}

.hotel-card-action {
  margin-top: 1rem;
}

.hotels-listing-section .learn-more-btn {
  width: 100%;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-gold) !important;
  color: var(--brand-white) !important;
  border: 1px solid var(--brand-gold);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.hotels-listing-section .learn-more-btn:hover {
  background-color: #d4af37 !important;
  border-color: #d4af37;
  color: var(--brand-white) !important;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hotels-hero-section {
    height: 280px;
  }

  .hotels-booking-section,
  .hotels-listing-section {
    padding: 42px 0;
  }

  .booking-enquiry-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hotels-hero-section {
    height: 240px;
  }

  .booking-enquiry-form {
    padding: 16px;
  }
}
