h3 span{
  margin-top: 15px ;
  font-size: .8em;
  color: var(--text-light);
  font-weight: 400;
}

h3{
  padding:0 0 10px;
}

.carousel-container {
      max-width: 1400px;
      width: 100%;
      position: relative;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 0px 30px 40px;
    }

    .carousel-wrapper {
      padding: 40px 0 40px;
      overflow: hidden;
      position: relative;
      border-radius: 15px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 20px;
    }

    .destination__card {
      flex: 0 0 calc(25% - 15px);
      background: url(--white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
      position: relative;
    }
    
    .filter-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding: 20px 0;
    }

    .tag {
      display: flex;
      gap: 10px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.3);
      color: var(--text-dark);
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s;
      user-select: none;
      box-shadow: 0px 1px 4px 2px rgba(34, 60, 80, 0.11);
    }

    .tag img{
      width: 20px;
      height: auto;
    }

    .tag:hover {
      background: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
    }

    .tag.active {
      background: linear-gradient(
        180deg,
        #F8C44C 0%,
        #FFC921 0%,
        #F1BE3F 100%
      ); 
      border: 0px solid;
      font-weight: 600;
    }

    
    .card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 5px 10px;
      background: rgb(255, 255, 255);
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 500;
      color: var(--primary-color-dark);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: all 0.3s;
      z-index: 5;
    }
    
    .card-badge:hover {
      color: var(--white);
      transform: scale(1.1);
    }

    .card-badge span {
      color: var(--primary-color-dark);      
    }

    .card-badge .label{
      color: #00A650;
    }
  

    .destination__card:hover {
      transform: translateY(-5px);
    }

    .destination__card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }
      
    .place-name{
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .place-name img{
      height: 20px !important;
      width: auto;
    }

    .destination__card__details {
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .destination__card__details h4 {
      margin-bottom: 5px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .destination__card__details p {
      color: var(--text-light);
      font-size: 1rem;
    }

    .destination__rating {
      padding: 8px 15px;
      font-size: 1rem;
      white-space: nowrap;
      color: var(--white);
      background-color: var(--primary-color-dark);
      border-radius: 1rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .destination__card:hover .destination__rating {
      opacity: 0.9;
      transform: scale(1.05);
    }

    .ri-star-fill{
      background: linear-gradient(
        180deg,
        #F8C44C 0%,
        #FFC921 0%,
        #F1BE3F 100%
      ); 
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: var(--white);
      color: var(--primary-color-dark);
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 10;
    }

    .carousel-btn:hover {
      background: var(--primary-color-dark);
      color: var(--white);
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn:active {
      transform: translateY(-50%) scale(0.95);
    }

    .carousel-btn.prev {
      left: 5px;
    }

    .carousel-btn.next {
      right: 5px;
    }

    .carousel-dots {
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary-color-dark);
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: var(--primary-color-dark);
      width: 30px;
      border-radius: 6px;
    }



      @media (max-width: 1200px) {
      .destination__card {
        flex: 0 0 calc(33.333% - 14px);
      }
    }

    @media (max-width: 1024px) {
      .destination__card {
        flex: 0 0 calc(50% - 10px);
      }
    }

      @media (max-width: 768px) {
      .destination__card {
        flex: 0 0 100%;
      }

      .destination__card img {
        height: 350px;
      }
      
      .carousel-container {
        padding: 0px 0 40px;
      }
      
      .carousel-btn.prev {
        left: -10px;
      }

      .carousel-btn.next {
        right: -10px;
      }
    }