/* CSS Overrides for Trips Page */
.swiper-slide a,
.swiper-slide a:hover,
.swiper-slide a:focus,
.swiper-slide a:visited,
.swiper-slide a *,
.section a,
.section a:hover,
.section a:focus,
.section a:visited,
.section a * {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  /* Keep this to kill specific link shadows */
  color: inherit !important;
  background-image: none !important;
}

/* Explicitly target h2 inside silder-inner just in case */
.silder-inner h2,
.swiper-slide a .silder-inner h2 {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* --- New Premium Card Styles --- */

/* Target the wrapper, not the link, to avoid fighting the inline reset */
.swiper-slide {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 20px;
  /* Space for shadow */
  overflow: hidden;
  /* For image rounded corners */
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  /* Ensure uniform height */
  display: flex;
  flex-direction: column;
}

.swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.12);
  border-color: rgba(76, 185, 211, 0.2);
}

.trips-page-images {
  border-radius: 20px 20px 0 0 !important;
  /* Top corners only if full width */
  width: 100%;
  height: 250px;
  /* Enforce height */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.swiper-slide:hover .trips-page-images {
  transform: scale(1.05);
}

.silder-inner {
  padding: 20px 20px 25px 20px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Typography Enhancements */
.silder-inner h2 {
  font-size: 1.25rem !important;
  /* Override explicit styles */
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  color: #2c3e50;
  line-height: 1.3;
}

.silder-inner h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4CB9D3;
  margin-bottom: 5px;
}

.silder-inner p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Price Section */
.silder-inner .inner:last-child h4 span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
}

/* Adjust icons */
.silder-inner img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: text-bottom;
}