.weber-trips-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.weber-trips-container {
  display: flex;
  gap: 20px;
  width: 100%;
}

.weber-trips-nav {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: stretch;
}

.trip-nav-item {
  padding: 28px;
  background: var(--light-25, rgba(220, 243, 247, 0.25));
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 0.3s;
}

.trip-nav-item:hover,
.trip-nav-item.active {
  background: var(--Light, #dcf3f7);
}

.trip-nav-text {
  color: var(--Dark, #041416);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.trip-nav-arrow-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.weber-trips-content {
  flex: 1;
  position: relative;
}

.trip-content {
  display: none;
  flex-direction: row;
  gap: 24px;
  padding: 28px;
  background: rgba(220, 243, 247, 0.25);
  border-radius: 24px;
  align-items: stretch;
}

.trip-content.active {
  display: flex;
}

.trip-image-wrapper {
  position: relative;
  flex: 0 0 386px;
  width: 386px;
  height: 620px;
}

.trip-text-content {
  flex: 1 1 auto;
  max-width: 514px;
  min-width: 0;
}

.trip-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px !important;
}

.trip-nav-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: var(--White, #fff) !important;
  border: none !important;
  border-radius: 39px !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s !important;
}

.trip-nav-arrow:hover {
  background: #f0f0f0 !important;
}

.trip-nav-arrow svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trip-nav-prev {
  left: 20px;
}

.trip-nav-next {
  right: 20px;
}

.trip-title {
  color: var(--Dark, #041416);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 0px;
}

.trip-description p {
  color: var(--Dark, #041416);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.trip-description ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.trip-description ul li {
  color: var(--Dark, #041416);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  border-radius: 12px;
  background: var(--Light, #dcf3f7);
  padding: 10px;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  gap: 24px;
}

.trip-footer-left {
  flex: 1;
  width: 100%;
  max-width: 504px;
}

.trip-footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trip-bottom-text {
  color: var(--Dark, #041416);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.trip-bottom-text p {
  margin-bottom: 0px;
}

.trip-phone {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

/* Responsive styles for screens below 1180px */
@media (max-width: 1180px) {
  .weber-trips-nav {
    display: none;
  }

  .weber-trips-container {
    flex-direction: column;
  }

  .trip-content {
    flex-direction: column;
  }

  .trip-image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 386px;
    height: auto;
    margin: 0 auto;
  }

  .trip-text-content {
    max-width: 100%;
    width: 100%;
  }

  .trip-footer {
    flex-direction: column;
  }

  .weber-trips-wrapper br {
    display: none;
  }

  .trip-footer-right {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    gap: 32px;
  }
}
