/* Tours Hero */
.tours-hero{
  background:linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  padding:60px 0;
  position:relative;
  overflow:hidden;
}
.tours-hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity:0.4;
}
.hero-content{
  position:relative;
  z-index:1;
  text-align:center;
}
.hero-title{
  font-size:42px;
  font-weight:900;
  color:#fff;
  margin-bottom:12px;
}
.hero-subtitle{
  font-size:18px;
  color:rgba(255,255,255,0.95);
  margin:0;
}

/* Tours Section */
.tours-section{
  background:#fff;
}

/* Filter & Sort Bar */
.filter-sort-bar{
  background:#fff;
  border-bottom:2px solid #f3f4f6;
  box-shadow:0 4px 16px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:100;
  transition:all 0.3s ease;
  padding:20px 0;
  margin-bottom:32px;
}
.filter-sort-bar.scrolled{
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
  border-bottom-color:#e5e7eb;
}
.filter-sort-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.btn-filters{
  background:#1f2937;
  color:#fff;
  border:none;
  padding:12px 24px;
  border-radius:50px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  transition:all 0.3s ease;
  position:relative;
}
.btn-filters:hover{
  background:#111827;
  transform:translateY(-2px);
}
.filter-badge{
  background:#ef4444;
  color:#fff;
  width:20px;
  height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
}
.sort-dropdown-wrapper{
  display:flex;
  align-items:center;
  gap:8px;
}
.sort-dropdown-wrapper label{
  font-size:13px;
  font-weight:500;
  color:#6b7280;
  margin:0;
}
.sort-select-modern{
  background:transparent;
  border:none;
  border-bottom:1px solid #111;
  padding:2px 20px 2px 0;
  border-radius:0;
  font-size:13px;
  font-weight:600;
  color:#111;
  cursor:pointer;
  transition:all 0.3s ease;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right center;
  background-size:12px;
}
.sort-select-modern:focus{
  outline:none;
  border-bottom-color:#111;
}

/* Sort Trigger Mobile */
.sort-trigger-mobile{
  background:transparent;
  border:none;
  border-bottom:1px solid #111;
  padding:2px 20px 2px 0;
  font-size:13px;
  font-weight:600;
  color:#111;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  transition:all 0.3s ease;
}
.sort-trigger-mobile i{
  font-size:10px;
}

/* Sort Modal (Bottom Sheet) */
#sortModal .modal-dialog-bottom{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  margin:0;
  max-width:100%;
}
#sortModal .modal-content{
  border-radius:20px 20px 0 0;
  border:none;
  box-shadow:0 -4px 20px rgba(0,0,0,0.15);
}
#sortModal .modal-header{
  border-bottom:1px solid #f3f4f6;
  padding:20px;
}
#sortModal .modal-title{
  font-size:18px;
  font-weight:800;
  color:#111;
}
#sortModal .modal-body{
  padding:0;
}
.sort-options{
  display:flex;
  flex-direction:column;
}
.sort-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  cursor:pointer;
  transition:background 0.3s ease;
  border-bottom:1px solid #f3f4f6;
}
.sort-option:last-child{
  border-bottom:none;
}
.sort-option:hover{
  background:#f9fafb;
}
.sort-option input[type="radio"]{
  display:none;
}
.sort-option span{
  font-size:15px;
  font-weight:500;
  color:#374151;
}
.sort-option i{
  color:#3b82f6;
  font-size:16px;
  opacity:0;
  transition:opacity 0.3s ease;
}
.sort-option input[type="radio"]:checked + span{
  color:#3b82f6;
  font-weight:600;
}
.sort-option input[type="radio"]:checked ~ i{
  opacity:1;
}

/* Filter Modal */
.modal-content{
  border-radius:20px;
  border:none;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.modal-header{
  border-bottom:2px solid #f3f4f6;
  padding:24px;
}
.modal-title{
  font-size:24px;
  font-weight:900;
  color:#111;
}
.modal-body{
  padding:24px;
}

/* Filter Modal - Mobile Bottom Sheet */
@media (max-width: 767px){
  #filterModal .modal-dialog-bottom-filters{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    margin:0;
    max-width:100%;
    height:85vh;
  }
  #filterModal .modal-content{
    border-radius:20px 20px 0 0;
    height:100%;
    display:flex;
    flex-direction:column;
  }
  #filterModal .modal-header{
    padding:20px;
    border-bottom:1px solid #f3f4f6;
  }
  #filterModal .modal-title{
    font-size:20px;
  }
  #filterModal .modal-body{
    padding:20px;
    overflow-y:auto;
    flex:1;
  }
  #filterModal .modal-footer{
    position:sticky;
    bottom:0;
    background:#fff;
    border-top:1px solid #f3f4f6;
    padding:16px 20px;
    margin:0;
    display:flex;
    gap:12px;
  }
  #filterModal .modal-footer .btn-clear-filters,
  #filterModal .modal-footer .btn-apply-filters{
    flex:1;
    justify-content:center;
  }
}
.filter-section-modal{
  border-bottom:1px solid #f3f4f6;
  padding:20px 0;
}
.filter-section-modal:last-child{
  border-bottom:none;
}
.filter-section-title{
  font-size:18px;
  font-weight:800;
  color:#111;
  margin-bottom:16px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:color 0.3s ease;
}
.filter-section-title:hover{
  color:#ef4444;
}
.filter-section-title i{
  font-size:14px;
  transition:transform 0.3s ease;
}
.filter-section-title[aria-expanded="false"] i{
  transform:rotate(-90deg);
}
.filter-options{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.filter-checkbox{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  padding:8px;
  border-radius:8px;
  transition:background 0.3s ease;
}
.filter-checkbox:hover{
  background:#f9fafb;
}
.filter-checkbox input[type="checkbox"]{
  width:20px;
  height:20px;
  cursor:pointer;
  accent-color:#ef4444;
}
.filter-checkbox span{
  font-size:15px;
  color:#374151;
  font-weight:500;
}
.btn-show-more{
  background:transparent;
  border:none;
  color:#ef4444;
  font-weight:700;
  font-size:14px;
  padding:8px 0;
  cursor:pointer;
  margin-top:12px;
  text-decoration:underline;
}
.btn-show-more:hover{
  color:#dc2626;
}
.price-info{
  font-size:14px;
  color:#6b7280;
  margin-bottom:16px;
}
.price-inputs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.price-input-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.price-input-group label{
  font-size:13px;
  font-weight:600;
  color:#6b7280;
}
.price-input{
  border:2px solid #e5e7eb;
  padding:12px;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  color:#111;
  transition:all 0.3s ease;
  width:100%;
  box-sizing:border-box;
}
.price-input:focus{
  outline:none;
  border-color:#ef4444;
}
.modal-footer{
  border-top:2px solid #f3f4f6;
  padding:20px 24px;
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.modal-footer .btn-clear-filters{
  background:transparent;
  border:2px solid #e5e7eb;
  color:#6b7280;
  padding:12px 12px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all 0.3s ease;
}
.modal-footer .btn-clear-filters:hover{
  border-color:#ef4444;
  color:#ef4444;
}
.modal-footer .btn-apply-filters{
  background:#ef4444;
  border:none;
  color:#fff;
  padding:12px 32px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all 0.3s ease;
}

/* Old Filter Bar - Hidden */
.filter-bar{
  display:none;
}
.filter-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  cursor:pointer;
}
.filter-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  font-weight:800;
  color:#111;
}
.filter-title i{
  color:#ef4444;
  font-size:20px;
}
.btn-toggle-filters{
  background:transparent;
  border:none;
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 16px;
  border-radius:8px;
  cursor:pointer;
  transition:all 0.3s ease;
  color:#6b7280;
  font-weight:600;
}
.btn-toggle-filters:hover{
  background:#f9fafb;
  color:#ef4444;
}
.filter-count{
  background:linear-gradient(135deg, #ef4444, #dc2626);
  color:#fff;
  padding:4px 12px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
}
.btn-toggle-filters i{
  font-size:14px;
  transition:transform 0.3s ease;
}

/* Filter Content */
.filter-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
  padding:0 24px;
}
.filter-content.show{
  max-height:1000px;
  padding:0 24px 24px;
}

/* Filter Group */
.filter-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.filter-label{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:#111;
  font-size:14px;
}
.filter-label i{
  color:#ef4444;
  font-size:14px;
}
.filter-select{
  padding:12px 16px;
  border:2px solid #e5e7eb;
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  color:#111;
  background:#fff;
  cursor:pointer;
  transition:all 0.3s ease;
}
.filter-select:focus{
  border-color:#ef4444;
  outline:none;
  box-shadow:0 0 0 4px rgba(239,68,68,0.1);
}

/* Filter Actions */
.filter-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top:20px;
  padding-top:20px;
  border-top:2px solid #f3f4f6;
}
.btn-clear-filters,
.btn-apply-filters{
  padding:12px 24px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  gap:8px;
  border:none;
}
.btn-clear-filters{
  background:#f9fafb;
  color:#6b7280;
  border:2px solid #e5e7eb;
}
.btn-clear-filters:hover{
  background:#fff;
  color:#111;
  border-color:#111;
}
.btn-apply-filters{
  background:linear-gradient(135deg, #ef4444, #dc2626);
  color:#fff;
}
.btn-apply-filters:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 16px rgba(239,68,68,0.4);
}

/* Results Header */
.results-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:32px;
  flex-wrap:wrap;
  gap:20px;
}
.results-title{
  font-size:28px;
  font-weight:800;
  color:#111;
  margin-bottom:4px;
}
.results-count{
  color:#6b7280;
  font-size:15px;
  margin:0;
}
.results-count strong{
  color:#ef4444;
  font-weight:700;
}
.results-sort{
  display:flex;
  align-items:center;
  gap:12px;
}
.results-sort label{
  color:#6b7280;
  font-weight:600;
  margin:0;
  font-size:14px;
}
.sort-select{
  border:2px solid #e5e7eb;
  border-radius:10px;
  padding:10px 16px;
  font-size:14px;
  font-weight:600;
  color:#111;
  cursor:pointer;
  transition:all 0.3s ease;
  background:#fff;
}

/* Tours Grid */
.tours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap:24px;
  margin-top:32px;
}

/* Tour Card */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  transition:all 0.3s ease;
  border:1px solid #e5e7eb;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.low-shadow {
  box-shadow:0 4px 12px rgba(0,0,0,0.15) !important;
}
.tour-card:hover{
  transform:translateY(-8px);
  border-color:#ef4444;
  box-shadow:0 16px 40px rgba(0,0,0,0.25);
}
.tour-card.active{
  box-shadow:0 12px 32px rgba(0,0,0,0.12);
  transform:translateY(-4px);
}
.tour-image{
  position:relative;
  height:200px;
  overflow:hidden;
}
.tour-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.3s ease;
}
.tour-card:hover .tour-image img{
  transform:scale(1.05);
}

/* Tour Badges */
.tour-badges{
  position:absolute;
  top:12px;
  left:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.badge-type,
.badge-meal{
  padding:6px 12px;
  border-radius:12px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.5px;
  backdrop-filter:blur(10px);
}
.badge-type{
  background:rgba(17,17,17,0.8);
  color:#fff;
}
.badge-type.private{
  background:linear-gradient(135deg, rgba(239,68,68,0.9), rgba(220,38,38,0.9));
}
.badge-meal{
  background:rgba(34,197,94,0.9);
  color:#fff;
}

/* Wishlist Button */
.btn-wishlist{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.3s ease;
  color:#6b7280;
}
.btn-wishlist:hover{
  background:#fff;
  color:#ef4444;
  transform:scale(1.1);
}
.btn-wishlist.active{
  background:#ef4444;
  color:#fff;
}

/* Tour Content */
.tour-content{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
  position:relative;
}
.tour-category{
  font-size:12px;
  font-weight:700;
  color:#ef4444;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.tour-title{
  font-size:17px;
  font-weight:800;
  margin-bottom:4px;
  line-height:1.3;
  word-wrap:break-word;
  overflow-wrap:break-word;
  word-break:break-word;
}
.tour-title a{
  color:#111;
  text-decoration:none;
  transition:color 0.3s ease;
}
.tour-title a:hover{
  color:#ef4444;
}
.tour-description{
  font-size:13px;
  color:#6b7280;
  line-height:1.5;
  margin-bottom:8px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
}
.tour-meta{
  display:flex;
  gap:16px;
  margin-bottom:8px;
}
.tour-meta span{
  font-size:12px;
  color:#6b7280;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
}
.tour-meta i{
  color:#ef4444;
  font-size:13px;
}
.tour-features{
  display:flex;
  gap:16px;
  margin-bottom:8px;
}
.tour-features span{
  font-size:12px;
  color:#6b7280;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
}
.tour-features i{
  color:#ef4444;
  font-size:13px;
}
.tour-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid #f3f4f6;
}
.btn-reserve{
  background:var(--primary, #e53935);
  color:#fff;
  border:none;
  padding:10px 5px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
  flex:1;
  justify-content:center;
  max-width:140px;
}
.btn-reserve:hover{
  background:var(--primary-600, #d32f2f);
  transform:translateY(-2px);
  box-shadow:0 2px 7px rgba(229,57,53,0.4);
  color:#fff;
}
.tour-image .tour-rating{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  align-items:center;
  gap:4px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:6px 10px;
  border-radius:20px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  z-index:2;
}
.tour-content .tour-rating{
  position:absolute;
  top:16px;
  right:16px;
  display:flex;
  align-items:center;
  gap:4px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:6px 10px;
  border-radius:20px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.tour-rating i{
  color:#fbbf24;
  font-size:14px;
}
.tour-rating span{
  font-size:14px;
  font-weight:700;
  color:#111;
}
.rating-count{
  font-size:12px;
  color:#6b7280;
  font-weight:500;
}
.tour-footer .tour-price {
  margin-right: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tour-image .tour-price{
  position:absolute;
  bottom:12px;
  right:12px;
  display:flex;
  align-items:baseline;
  gap:6px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:8px 12px;
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  z-index:2;
}
.price-from{
  font-size:11px;
  color:#6b7280;
  font-weight:500;
}
.price-amount{
  font-size:20px;
  font-weight:800;
  color:#ef4444;
  line-height:1;
}

/* Pagination */
.pagination{
  gap:10px;
}
.page-link{
  border:2px solid #f3f4f6;
  color:#6b7280;
  border-radius:12px;
  padding:12px 18px;
  transition:all 0.3s ease;
  font-weight:600;
  background:#fff;
  min-width:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.page-link:hover{
  background:linear-gradient(135deg, #ef4444, #dc2626);
  color:#fff;
  border-color:#ef4444;
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(239,68,68,0.3);
}
.page-item.active .page-link{
  background:linear-gradient(135deg, #ef4444, #dc2626);
  border-color:#ef4444;
  color:#fff;
  box-shadow:0 4px 12px rgba(239,68,68,0.4);
}
.page-item.disabled .page-link{
  opacity:0.3;
  cursor:not-allowed;
  pointer-events:none;
  background:#f9fafb;
}

/* Responsive */
@media (max-width: 991px){
  .hero-title{
    font-size:48px;
  }
  .hero-subtitle{
    font-size:20px;
  }
  .section-heading{
    font-size:28px;
  }
  .filter-header{
    padding:16px;
  }
  .filter-content.show{
    padding:0 16px 16px;
  }
  .filter-actions{
    flex-direction:column;
  }
  .btn-clear-filters,
  .btn-apply-filters{
    width:100%;
    justify-content:center;
  }
  .tours-grid{
    grid-template-columns:1fr;
  }
}

/* Itinerary Cards */
.itinerary-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.itinerary-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.itinerary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.itinerary-card:hover .itinerary-image img {
  transform: scale(1.05);
}

.itinerary-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.duration-badge {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.category-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge.adventure {
  background: #fbbf24;
  color: #78350f;
}

.category-badge.family {
  background: #34d399;
  color: #065f46;
}

.category-badge.romantic {
  background: #f472b6;
  color: #831843;
}

.category-badge.cultural {
  background: #a78bfa;
  color: #5b21b6;
}

.category-badge.relaxation {
  background: #6ee7b7;
  color: #065f46;
}

.itinerary-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.itinerary-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.itinerary-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.itinerary-timeline {
  flex: 1;
  margin-bottom: 20px;
}

.timeline-day-header {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 1px;
  margin: 16px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #fee2e2;
}

.timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-time {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  background: #fef2f2;
  padding: 4px 10px;
  border-radius: 6px;
  height: fit-content;
}

.timeline-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.timeline-details p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.itinerary-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid #f3f4f6;
}

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

.price-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 28px;
  font-weight: 900;
  color: #ef4444;
  line-height: 1;
  margin: 4px 0;
}

.price-person {
  font-size: 12px;
  color: #6b7280;
}

.btn-view-details {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  color: #fff;
}

.btn-view-details i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-view-details:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .itinerary-image {
    height: 200px;
  }
  
  .itinerary-content {
    padding: 20px;
  }
  
  .itinerary-title {
    font-size: 20px;
  }
  
  .itinerary-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .btn-view-details {
    width: 100%;
    justify-content: center;
  }
}

/* Itineraries Hero Section */
.itineraries-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Featured Itineraries Section */
.featured-itineraries-section {
  background: #fff;
}

.section-title-main {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.section-subtitle-main {
  font-size: 17px;
  color: #6b7280;
  margin: 0 0 16px 0;
}

.section-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 32px;
}

/* Tab Filters */
.itinerary-tabs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.itinerary-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn i {
  font-size: 16px;
}

.tab-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.tab-btn.active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.tab-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

/* Swiper Customization */
.itineraries-swiper {
  padding: 20px 0 60px;
}

.itineraries-swiper .swiper-button-next,
.itineraries-swiper .swiper-button-prev {
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.itineraries-swiper .swiper-button-next:after,
.itineraries-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
  color: #ef4444;
}

.itineraries-swiper .swiper-button-next:hover,
.itineraries-swiper .swiper-button-prev:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.itineraries-swiper .swiper-button-next:hover:after,
.itineraries-swiper .swiper-button-prev:hover:after {
  color: #fff;
}

.itineraries-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}

.itineraries-swiper .swiper-pagination-bullet-active {
  background: #ef4444;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .itineraries-hero {
    height: 300px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title-main {
    font-size: 28px;
  }
  
  .section-subtitle-main {
    font-size: 15px;
  }
  
  .section-description {
    font-size: 14px;
  }
  
  .itinerary-tabs {
    gap: 8px;
    padding: 0 10px;
  }
  
  .tab-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .tab-btn i {
    font-size: 14px;
  }
  
  .itineraries-swiper .swiper-button-next,
  .itineraries-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .itineraries-swiper .swiper-button-next:after,
  .itineraries-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .itineraries-hero {
    height: 250px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Divider Banner - Premium Design */
.divider-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.15);
}

/* Animated Background Shapes */
.banner-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #ef4444;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  bottom: -80px;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #8b5cf6;
  top: 50%;
  right: -50px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Banner Main Content */
.banner-main {
  color: #fff;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.banner-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #fca5a5;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.banner-badge:hover {
  background: rgba(239, 68, 68, 0.25);
  transform: translateY(-2px);
}

.banner-badge i {
  font-size: 14px;
}

.discount-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  animation: pulse 2s infinite;
}

.discount-badge:hover {
  background: rgba(34, 197, 94, 0.25);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.banner-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 600px;
}

/* Banner Features */
.banner-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 16px;
}

.feature-item span {
  font-size: 15px;
  color: #e2e8f0;
  font-weight: 600;
}

/* Banner CTA */
.banner-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cta-text i {
  font-size: 24px;
  color: #34d399;
}

.cta-text span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: #fff;
}

.cta-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(4px);
}



.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease-out;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-8px);
  border-color: rgba(239, 68, 68, 0.3);
}

.info-card.card-1 {
  animation-delay: 0.1s;
}

.info-card.card-2 {
  animation-delay: 0.2s;
}

.info-card.card-3 {
  animation-delay: 0.3s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.card-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .banner-main {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .divider-banner {
    padding: 60px 0;
  }
  
  .banner-main {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 15px;
  }
  
  .banner-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .banner-cta {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }
  
  .cta-text {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-text span {
    font-size: 15px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .shape {
    filter: blur(40px);
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 28px;
  }
  
  .banner-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .card-number {
    font-size: 24px;
  }
}

/* Other Destinations Section */
.other-destinations-section {
  background: #f9fafb;
}

.destinations-swiper {
  padding: 20px 0 60px;
}

.destination-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-content {
  transform: translateY(-8px);
}

.destination-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.destination-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

/* Destinations Swiper Pagination */
.destinations-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}

.destinations-swiper .swiper-pagination-bullet-active {
  background: #ef4444;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .destination-card {
    height: 250px;
  }
  
  .destination-content {
    padding: 20px;
  }
  
  .destination-title {
    font-size: 20px;
  }
  
  .destination-subtitle {
    font-size: 14px;
  }
}
