.trending-hostels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.hostel-card {width: 380px; min-height: 400px; padding: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; position: relative; transition: transform 0.2s; box-shadow: 0 10px 30px rgba(0,0,0,0.08);}
.hostel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.badge { position: absolute; top: 22px; left: 22px; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; z-index: 2; }
.featured-image { height: 220px; background-size: cover; background-position: center; position: relative; border-radius: 6px; }
.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; }
.carousel-dots span { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; }
.card-content { padding: 16px; }
.card-content h3 { font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.card-content h3 a { color: #111827; text-decoration: none !important; }
.location { font-size: 13px; color: #6b7280; margin: 0 0 6px; }
.rating { font-size: 13px; color: #f59e0b; font-weight: 600; margin-bottom: 10px; }
.rating .reviews { color: #9ca3af; font-weight: 400; }
.amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.amenity { background: #f3f4f6; color: #374151; font-size: 11px; padding: 4px 8px; border-radius: 12px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.whatsapp-btn { display: flex; align-items: center; gap: 6px; background: #25D366; color: #fff; border: none; border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 600; text-decoration: none !important; transition: background 0.2s; white-space: nowrap; }
.whatsapp-btn:hover { background: #1DA851; color: #fff; }
.book-btn { flex: 1; text-align: center; background: #4f46e5; color: #fff; padding: 10px 14px; border-radius: 10px; text-decoration: none !important; font-size: 13px; font-weight: 600; }
.book-btn:hover { background: #e7e5ff; }

@media (max-width: 992px) {
    .trending-hostels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .trending-hostels { grid-template-columns: 1fr; }
}