/* Hotels section — tubaa-tech.com */
.hotels-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hotels-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.hotels-subtitle {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hotels-category-title {
  font-size: 1.35rem;
  font-weight: 600;
}

.hotel-stars .star-icon {
  color: #fbbf24;
  font-size: 1.1rem;
}

.hotel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hotel-card-link {
  color: inherit;
  display: block;
  height: 100%;
}

.hotel-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hotel-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-card-image {
  transform: scale(1.05);
}

.hotel-card-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #fbbf24;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.hotel-card-body {
  padding: 1.25rem;
}

.hotel-card-name {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hotel-card-city {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hotel-card-summary {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-card-cta {
  color: #818cf8;
  font-weight: 600;
  font-size: 0.9rem;
}

.hotel-card-featured .hotel-card-image-wrap {
  aspect-ratio: auto;
  min-height: 220px;
}

/* Detail page */
.hotel-gallery-hero {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hotel-thumb-btn {
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.hotel-thumb-btn img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.hotel-thumb-btn.active,
.hotel-thumb-btn:hover {
  border-color: #6366f1;
}

.hotel-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
}

.hotel-detail-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.hotel-detail-summary {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-top: 1rem;
}

.hotel-quick-facts li {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hotel-inquiry-btn {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
}

.hotel-block-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.4);
}

.hotel-block-text {
  line-height: 1.8;
}

.hotel-room-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}

.hotel-room-name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hotel-room-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.hotel-room-facilities {
  padding-inline-start: 1.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hotel-list {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  padding-inline-start: 1.25rem;
}

.hotel-list-columns {
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 767px) {
  .hotel-list-columns {
    columns: 1;
  }
}

.hotels-home-section {
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.06) 50%, transparent 100%);
}
