/* =========================
   Trip Page Banner Section
========================= */
.tripdeal-banner {
  height: 60vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tripdeal-banner .banner-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tripdeal-banner .banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tripdeal-banner .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.tripdeal-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  text-align: center;
}

.tripdeal-banner-small-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tripdeal-banner-large-tagline {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}

/* =========================
   Description Section
========================= */
.tripdeal-description {
  margin: 50px auto 30px;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* =========================
   Trips Grid Cards
========================= */
.tripdeal-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tripdeal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.tripdeal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
}

/* =========================
   Badge Styles
========================= */
.tripdeal-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 20px;
  z-index: 2;
  color: #fff;
}

/* Badge Types */
.tripdeal-badge.badge-fixed       { background-color: #007bff; }
.tripdeal-badge.badge-limited     { background-color: #dc3545; }
.tripdeal-badge.badge-discount    { background-color: #28a745; }
.tripdeal-badge.badge-featured    { background-color: #6c63ff; }
.tripdeal-badge.badge-bestseller  { background-color: #4caf50; }
.tripdeal-badge.badge-new         { background-color: #00bcd4; }
.tripdeal-badge.badge-early       { background-color: #8bc34a; }
.tripdeal-badge.badge-lastminute  { background-color: #f44336; }
.tripdeal-badge.badge-luxury      { background-color: #795548; }
.tripdeal-badge.badge-adventure   { background-color: #3f51b5; }
.tripdeal-badge.badge-family      { background-color: #ff9800; }
.tripdeal-badge.badge-beginner    { background-color: #9c27b0; }
.tripdeal-badge.badge-eco         { background-color: #2e7d32; }
.tripdeal-badge.badge-inclusive   { background-color: #009688; }
.tripdeal-badge.badge-smallgroup  { background-color: #607d8b; }
.tripdeal-badge.badge-private     { background-color: #9e9e9e; }
.tripdeal-badge.badge-hotdeal     { background-color: #d32f2f; }

/* =========================
   Card Content
========================= */
.tripdeal-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}

.tripdeal-meta {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.tripdeal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 8px 0;
  line-height: 1.3;
}

.tripdeal-route {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.tripdeal-price {
  font-size: 1rem;
  font-weight: 600;
}

.tripdeal-price .old {
  text-decoration: line-through;
  opacity: 0.65;
  margin-right: 6px;
}

.tripdeal-price .new {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.tripdeal-btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 6px 16px;
}

/* =========================
   Responsive Tweaks
========================= */
@media (max-width: 992px) {
  .tripdeal-card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .tripdeal-banner-small-title {
    font-size: 1.2rem;
  }
  .tripdeal-banner-large-tagline {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .tripdeal-banner {
    height: 50vh;
  }
  .tripdeal-banner-large-tagline {
    font-size: 1.6rem;
  }
}
