.hero {
      height: 480px;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }



    /* OVERLAY */
    /* OVERLAY */
    .hero-overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 40px;
      color: #fff;
      z-index: 2;

      background: linear-gradient(to top,
          rgba(0, 0, 0, 0.8),
          rgba(0, 0, 0, 0.3),
          rgba(0, 0, 0, 0));
    }

   

    .info-bar {
      display: flex;
      gap: 20px;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 10px;
      margin-top: 15px;
      flex-wrap: wrap;
    }

    .city-card {
      border: 1px solid #eee;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .city-header {
      padding: 15px;
      background: #f1f1f1;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
    }

    .city-content {
      padding: 15px;
      display: none;
    }

    .booking-card {
      border: 1px solid #eee;
      padding: 20px;
      border-radius: 12px;
      background: #fff;
    }

    @media(max-width:768px) {
      .hero {
        height: auto;
      }

      .booking-card {
        position: static;
      }
    }
.itinerary {
    width: 100%;
}

/* Row container */
.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9e9e9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Left section */
.day-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Day pill */
.day-badge {
    padding: 4px 12px;
    border: 2px solid #ff6a00;
    border-radius: 999px;
    background: #f5f5f5;
    color: #ff6a00;
    font-weight: 600;
    font-size: 13px;
	min-width: 68px;
}

/* Title */
.day-title {
    font-size: 15px;
    color: #0f0f0f;
}

/* Right + button */
.day-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}
.day-toggle::before{
    content: "+";
}
.day-toggle:not(.collapsed)::before{
    content: "-";
 
}
/* Correct selector */
.day-row:has(.day-toggle:not(.collapsed)) {
    background: #d3c5c5;
    }
.day-row:has(.day-toggle:not(.collapsed)) .day-title {
    font-weight: bold;
}
.day-row:has(.day-toggle:not(.collapsed)) .day-badge {
    background: #f5f5f5;
}
/* Content */
.day-content {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
}
.f-right{
    float: right;
}
.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}
.tab {
    display: flex;
}
.tab button {
    width: 50%;
}

.similar-tour-wrapper {
    background: #e11;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
}

.similar-tour-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.tour-card {
    background: #fff;
    border-radius: 10px;
    width: 250px;
    flex: 0 0 auto;
    color: #000;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.tour-content {
    padding: 10px;
}

.tour-content h4 {
    font-size: 14px;
    margin: 0 0 8px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.price {
    color: red;
    font-weight: bold;
}


.slider-wrapper {
    position: relative;
}

/* center content like your cards */
.slider-inner {
    max-width: 1300px;   /* adjust as per design */
    margin: 0 auto;
    padding: 0 20px;
}
/* arrows now align with this width */
.slider-wrapper {
    position: relative;
}

/* container */
.similar-tour-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    z-index: 10;
}

/* 🔥 MAGIC FIX */
.slider-btn.left {
    left: -10px;
}

.slider-btn.right {
    right: -10px;
}
