.cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  padding: 20px;
}

.cardz {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
}

.cardz:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.card__banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
}

.card--1 .card__banner {
  background-image: url('/assets/images/tumbnail/mangrove-forest-adventure-tumbnail.webp');
}

.card--2 .card__banner {
  background-image: url('/assets/images/fcr_3.webp');
}

.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgb(0 0 0 / 19%) 70%, rgb(0 0 0 / 12%) 100%);
  z-index: 1;
}

.card__content {
  display: flex;
  padding: 60px;
  min-height: 500px;
  position: relative;
  z-index: 2;
}

.card__main {
  width: 70%;
  padding-right: 40px;
}

.card__spacer {
  width: 30%;
}

.card__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card__title {
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card__description {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card__features {
  display: flex;
  gap: 24px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  min-width: 140px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
}

.card__cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.card__rating {
  display: none;
}

.stars {
  display: none;
}

.card__rating span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.card__pricing {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin: 30px 0;
}

.card__starting-from {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-right: 0;
  padding-bottom: 4px;
}

.card__starting-from .starting {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card__starting-from .from {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-top: 2px;
}

.card__prices {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #ff3b30;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card__prices_strike {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 400;
  color: #000;
  background: #ffffff;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: fit-content;
  min-width: 200px;
}

.btn-primary:hover {
  background: #f5f5f7;
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

@media only screen and (max-width: 1200px) {
  .card__content {
      padding: 40px;
  }

  .card__title {
      font-size: 40px;
  }

  .card__description {
      font-size: 19px;
  }

  .feature {
      min-width: 120px;
  }
}

@media only screen and (max-width: 992px) {
  .card__main {
      width: 100%;
      padding-right: 0;
  }

  .card__spacer {
      display: none;
  }

  .card__content {
      padding: 40px 30px;
  }

  .card__features {
      justify-content: flex-start;
  }

  .btn-primary {
      min-width: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .card__content {
      padding: 30px 20px;
  }

  .card__title {
      font-size: 32px;
  }

  .card__description {
      font-size: 17px;
  }

  .card__prices {
      font-size: 28px;
  }

  .card__prices_strike {
      font-size: 19px;
  }

  .card__features {
      gap: 16px;
  }

  .feature {
      min-width: 100px;
      font-size: 14px;
  }

  .feature-icon {
      width: 16px;
      height: 16px;
  }

  .card__cta {
      align-items: center;
  }

  .btn-primary {
      width: 100%;
      max-width: 300px;
      min-width: unset;
      padding: 16px 24px;
  }

  .card__rating {
      text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .card__content {
      padding: 20px 16px;
  }

  .card__title {
      font-size: 28px;
  }

  .card__description {
      font-size: 16px;
  }

  .btn-primary {
      padding: 14px 20px;
      font-size: 16px;
  }

  .feature {
      min-width: 90px;
  }
}

/* Remove unused styles */
.card__like,
.card__clock,
.card__img,
.card__img--hover,
.card__info,
.card__btn,
.card__by,
.card__author {
  display: none;
}
