.domestic-main {
  /* background: var(--section-bg, #f7f9fc); */
  min-height: -200vh;
  padding: clamp(4rem, 6vw, 6rem) 1.5rem 3rem;
}

.domestic-hero {
  width: 100vw;
  margin: -82px calc(50% - 50vw) 2.5rem;
  padding: clamp(2.5rem, 8vw, 4rem);
  border-radius:0;
  background-image: url('../images/honeymoon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.domestic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 94, 206, 0.12), rgba(236, 85, 13, 0.08));
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: var(--orange-color);
  text-transform: uppercase;
}

.domestic-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.75rem 0 1rem;
  color: var(--title-color, #06112c);
}

.hero-description {
  color: white;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 30px rgba(6, 17, 44, 0.08);
  font-weight: 600;
  color: var(--title-color, #06112c);
  width: 35%;
}

.hero-list span {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: var(--orange-color, #ff6b00);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.35);
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(11, 38, 87, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--title-color, #06112c);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 0.75rem;
}

.hero-stat {
  background: var(--section-bg, #f5f7fb);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--orange-color, #ff6b00);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-cta .btn {
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  background: linear-gradient(120deg, #ff7b39, #ffb347);
  border: none;
  box-shadow: 0 12px 25px rgba(255, 123, 57, 0.35);
}

.hero-cta span {
  font-weight: 600;
  color: var(--text-color, #4b5563);
}

.section-header {
  max-width: 840px;
  margin: -80px auto 2rem;
  text-align: center;
  /* top:-150px; */
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--title-color, #06112c);
}

.section-header p {
  color: var(--text-color, #4b5563);
  line-height: 1.7;
}

.package-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.filter-chip {
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  background: rgba(6, 17, 44, 0.06);
  color: var(--title-color, #06112c);
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange-color, #ff6b00);
}

.package-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* gap: 0.9rem; */
}

.package-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(6, 17, 44, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  /* animation: float 7s ease-in-out infinite; */
   height:100%;
  width:90%;
}

.package-card:nth-child(2n) {
  animation-delay: 1s;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(6, 17, 44, 0.18);
}

.package-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.package-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.package-badge {
  align-self: flex-start;
  /* padding: 0.3rem 0.9rem; */
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(5, 94, 206, 0.12);
  color: #055ece;
}

.package-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--title-color, #06112c);
}

.package-desc {
  color: var(--text-color, #4b5563);
  line-height: 1.6;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.package-list li {
  background: rgba(6, 17, 44, 0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-color, #4b5563);
}

.package-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(6, 17, 44, 0.08);
}

.package-meta strong {
  font-size: 1.25rem;
  color: var(--orange-color, #ff6b00);
}

.package-card .btn {
  border-radius: 12px;
  padding: 0.65rem 1.5rem;
}

.domestic-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: clamp(2rem, 6vw, 3rem);
  border-radius: 28px;
  background: linear-gradient(90deg, #2eacac, #008080);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 25px 60px rgba(6, 17, 44, 0.35);
}

.domestic-cta h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
  color: white;
}

.domestic-cta p {
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

.domestic-cta .btn {
  background: #fff;
  color: #06112c;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 2rem;
}

.north-hero-slider {
  width: 100vw;
  margin: -30px calc(50% - 50vw) 2.5rem;
  aspect-ratio: 5 / 2;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  height: 580px;
}

.north-hero-slider__track {
  width: 100%;
  height: 100%;
}

.north-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.north-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.north-hero-caption {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 8vw, 6rem);
  padding: 1.5rem 2rem;
  background: rgba(6, 17, 44, 0.65);
  color: #fff;
  border-radius: 18px;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.north-hero-caption p {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #ffd27f;
}

.north-hero-caption h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.north-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.north-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.north-hero-dot.active {
  background: #ffd27f;
  transform: scale(1.2);
}

.north-gallery-slider {
  margin-top: 3rem;
  padding: clamp(2rem, 6vw, 3rem) 0;
  overflow: hidden;
}

.north-gallery-header {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.north-gallery-header h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--title-color, #06112c);
}

.north-gallery-header p {
  color: var(--text-color, #4b5563);
}

.north-slider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.north-slider__track {
  display: flex;
  gap: 1.5rem;
  animation: north-scroll 18s linear infinite;
}

.north-slider__slide {
  min-width: 300px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(6, 17, 44, 0.12);
  overflow: hidden;
}

.north-slider__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.north-slider__slide figcaption {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--title-color, #06112c);
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .package-card {
    width: 100%;
  }

  .package-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .package-meta .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes north-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}