:root {
  --ink: #14211f;
  --muted: #5b6863;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --line: #dce5df;
  --green: #158760;
  --green-dark: #0e6749;
  --coral: #f05b45;
  --gold: #f3b33f;
  --sky: #dff2ff;
  --shadow: 0 24px 70px rgba(13, 31, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.popup-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid rgba(220, 229, 223, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: #31413d;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.floating-whatsapp:focus-visible,
.popup-close:focus-visible {
  outline: 3px solid rgba(243, 179, 63, 0.78);
  outline-offset: 3px;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(21, 135, 96, 0.26);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(20, 33, 31, 0.28);
  color: var(--ink);
}

.btn-large {
  min-height: 54px;
  padding: 15px 22px;
  font-size: 1rem;
}

.wa-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/future-play-india-travel-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 21, 19, 0.78) 0%, rgba(10, 21, 19, 0.52) 42%, rgba(10, 21, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 21, 19, 0.32), rgba(10, 21, 19, 0.06));
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: clamp(40px, 8vw, 86px) 0;
  color: #fff;
}

.eyebrow,
.section-kicker,
.package-region {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a7f1cb;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(4.2rem, 10vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.popup-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.lead-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 64px);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.lead-strip h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  padding-bottom: clamp(44px, 6vw, 82px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.steps article {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(13, 31, 28, 0.06);
}

.intro-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.intro-grid p,
.package-card p,
.service-item p,
.steps p,
.contact-section p,
.whatsapp-band p,
.planner-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.packages-section {
  background: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fffb 100%);
}

.package-card.accent-gold {
  border-top-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fff8e8 100%);
}

.package-card.accent-coral {
  border-top-color: var(--coral);
  background: linear-gradient(180deg, #fff 0%, #fff1ee 100%);
}

.package-card.accent-sky {
  border-top-color: #51a9d6;
  background: linear-gradient(180deg, #fff 0%, var(--sky) 100%);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.whatsapp-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 64px);
  background: var(--green);
  color: #fff;
}

.whatsapp-band .section-kicker,
.whatsapp-band p {
  color: rgba(255, 255, 255, 0.88);
}

.whatsapp-band h2 {
  max-width: 800px;
  margin-bottom: 14px;
}

.whatsapp-band p {
  max-width: 720px;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span,
.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #eaf6ef;
  color: var(--green-dark);
  font-weight: 900;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.planner-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #f1f6f0;
}

.planner-copy {
  position: sticky;
  top: 104px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps span {
  margin-bottom: 24px;
  background: var(--ink);
  color: #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 64px);
  background: #fff;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section p {
  max-width: 680px;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 35;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 20px 44px rgba(21, 135, 96, 0.34);
}

.floating-whatsapp .wa-icon {
  width: 36px;
  height: 36px;
  font-size: 0.78rem;
}

.whatsapp-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(7, 24, 20, 0.88), rgba(7, 24, 20, 0.56)),
    url("assets/future-play-india-travel-hero.png") center / cover;
}

.whatsapp-popup[hidden] {
  display: none;
}

.popup-panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(251, 251, 247, 0.94);
  box-shadow: var(--shadow);
}

.popup-panel h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.popup-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.popup-actions {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }

  .lead-strip,
  .whatsapp-band,
  .contact-section,
  .planner-section {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .package-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    flex: 1 1 100%;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 21, 19, 0.82) 0%, rgba(10, 21, 19, 0.62) 64%, rgba(10, 21, 19, 0.34) 100%),
      linear-gradient(0deg, rgba(10, 21, 19, 0.3), rgba(10, 21, 19, 0.08));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 44px 0;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-actions,
  .popup-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .popup-actions .btn,
  .contact-actions .btn,
  .lead-strip .btn,
  .whatsapp-band .btn {
    width: 100%;
  }

  .intro-grid,
  .package-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .package-card,
  .steps article {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
  }

  .popup-panel {
    max-height: calc(100svh - 36px);
    overflow: auto;
    padding-top: 68px;
  }
}
