.nav-container {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  border-radius: 0 0 20px 20px;
}

/* Navigation Links */
.listnav {
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
.listnav .nav-links-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.listnav .nav-links-wrapper::-webkit-scrollbar {
  display: none;
}
.listnav .nav-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 16px;
  min-width: 120px;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.listnav .nav-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.listnav .nav-icon svg {
  transition: all 0.3s ease;
}
.listnav .nav-text {
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.banner-section {
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
}
.banner-section .banner-item {
  width: 100%;
  position: relative;
}
.banner-section .banner-item img {
  width: 100%;
  max-height: 480px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 100px 100px;
}
.banner-section .banner-item .banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1320px;
  margin: auto;
  z-index: 3;
}
.banner-section .banner-item .banner-content .summary {
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  margin: auto;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e40808;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.view-all-link:hover {
  gap: 12px;
  color: #c00606;
}

.tours-section .box-main {
  background: #f8f8f8;
  padding: 48px 0;
}
.tours-section .box-main .container {
  margin: auto;
}
.tours-section .section-title {
  font-size: 24px;
  color: #000000;
}

.count-order h5 {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
}
.count-order .sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.count-order .sort span {
  font-size: 14px;
  color: #666;
}
.count-order .sort select {
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}
.count-order .sort select:focus {
  border-color: #e40808;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(228, 8, 8, 0.1);
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  background: white;
}
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.destination-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-info {
  padding: 20px;
}

.destination-name {
  font-size: 20px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 1.4;
}

.destination-tours {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Country Detail Page */
.breadcrumb-section {
  background: #f8f9fa;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: #e40808;
}
.breadcrumb-item.active {
  color: #0d0d0d;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.city-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.city-card:hover .city-image img {
  transform: scale(1.05);
}

.city-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.city-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.city-info {
  padding: 16px;
}

.city-name {
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0;
}

/* Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.tour-card .tour-image-wrapper {
  border-radius: 12px;
  transition: border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour-card .tour-image {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour-card .tour-title {
  transition: color 0.3s ease;
}
.tour-card:hover .tour-title {
  color: #e40808;
}
.tour-card:hover .tour-image-wrapper {
  border-radius: 16px 16px 60px 16px;
}
.tour-card:hover .tour-image-wrapper .tour-image {
  transform: scale(1.08);
}

.tour-image {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.tour-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e40808;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-info {
  padding: 20px;
}

.tour-name {
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.tour-category {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 12px;
  color: #666;
}

.price-value {
  font-size: 18px;
  font-weight: 700;
  color: #e40808;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

/* Destinations List */
.destinations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.destination-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.destination-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.destination-item:hover .destination-item-image img {
  transform: scale(1.05);
}

.destination-item-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.destination-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-item-info {
  padding: 20px;
}

.destination-item-name {
  font-size: 20px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.destination-item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.blog-section .blog-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 12px;
  line-height: 1.2;
}
.blog-section .blog-subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #f2f2f2;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
}
.blog-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.blog-card .blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding: 20px;
}
.blog-card .blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
}
.blog-card .blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.blog-card .blog-meta {
  margin-bottom: 12px;
}
.blog-card .blog-date {
  font-size: 15px;
  color: #3b3b3b;
}
.blog-card .blog-excerpt {
  font-size: 16px;
  color: #0d0d0d;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
}
.blog-card .blog-excerpt p {
  margin: 0;
}
.blog-card .blog-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e40808;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-card .blog-read-more svg {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

.btn-view-all-blog {
  background: #fde7e7;
  border-radius: 4px 4px 24px 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e40808;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-view-all-blog svg {
  transition: transform 0.3s ease;
}
.btn-view-all-blog:hover svg {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .listnav .nav-links-wrapper {
    justify-content: flex-start;
    padding: 0 8px;
  }
  .listnav .nav-icon {
    width: 48px;
    height: 48px;
  }
  .listnav .nav-icon svg {
    width: 36px;
    height: 36px;
  }
  .listnav .nav-text {
    font-size: 12px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .country-hero {
    height: 300px;
  }
  .country-hero .hero-title {
    font-size: 36px;
  }
  .country-hero .hero-description {
    font-size: 16px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .destinations-grid,
  .cities-grid,
  .tours-grid,
  .destinations-list {
    grid-template-columns: 1fr;
  }
  .categories-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .categories-list {
    grid-template-columns: 1fr;
  }
}
/* Product Badge Styles */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
}

.badge-tour {
  background: #e40808;
}

.badge-admission {
  background: #2ecc71;
}

.tour-card {
  position: relative;
}

.tour-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.tour-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.tour-content {
  padding: 16px;
}

.tour-title {
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-price-label {
  font-size: 15px;
  color: #3b3b3b;
}

.tour-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.tour-price {
  font-size: 18px;
  font-weight: 700;
  color: #e40808;
}

.no-tours {
  text-align: center;
  padding: 60px 20px;
}
.no-tours svg {
  width: 64px;
  height: 64px;
  color: #ccc;
  margin-bottom: 20px;
}
.no-tours h4 {
  font-size: 20px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.no-tours p {
  color: #999;
  margin: 0;
}

/* Filter Sidebar Styles */
.layout-filter {
  background: white;
  padding: 16px;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.selected-filters {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
}
.selected-filters h6 {
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
}
.selected-filters .btn-clear-all {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.3s;
}
.selected-filters .btn-clear-all:hover {
  color: #e40808;
}
.selected-filters .btn-clear-all svg {
  width: 16px;
  height: 16px;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.filter-tag {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-tag .remove-tag {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.filter-tag .remove-tag:hover {
  background: #e0e0e0;
  color: #000;
}

.filter-section {
  border-bottom: 1px solid #e0e0e0;
}
.filter-section:last-child {
  border-bottom: none;
}

.filter-header {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  cursor: pointer;
  transition: color 0.3s;
}
.filter-header svg {
  width: 20px;
  height: 20px;
  stroke: #0d0d0d;
}
.filter-header span {
  flex: 1;
  text-align: left;
}
.filter-header .arrow {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.filter-header[aria-expanded=false] .arrow {
  transform: rotate(180deg);
}
.filter-header:hover {
  color: #e40808;
}
.filter-header:hover svg {
  stroke: #e40808;
}

.collapse {
  transition: height 0.3s ease;
  overflow: hidden;
}
.collapse:not(.show) {
  height: 0;
}
.collapse.show {
  height: auto;
}

.filter-content .form-check {
  margin-bottom: 10px;
}
.filter-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}
.filter-content .form-check .form-check-input:checked {
  background-color: #e40808;
  border-color: #e40808;
}
.filter-content .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 8, 8, 0.25);
  border-color: #e40808;
}
.filter-content .form-check .form-check-label {
  font-size: 14px;
  color: #111111;
  font-family: "Opensans-Regular";
  margin-left: 8px;
  cursor: pointer;
}

.btn-show-more {
  background: none;
  border: none;
  color: #e40808;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.btn-show-more:hover {
  gap: 10px;
}
.btn-show-more svg {
  transition: transform 0.3s;
}
.btn-show-more:hover svg {
  transform: translateX(2px);
}

.price-display {
  text-align: center;
}
.price-display h6 {
  font-weight: 600;
  color: #333;
  margin: 0;
  font-size: 16px;
}

.price-slider-container {
  height: 20px;
  margin: 20px 0;
  position: relative;
}
.price-slider-container .price-slider-track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #f2c3b0;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.price-slider-container .price-slider-range {
  position: absolute;
  height: 4px;
  background: #e40808;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  width: 100%;
}
.price-slider-container .price-slider {
  position: absolute;
  width: 100%;
  height: 20px;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  pointer-events: none;
  top: 0;
}
.price-slider-container .price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #e40808;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: all;
}
.price-slider-container .price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #e40808;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: all;
  border: none;
}
.price-slider-container .price-slider::-moz-range-track {
  background: transparent;
  height: 4px;
}

.price-labels .price-label {
  font-weight: 500;
  color: #666;
  font-size: 14px;
}

.group-size-options .form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.destination-trending .trending-top h2 {
  font-size: 24px;
  margin: 0;
}
.destination-trending .trending-top h2 strong {
  color: #e40808;
}
.destination-trending .trending-cities-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 0 8px 16px;
  scroll-behavior: smooth;
}
.destination-trending .trending-cities-grid::-webkit-scrollbar {
  height: 4px;
}
.destination-trending .trending-cities-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.destination-trending .trending-cities-grid::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}
.destination-trending .trending-cities-grid::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
.destination-trending .trending-cities-grid .trending-city-card {
  flex: 0 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.destination-trending .trending-cities-grid .trending-city-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.destination-trending .trending-cities-grid .trending-city-card:hover .city-image {
  transform: scale(1.05);
}
.destination-trending .trending-cities-grid .trending-city-card:hover .city-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}
.destination-trending .trending-cities-grid .trending-city-card:hover .city-name {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.destination-trending .trending-cities-grid .trending-city-card .city-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}
.destination-trending .trending-cities-grid .trending-city-card .city-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.destination-trending .trending-cities-grid .trending-city-card .city-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.destination-trending .trending-cities-grid .trending-city-card .city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 24px 20px 20px;
  transition: all 0.3s ease;
}
.destination-trending .trending-cities-grid .trending-city-card .city-name {
  color: #fff;
  font-size: 18px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.single-tour .single-tour-top h2 {
  font-size: 24px;
  font-weight: 700;
  color: #3b3b3b;
  margin: 0;
}

footer {
  min-height: 300px;
}

@media (max-width: 768px) {
  .banner-section .banner-item img {
    height: 300px !important;
    border-radius: unset !important;
  }
  .banner-section .banner-item .banner-content {
    bottom: 80px !important;
  }
  .banner-section .banner-item .banner-content .summary {
    font-size: 30px !important;
  }
  .listnav .nav-links-wrapper {
    padding: 0 !important;
  }
  .destination-trending .trending-top h2 {
    font-size: 20px !important;
  }
  .destination-trending .trending-cities-grid {
    display: grid !important;
  }
  .tours-section .box-main {
    padding: 0 !important;
  }
  .count-order h5 {
    font-size: 12px !important;
  }
  .count-order .sort span {
    font-size: 12px !important;
  }
  .layout-filter {
    position: static;
    margin-bottom: 30px;
  }
  .layout-filter .selected-filters {
    flex-wrap: wrap;
  }
  .layout-filter .filter-section .filter-header {
    font-size: 15px;
  }
  footer {
    min-height: unset !important;
  }
}
