.breadcrumbb ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 1.2em;
}

.breadcrumbb li {
    display: flex;
    align-items: center;
    color: #333;
}

.breadcrumbb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
    font-size:1.2em;
}

.breadcrumbb a {
    text-decoration: underline !important;
    color:#6b6a6a ;
}
.breadcrumbb a:hover {
    text-decoration: none !important;
    
}

.breadcrumbb li:last-child {
    font-weight: bold;
}
  
.dest-baner{
    position: relative;
    height: 400px;
}
.dest-baner img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.dest-explain{
    margin-top: 100px;
    margin-bottom: 100px;
}
.dest-explain p:nth-child(1){
    font-size: 1.9em;
    font-weight: lighter;
}
.dest-explain p:nth-child(2){
    font-size: 1.2em;
    margin-top: 10px;
    
}
.trip-titles{
    margin-bottom: 0px !important;
    max-width:100vw;
}
.trip-title{
    padding: 20px 10px;
    list-style: none;
    display: inline-block;
    
}
.trip-title a{
    color: #000;
    font-size: 1.3em;
}
.trip-part-titles{
    background-color: #f6f4f0;
}
.overview-sec h3{
     font-size: 3em;
     font-weight: normal;
    
}
/* Trip Row Hover Effects */
.trip-row {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    /* border-radius: 8px; */
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Header row - no hover effects */
.trip-row.header {
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: bold;
    color: #222;
    border-bottom: 1px solid #ddd;
    cursor: default;
}

/* Hover effect for trip rows (excluding header) */
.trip-row:not(.header):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #bbb;
}

/* Hover effect for view trip arrow */
.trip-row:hover .view-trip a {
    transform: translateX(5px);
    color: var(--blue);
}

/* Add transition to the arrow for smooth animation */
.view-trip a {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Highlight price on hover */
.trip-row:hover .price .new {
    color: var(--blue);
}

/* Add transition to the price for smooth color change */
.price .new {
    transition: color 0.3s ease;
}

/* Slightly enlarge map image on hover */
.trip-row:hover .map img {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Add transition to the map image */
.map img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border-radius: 6px; */
    width: 150px;
    height: 100px;
}

/* Make the trip title more prominent on hover */
.trip-row:hover .trip .title {
    color: var(--blue);
}

/* Add transition to the title */
.trip .title {
    transition: color 0.3s ease;
}
  .trip-col {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .departing    { width: 120px; }
  .trip         { flex: 1; }
  .map          { width: 150px; }
  .days         { width: 60px; text-align: center; }
  .price        { width: 100px; }
  .view-trip    { width: 60px; text-align: right; font-size: 1.4em; }

  .trip .title {
    font-weight: bold;
  }

  .trip .subtitle {
    font-size: 0.85em;
    color: #666;
  }

  .map img {
    width: 130px;
    /* border-radius: 6px; */
  }

  .price .old {
    text-decoration: line-through;
    font-size: 0.85em;
    color: #999;
  }

  .price .new {
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
  }

  .view-trip a {
    color: #000;
    text-decoration: none;
  }

  /* Responsive behavior */
  @media (max-width: 768px) {
    .trip-col.trip,
    .trip-col.map {
      display: none;
    }

    .trip-row.header .trip-col.trip,
    .trip-row.header .trip-col.map {
      display: none;
    }

    .trip-row {
      flex-wrap: wrap;
      padding: 12px;
    }

    .view-trip {
      margin-left: auto;
    }
  }
  .hidden {
    display: none;
  }
  
  .travel-deals-sec button{
    display: block;
    margin-bottom: 30px;
    /* margin: 30px auto; */
    padding: 12px 25px;
    background-color: #fff;
    border: 1px solid #000 !important;
    color: #000;
    border: none;
    /* border-radius: 6px; */
    font-size: 1em;
    cursor: pointer;
    transition: all .3s;

  }
  .travel-deals-sec button:hover{
    background-color: #000;
    color: #fff;
    transition: all .3s;
  }
  .afr-refine-search a{
     display: block;
    margin-bottom: 30px;
    /* margin: 30px auto; */
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    /* border-radius: 6px; */
    font-size: 1em;
    cursor: pointer;
  }

  :root {
    --blue: hsl(194.92deg 87.1% 57.45%);
    --green: hsl(94.8deg 98.04% 40%);
}

/* Africa Section Header Styles */
.afr-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.afr-section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* .afr-refine-search a {
    background-image: url('./images/search-back.png');
    background-size: cover;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.afr-refine-search a:hover {
    transform: translateY(-3px);
} */

.afr-refine-search img {
    width: 15px;
    height: auto;
    transition: transform 0.3s ease;
}

.afr-refine-search a:hover img {
    transform: translateX(5px);
}

/* Africa Trips Grid Layout */
.afr-trips-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Africa Trip Card Styles */
.afr-trip-item {
    border: 1px solid #ddd;
    /* border-radius: 12px; */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

.afr-trip-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0);
}

.afr-trip-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.afr-trip-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.afr-trip-image {
    height: 180px;
    overflow: hidden;
}

.afr-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.afr-trip-item:hover .afr-trip-image img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

.afr-trip-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.afr-trip-meta {
    font-size: 0.75em;
    color: #777;
    margin-bottom: 8px;
}

.afr-days {
    position: relative;
    margin-right: 10px;
}

.afr-days::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    width: 3px;
    height: 3px;
    background-color: #777;
    /* border-radius: 50%; */
    transform: translateY(-50%);
}

.afr-trip-name {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.afr-trip-item:hover .afr-trip-name {
    color: var(--blue);
}

.afr-trip-price {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.afr-price-label {
    color: #777;
    margin-right: 5px;
    font-size: 0.9em;
}

.afr-price-value {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
}

/* Africa Wishlist Button */
.afr-wishlist-container {
    padding: 0 15px 15px;
}

.afr-wishlist-btn {
    width: 100%;
    padding: 8px 0;
    border: 1px solid #ddd;
    /* border-radius: 25px; */
    background-color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.afr-wishlist-btn img {
    width: 15px;
    height: 15px;
    margin-left: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.afr-wishlist-btn:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

.afr-wishlist-btn:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.afr-wishlist-btn.added {
    background-color: #f8f8f8;
    color: var(--blue);
}

.afr-wishlist-btn.added img {
    filter: invert(58%) sepia(82%) saturate(2309%) hue-rotate(166deg) brightness(94%) contrast(101%);
    opacity: 1;
}

/* Load More Button */
#afr-loadmore-btn {
     display: block;
    margin-bottom: 30px;
    /* margin: 30px auto; */
    padding: 12px 25px;
    background-color: #fff;
    border: 1px solid #000 !important;
    color: #000;
    border: none;
    /* border-radius: 6px; */
    font-size: 1em;
    cursor: pointer;
}

#afr-loadmore-btn:hover {
    background-color: #000;
    color: #fff;
}

.afr-loadmore-btn img {
    width: 15px;
    height: auto;
    transition: transform 0.3s ease;
}

.afr-loadmore-btn:hover img {
    transform: translateX(5px);
}

/* Notification Styles */
.afr-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    /* border-radius: 8px; */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 0;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.afr-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.afr-notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.afr-notification-content span {
    font-size: 14px;
    font-weight: 500;
}

.afr-notification-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    color: #777;
}

.afr-notification.add {
    border-left: 4px solid var(--green);
}

.afr-notification.remove {
    border-left: 4px solid #f44336;
}

.afr-loadmore-btn.loading {
    opacity: 0.8;
    cursor: wait;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1100px) {
    .afr-trips-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .afr-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .afr-refine-search {
        margin-top: 15px;
        width: 100%;
    }
    
    .afr-refine-search a {
        justify-content: center;
        width: 100%;
        padding: 10px 15px;
    }
    
    .afr-trip-image {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
   .travel-part{
    flex-direction: column;
    
  }
  .travel-img{
    /* width: 150px;
    height: 150px; */
}
.travel-txt{
  text-align: center;
  width: 100%;
  padding-left: 0px;
  margin-top: 30px;
}
    .afr-trips-container {
        grid-template-columns: 1fr;
    }
    
    .afr-section-title {
        font-size: 2em;
    }
    
    .afr-trip-image {
        height: 200px;
    }
}

.top-ten-sec{
    margin-top: 100px;
}
.top-ten-title{
    font-size: 2em;

}
.top-ten-item{
    border: 1px solid rgb(221, 220, 220);
    min-height: 650px;
    height: 650px;
    /* border-radius: 12px; */
    
}
.dest-item-img img{
height: 270px;
object-fit: cover;
}
.top-ten-text{
    font-size: 1.1em;
}
.top-ten-text p{
    min-height: 180px;
}
.top-ten-text button{
    width: 100%;
    padding: 10px 0px;
    background-color: #fff !important;
  
}
.top-ten-text button:hover{
    background-color: #000 !important;
    color: #fff;
}
.top-ten-navs{
    position: absolute;
    bottom: 0px;
    right: 10px;
}
.inspiration-carousel, .destination-carousel-sec  {
  padding-top: 80px;
  padding-bottom: 80px;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.ten-nav{
    border: 1px solid rgb(221, 220, 220);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    filter: brightness(-100%);
}
.ten-next{
    transform: translateX(0px);
    transition: .5s ease;
    cursor: pointer;
}
.ten-next:hover{
    transform: translateX(3px);
    transition: .5s ease;
}
.ten-prev{
    transform: translateX(0px);
    transition: .5s ease;
    margin-left: 10px;
    cursor: pointer;
}
.ten-prev:hover{
    transform: translateX(-3px);
    transition: .5s ease;
}

:root {
    --blue: hsl(194.92deg 87.1% 57.45%);
    --green: hsl(94.8deg 98.04% 40%);
    --star-color: #ffc107;
    --star-inactive: #e0e0e0;
}

/* Africa Reviews Container */
.afr-rev-container {
    margin: 40px 0;
    font-family: Arial, sans-serif;
}

.afr-rev-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Overall Rating Styles */
.afr-rev-overall {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.afr-rev-stars {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.afr-rev-star {
    position: relative;
    display: inline-block;
    font-size: 1.4em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 18px;
    height: 18px;
}

.afr-rev-star::before {
    content: "★";
    position: absolute;
    top: -8px;
    left: 0;
}

.afr-rev-star.active {
    color: var(--star-color);
}

.afr-rev-rating {
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}

.afr-rev-count {
    font-size: 1.1em;
    color: #777;
    margin-right: 10px;
}

.afr-rev-info-icon {
    color: #999;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    transition: all 0.3s ease;
}

.afr-rev-info-icon:hover {
    color: var(--blue);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Rating Filter Section */
.afr-rev-filter {
    margin-bottom: 30px;
}

.afr-rev-filter-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
}

.afr-rev-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.afr-rev-tab {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.afr-rev-tab:hover {
    background-color: #f5f5f5;
}

.afr-rev-tab.active {
    background-color: #f0f0f0;
}

.afr-rev-tab-text {
    font-weight: 500;
    margin-right: 15px;
}

.afr-rev-tab-stars {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.afr-rev-tab-star {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 14px;
    height: 14px;
}

.afr-rev-tab-star::before {
    content: "★";
    position: absolute;
    top: -7px;
    left: 0;
}

.afr-rev-tab-star.active {
    color: var(--star-color);
}

.afr-rev-tab-count {
    font-size: 0.9em;
    color: #777;
    margin-right: 15px;
    width: 40px;
    text-align: right;
}

.afr-rev-progress-bar {
    flex: 1;
    height: 8px;
    background-color: #eee;
    /* border-radius: 4px; */
    overflow: hidden;
}

.afr-rev-progress {
    height: 100%;
    background-color: var(--star-color);
    /* border-radius: 4px; */
}

/* Reviews Content Area */
.afr-rev-content-wrapper {
    position: relative;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
}

.afr-rev-content {
    display: none;
}

.afr-rev-content.active {
    display: block;
}

/* Review Item Styles */
.afr-rev-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.afr-rev-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.afr-rev-item-stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.afr-rev-item-star {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 14px;
    height: 14px;
}

.afr-rev-item-star::before {
    content: "★";
    position: absolute;
    top: -7px;
    left: 0;
}

.afr-rev-item-star.active {
    color: var(--star-color);
}

.afr-rev-item-tour {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
    text-transform: uppercase;
}

.afr-rev-item-info {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.afr-rev-item-text {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

.afr-rev-item-more {
    display: inline-block;
    color: var(--blue);
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.afr-rev-item-more:hover {
    color: var(--green);
    text-decoration: underline;
}

.afr-rev-item-date {
    font-size: 0.8em;
    color: #999;
}

/* Scrollbar Styling */
.afr-rev-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.afr-rev-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* border-radius: 4px; */
}

.afr-rev-content-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    /* border-radius: 4px; */
}

.afr-rev-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .top-ten-item{
    border: 1px solid rgb(221, 220, 220);
    min-height: 600px;
    height:600px;
    /* border-radius: 12px; */
    
}
    .afr-rev-overall {
        flex-wrap: wrap;
    }
    
    .afr-rev-content-wrapper {
        max-height: 500px;
    }
    
    .afr-rev-item {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    .afr-rev-title {
        font-size: 1.8em;
    }
    
    .afr-rev-tab {
        flex-wrap: wrap;
    }
    
    .afr-rev-progress-bar {
        margin-top: 5px;
        width: 100%;
    }
    
    .afr-rev-content-wrapper {
        max-height: 450px;
        padding: 10px;
    }
    
    .afr-rev-item {
        padding: 10px;
    }
}





        .afr-rev-content-wrapper {
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
        }
        
        .afr-rev-item-text.expanded {
            max-height: none !important;
        }
        
        .afr-rev-tab::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background-color: var(--blue);
            transition: width 0.3s ease;
        }
        
        .afr-rev-tab.active::after {
            width: 100%;
        }
 
/* Checkbox styling for rating tabs */
.afr-rev-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--blue);
}

/* Modify tab styling to accommodate checkboxes */
.afr-rev-tab {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
}

.afr-rev-tab.active {
    background-color: rgba(var(--blue-rgb), 0.08);
    border-left-color: var(--blue);
}

/* Remove independent scrolling from content wrapper */
.afr-rev-content-wrapper {
    position: relative;
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Ensure content visibility is controlled by active class only */
.afr-rev-content {
    display: none;
}

.afr-rev-content.active {
    display: block;
}

/* Remove scrollbar styling since we no longer need it */
.afr-rev-content-wrapper::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 768px) {
    /* Adjust checkbox size on smaller screens */
    .afr-rev-checkbox {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    /* Make tabs more compact on mobile */
    .afr-rev-tab {
        padding: 8px 12px;
    }
}
/* Base styling */
.inspiration-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.inspiration-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Carousel structure */
.inspiration-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Card styling */
.carousel-card {
    flex: 1;
    border: 1px solid #e5e5e5;
    /* border-radius: 4px; */
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin:10px;
    min-height:365px;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 600;
}

.card-date {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Navigation buttons */
.carousel-navigation {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    color: #555;
}

.nav-button:hover {
    background-color: #f8f8f8;
    border-color: #aaa;
    color: #333;
}

.nav-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.nav-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .afr-rev-content-wrapper{
        max-height:700px !important;
        overflow-y:auto !important
    }
    .carousel-track {
        gap: 15px;
    }
    
    .carousel-card {
      min-height:305px;
    }
    
    .card-image {
        height: 150px;
    }
    
    .card-title {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .card-date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .inspiration-title {
        font-size: 24px;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .carousel-card {
        min-width: 180px;
    }
    
    .card-image {
        height: 120px;
    }
}


.destination-title-land {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 30px;
}


#browse-destination-carousel .offer-card {
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#browse-destination-carousel .offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#browse-destination-carousel .offer-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    transition: transform 0.5s ease;
}

#browse-destination-carousel .offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

#browse-destination-carousel .offer-card:hover .offer-card-img img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

#browse-destination-carousel .offer-card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 0.7;
}

#browse-destination-carousel .offer-card:hover .offer-card-img::before {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%);
}

#browse-destination-carousel .country {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
    font-size: 1.4em;
    font-weight: bold;
    transition: transform 0.4s ease, color 0.4s ease;
}

#browse-destination-carousel .offer-card:hover .country {
    transform: translateY(-5px);
    color: var(--blue);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
  .travel-part{
            padding: 0px 0px;
            justify-content: center;
          }
    .travel-img{
        width: 200px;
        height: 200px;
    }
    .travel-img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .travel-txt{
        font-size: 1.2em;
        padding-left: 50px;
      }
    .destination-title-land {
        font-size: 1.8em;
    }
    
    #browse-destination-carousel .country {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 768px) {
    .inspiration-carousel, .destination-carousel-sec {
     padding-top: 10px; 
    padding-bottom: 80px;
}
    .destination-title-land {
        
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;

    }
    
    #browse-destination-carousel .offer-card-img {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .dest-explain{
    margin-top: 50px;
    margin-bottom: 50px;
}
    .trip-titles{
        overflow-x:auto;

}
    .trip-title{
    min-width:100px;
    
}
    #browse-destination-carousel .offer-card-img {
        height: 160px;
    }
    
    #browse-destination-carousel .country {
        font-size: 1.1em;
    }
}


.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20002;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  background: #000;
  /* border-radius: 8px; */
  overflow: hidden;
}

.close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1;
}

video {
  width: 100%;
  display: block;
}
.trip-part-titles {
    background-color: #f6f4f0;

    transition: background-color 0.3s ease;
}

.trip-title {
    padding: 20px 10px;
    list-style: none;
    display: inline-block;
    position: relative; /* Added for underline effect */
    transition: all 0.3s ease;
}

.trip-title a {
    color: #000;
    font-size: 1.3em;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for trip-title items */
.trip-title:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Text color change on hover */
.trip-title:hover a {
    color: var(--blue);
}

/* Underline effect on hover */
.trip-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.trip-title:hover::after {
    width: 100%;
}

/* Active state styling (for currently selected tab) */
.trip-title.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.trip-title.active a {
    color: var(--blue);
    font-weight: 600;
}

.trip-title.active::after {
    width: 100%;
    background-color: var(--blue);
}

/* Optional enhancement: Add subtle scale effect */
.trip-title:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .trip-title {
        padding: 15px 8px;
    }
    
    .trip-title a {
        font-size: 1.1em;
    }
    
    .trip-title::after {
        height: 2px;
    }
}

.dest-item{
    border: 2px solid rgb(221, 220, 220);
    min-height: 250px;
    margin-bottom:20px;
    display: flex;
    flex-direction: column;
    margin: 10px;
   
}
.dest-item a{
    color: #000;
}
.dest-item-img{
    width: 100%;
    height: 220px;
  
}
.dest-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.dest-item-text{
    display: flex;
    align-items: center;
    padding: 20px 0px 20px 10px;
}
.dest-offers .dest-item {
    max-height: max-content;
    min-height: max-content;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
   
  }
  
  
  .dest-offers .dest-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); */
  }
  
  
  .dest-offers .dest-item-img {
    position: relative;
    overflow: hidden;
  
    transition: transform 0.5s ease;
  }
  
  .dest-offers .dest-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
  }
  
  
  .dest-offers .dest-item:hover .dest-item-img img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
  }
  
  
  .dest-offers .dest-item-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 0.7;
  }
  
  .dest-offers .dest-item:hover .dest-item-img::before {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%);
  }
  
  
  .dest-offers .country {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
    font-size: 1.4em;
    font-weight: bold;
    transition: transform 0.4s ease, color 0.4s ease;
  }
  
  .dest-offers .dest-item:hover .country {
    transform: translateY(-5px);
    color: var(--blue);
  }
  
  
  .dest-offers .dest-item-img::after {
    content: "Explore Now";
    position: absolute;
    bottom: -40px;
    right: 5px;
    background-color: var(--blue);
    color: white;
    padding: 8px 15px;
    /* border-radius: 15px; */
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0;
    z-index: 2;
    transition: bottom 0.4s ease, opacity 0.4s ease;
  }
  
  .dest-offers .dest-item:hover .dest-item-img::after {
    bottom: 20px;
    opacity: 1;
  }
  
  
  .dest-offers .dest-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* border-radius: 15px; */
    box-shadow: 0 0 0 0 rgba(var(--blue-rgb), 0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
  }
  
  .dest-offers .dest-item:hover::after {
    box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.3);
  }
  .video-sec{
    display: flex;
    justify-content: center;
  }
  .video-sec img{
    /* max-width: 700px; */
    width: 100%;
  }
  .video-sec span{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:50px;
      margin:0px auto;
      z-index:1;
      font-size:2em;
      font-weight:bold;
  }
  .review-question{
    background-color: #f6f4f0;
   padding: 30px;
   height: 150px;
}
.review-question p{
    font-size: 1.5em;
}
.review-question button{

}
.review-question button{
    width: 50px;
    background-color: none;
    border-radius: 8px;
 
  
}
.review-question button:hover{
    background-color: #6b6a6a !important;
    color: #fff;
}
/* Create a CSS solution for sticky filter sidebar */
.rev-tab-content {
  display: flex;
  gap: 20px;
  position: relative;
}

.afr-rev-filter {
  position: sticky;
  top: 20px; /* Adjust this value based on your header height */
  align-self: flex-start;
  max-height: calc(100vh - 40px); /* Viewport height minus margins */
  overflow-y: auto;
  width: 30%; /* Adjust as needed */
}

.afr-rev-content-wrapper {
  flex: 1;
  overflow-y: visible;
  height: auto;
}

/* Make sure the parent container has a defined height to enable proper scrolling */
#trip-reviews {
  position: relative;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .rev-tab-content {
    flex-direction: column;
  }
  
  .afr-rev-filter {
    position: relative;
    top: 0;
    width: 100%;
    max-height: none;
    margin-bottom: 20px;
  }
}
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20002;
}

.map-modal .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.map-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 20px;
}

.map-modal .map-title {
  padding: 15px 20px;
  margin: 0;
  font-size: 1.5em;
  border-bottom: 1px solid #eee;
}

.map-modal .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  color: #333;
  font-size: 30px;
  cursor: pointer;
  z-index: 1;
}

.map-modal .map-image-container {
  padding: 20px;
  text-align: center;
}

.map-modal .enlarged-map {
  max-width: 100%;
  max-height: 70vh;
}

/* Make map images appear clickable */
.trip-row .map img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.trip-row .map img:hover {
  transform: scale(1.05);
}