:root {
  --domestic-gradient: linear-gradient(135deg, rgba(255, 132, 0, 0.12), rgba(0, 142, 255, 0.15));
}

.domestic-main {
  background: var(--section-bg, #f7f9fc);
  min-height: 100vh;
  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: 0 auto 2rem;
  text-align: center;
}

.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;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .domestic-hero {
    border-radius: 0px;
    /* background-image: var(--domestic-gradient); */
    top: 28px;
  }

  .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;
  }

  .hero-card,
  .hero-list li {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    width:100%;
  }

  .domestic-cta {
    text-align: center;
    justify-content: center;
  }

  .domestic-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
