.establishments-section {
  background-color: #f8f9fa;
}

.section-title {
  color: #333;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.establishment-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
}

.establishment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.establishment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.establishment-card:hover .establishment-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 123, 191, 0.1),
    rgba(0, 166, 81, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.establishment-card:hover .image-overlay {
  opacity: 1;
}

.card-body {
  text-align: start;
  position: relative;
}

.establishment-logo {
  width: 60px;
  height: 60px;
  margin: -30px auto 0;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.establishment-title {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-more-link {
  color: #b33146;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.read-more-link:hover {
  color: #b33146;
  text-decoration: none;
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(4px);
}

/* Swiper Navigation Buttons */
.establishments-section .swiper-button-next,
.establishments-section .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #b33146;
  font-size: 18px;
  transition: all 0.3s ease;
}

.establishments-section .swiper-button-next:hover,
.establishments-section .swiper-button-prev:hover {
  background: #b33146;
  color: white;
  transform: scale(1.1);
}

.establishments-section .swiper-button-next::after,
.establishments-section .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Swiper Pagination */
.establishments-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.establishments-section .swiper-pagination-bullet-active {
  background: #b33146;
  transform: scale(1.2);
}

/* Carousel container adjustments */
.establishments-section .swiper {
  padding: 0 50px 50px 50px;
}

.establishments-section .swiper-slide {
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .establishment-card {
    margin-bottom: 1.5rem;
  }

  .establishments-section .swiper {
    padding: 0 20px 50px 20px;
  }

  .establishments-section .swiper-button-next,
  .establishments-section .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card-image-wrapper {
    height: 180px;
  }

  .establishments-section .swiper {
    padding: 0 10px 40px 10px;
  }

  .establishments-section .swiper-button-next,
  .establishments-section .swiper-button-prev {
    display: none;
  }
}
.btn-service {
  padding: 8px !important;
  border-radius: 20px !important;
}

.establishment-card:hover .btn-service {
  background: #1a4b841a !important;
}

.btn-service a {
  width: 80% !important;
  display: inline-block;
}
.logo-img-establishment {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}
.est-title {
  height: 50px;
}
