.header-section {
  background: linear-gradient(135deg, #c6edf4 0%, #7cd5e9 100%);
  position: relative;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

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

/* Package Cards */
.package-card {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.package-image-container {
  height: 280px;
  overflow: hidden;
}

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

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

.package-image-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.package-overlay {
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.package-card:hover .package-overlay {
  opacity: 1;
}

.package-badges {
  z-index: 2;
}

.package-duration {
  z-index: 2;
}

.wishlist-btn {
  backdrop-filter: blur(10px);
  border: none;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background: #dc3545 !important;
  color: white !important;
  transform: scale(1.1);
}

.package-content {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.stars {
  font-size: 0.9rem;
}

/* Section Header */
.section-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.search-container .input-group {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.search-container .form-control {
  border: none !important;
  padding: 12px 20px;
  font-size: 14px;
  background: #fff;
  box-shadow: none !important;
}

.search-container .form-control:focus {
  box-shadow: none !important;
  background: #fff;
  border: none !important;
  outline: none !important;
}

.search-container .input-group-text {
  border: none !important;
  padding: 12px 15px;
  background: #fff;
}

.search-container .btn {
  padding: 12px 20px;
  font-weight: 500;
  border: none !important;
}
.filter-btn {
  transition: all 0.3s ease;
  border-color: #dee2e6;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn.active {
  background: #f48711;
  border-color: #f48711;
  color: white;
  transform: translateY(-1px);
}

/* Custom teal button */
.btn-teal {
  border: 1px solid #0c979c;
  color: #0c979c;
  background: transparent;
}

.btn-teal:hover,
.btn-teal:focus,
.btn-teal:active {
  background: #0c979c;
  border-color: #0c979c;
  color: white;
}

/* Empty State */
.empty-state-wrap {
  padding: 2rem 0 4rem;
}

.empty-state-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbfd 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 3.5rem 2rem;
  animation: fadeIn 0.6s ease-out;
}

.empty-state-visual {
  position: relative;
  height: 180px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #0c979c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 12px 30px rgba(12, 151, 156, 0.35);
  z-index: 2;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: rgba(244, 135, 17, 0.25);
  left: 10%;
  top: 10%;
  animation-delay: 0.2s;
}

.orb-2 {
  width: 160px;
  height: 160px;
  background: rgba(12, 151, 156, 0.2);
  right: 12%;
  top: 0;
  animation-delay: 0.6s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: rgba(124, 213, 233, 0.35);
  right: 35%;
  bottom: 5%;
  animation-delay: 1s;
}

.empty-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c979c;
  background: rgba(12, 151, 156, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem !important;
  }

  .hero-stats .vr {
    display: none;
  }

  .package-image-container {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem !important;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
