.villa-category-section {
  width: 100%;
  padding-top: -100px;
  margin: 0 auto;
}

.villa-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.villa-category-item {
  flex: 1 1 16.66%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  color: white;
}

.villa-category-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.villa-category-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.villa-category-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .villa-category-item {
    flex: 1 1 33.33%;
  }
}

@media (max-width: 768px) {
  .villa-category-item {
    flex: 1 1 50%;
  }
}

@media (max-width: 480px) {
  .villa-category-item {
    flex: 1 1 100%;
  }
}
