.facility-page .service-card {
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e0e0e0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* HOVER untuk semua kecuali .popular */
.facility-page .service-card:hover:not(.popular) {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.45);
  border-color: #e0e0e0;
}

/* KHUSUS UNTUK YANG POPULAR */
.facility-page .service-card.popular {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  border-color: none;
}

.facility-page .service-card.popular:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  outline: 3px solid #004225;
}

/* Gambar wrapper */
.facility-page .service-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

/* Efek zoom gambar */
.facility-page .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-page .service-card:hover .service-img {
  transform: scale(1.1);
}

/* Badge Popular */
.facility-page .popular-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  background-color: #004225;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 9px;
  border-radius: 10px;
  font-weight: 400;
}

/* Icon bulat */
.facility-page .icon-circle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #004225;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* List dalam card */
.facility-page .card-body ul {
  padding-left: 18px;
}

.facility-page .card-body ul li {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

/* Biarkan body fleksibel agar responsif */
.facility-page .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-page .card-body h5.card-title,
.facility-page .card-body .fw-semibold {
  color: #004225;
}

.facility-page .padelon-section {
  background-color: #004225;
  border-radius: 10px;
  padding: 20px 20px;
}

/* ============================= */
/* DETAIL FACILITY - KAFE & RESTO */
/* ============================= */

/* Hero Section */
.hero-section-cafe {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.hero-section-cafe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-cafe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-section-cafe h1 {
  color:white;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-section-cafe p {
  color: white;
  font-size: 1rem;
}

/* Konten gambar utama */
.cafe-main-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .cafe-main-img {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================= */
/* GALLERY MODERN */
/* ============================= */

.modern-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.modern-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modern-gallery-card:hover img {
  transform: scale(1.05);
}

.modern-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 66, 37, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-gallery-card:hover .modern-gallery-overlay {
  opacity: 1;
}

.modern-gallery-overlay h5 {
  color: white;
  font-weight: 600;
  margin: 0;
}

/* CTA Section */
.facility-cta {
  background: linear-gradient(135deg, #004225, #006837);
  border-radius: 10px;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.facility-cta h4 {
  font-weight: 700;
}

.facility-cta p {
  font-size: 0.95rem;
}

.facility-cta .btn {
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.facility-cta .btn:hover {
  background-color: #6bb318;
  color: white;
}