.all-stays {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.all-stays .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.all-stays .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.all-stays .section-header p {
  font-size: 1.1rem;
  color: #555;
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Stay Card */
.stay-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stay-card .location-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffc107;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.stay-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.stay-info {
  padding: 20px;
}

.stay-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.stay-info .stay-category {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}

.stay-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #28a745;
  margin: 10px 0;
}

.stay-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.stay-specs span i {
  color: #ffc107;
  margin-right: 5px;
}

.stay-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stay-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.stay-btn-gold {
  background: #ffc107;
  color: #fff;
}

.stay-btn-gold:hover {
  background: #e6b800;
}

.stay-btn-white {
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
}

.stay-btn-white:hover {
  background: #f1f1f1;
}

.no-data {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  padding: 40px 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .stays-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .stays-grid {
    grid-template-columns: 1fr;
  }

  .stay-card img {
    height: 180px;
  }

  .stay-info h3 {
    font-size: 1.2rem;
  }

  .stay-price {
    font-size: 1.1rem;
  }
}
