/* Scroll Relative Container */
.scroll-container-relative {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* Hide default scrollbar for cleaner look */
.tour-packages-scroll-wrapper {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.tour-packages-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Previous / Next বাটন সারি - কার্ডের নিচে, দুই পাশে */
.scroll-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

/* Arrow Navigation Buttons Styling */
.scroll-btn {
  position: static;
  width: auto;
  height: 36px;
  border-radius: 999px;
  padding: 0 16px;
  background-color: #ffffff;
  color: #007bff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
  transform: scale(1.04);
}

.scroll-btn:active {
  transform: scale(0.96);
}

/* Mobile Responsiveness for Arrows */
@media (max-width: 768px) {
  .scroll-nav {
    gap: 10px;
    margin-top: 14px;
  }
  .scroll-btn {
    height: 32px;
    padding: 0 12px;
    font-size: 0.75rem;
    gap: 5px;
  }
}
    
/* Section & Scroll Wrapper */
.sylhet-packages-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
}

.tour-packages-scroll-wrapper {
  overflow-x: auto;
  width: 100%;
  min-width: 0;
  padding-bottom: 20px; /* স্ক্রলবারের জন্য পর্যাপ্ত স্পেস */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* 1. Grid Container - গ্যাপ বাড়িয়ে 32px করা হয়েছে */
.tour-packages-grid {
  display: flex;
  gap: 32px; /* আগে ছিল 24px, গ্যাপ বাড়ানো হয়েছে */
}

/* 2. Tour Card Basic Layout - Width বাড়িয়ে 360px করা হয়েছে */
.tour-package-card {
  flex: 0 0 360px; /* আগে ছিল 320px/330px, সাইজ বাড়ানোয় ৫টি কার্ড ঘেঁষাঘেঁষি হবে না */
  width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Image & Overlay Styling */
.card-media {
  position: relative;
  height: 190px;
  width: 100%;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

/* Overlay Header (Badge & Pricing) */
.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.card-badge {
  background: #ff5722;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Price on Image Styling */
.price-on-image {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.highlight-price {
  background-color: #ffeb3b;
  color: #000000;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  text-shadow: none;
  margin: 0 2px;
}

.card-title-on-image {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Content Area Layout */
.card-content {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}

.card-short-desc {
  font-size: 0.82rem;
  color: #555;
  margin: 0;
  line-height: 1.35;
}

/* Sightseeing Split Box */
.sightseeing-split-box {
  display: flex;
  align-items: stretch;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 10px;
  margin: 4px 0;
}

.day-column {
  flex: 1;
}

.day-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #007bff;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.spot-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.76rem;
  color: #444;
}

.spot-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
  line-height: 1.25;
}

.spot-list li:last-child {
  margin-bottom: 0;
}

.spot-icon {
  color: #28a745;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.day-divider {
  width: 1px;
  background-color: #e0e0e0;
  margin: 0 10px;
}

/* Dividers & Info Groups */
.card-divider {
  border: 0;
  height: 1px;
  background-color: #efefef;
  margin: 3px 0;
}

.info-group {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.3;
}

.info-group strong {
  color: #222;
}

/* Action Buttons */
.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 6px;
}

.btn-card {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.btn-outline {
  border: 1px solid #007bff;
  color: #007bff;
  background: transparent;
}

.btn-outline:hover {
  background: #f0f7ff;
}

.btn-primary {
  background: #ffa015;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0056b3;
}
        