:root {
  color-scheme: light;
  --magenta: #ff007f;
  --purple: #4b0082;
  --ink: #17111f;
  --muted: #62586f;
  --paper: #fffaff;
  --soft: #f8f1fb;
  --lilac: #efe3f8;
  --line: rgba(75, 0, 130, 0.14);
  --green: #0d7b67;
  --gold: #bb7a13;
  --blue: #1666c5;
  --shadow: 0 22px 70px rgba(75, 0, 130, 0.16);
  --radius: 8px;
  --gradient: linear-gradient(135deg, var(--magenta), var(--purple));
  --motion: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 0, 127, 0.045), transparent 360px),
    var(--paper);
  letter-spacing: 0;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.28), 0 20px 44px rgba(255, 0, 127, 0.26);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 0, 127, 0), 0 26px 58px rgba(75, 0, 130, 0.28);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes routeTrace {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

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

body {
  animation: pageFade 500ms var(--motion) both;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 0, 127, 0.3);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: white;
  background: var(--purple);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  min-height: 74px;
  padding: 13px clamp(16px, 3vw, 56px);
  background: rgba(255, 250, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
  animation: riseIn 520ms var(--motion) both;
}

.site-header.scrolled {
  background: rgba(255, 250, 255, 0.96);
  box-shadow: 0 12px 32px rgba(75, 0, 130, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 8px;
  background: #2b2530;
  box-shadow: 0 12px 24px rgba(255, 0, 127, 0.24);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.04);
  box-shadow: 0 16px 34px rgba(255, 0, 127, 0.3);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  display: none;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 22px);
  min-width: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  font-weight: 750;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-action {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: white;
  background: var(--gradient);
  background-size: 180% 180%;
  animation: gradientShift 8s ease infinite;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(350px, 1.14fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(24px, 5vw, 62px) clamp(16px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(75, 0, 130, 0.9), rgba(255, 0, 127, 0.72) 42%, rgba(16, 109, 89, 0.3)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Munnar_tea_plantations.jpg") center / cover no-repeat;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 8, 28, 0.74), rgba(16, 8, 28, 0.34) 48%, rgba(255, 250, 255, 0.66)),
    linear-gradient(180deg, transparent 72%, var(--paper));
}

.hero-copy {
  color: white;
  max-width: 710px;
}

@keyframes heroPan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero-copy > * {
  animation: riseIn 700ms var(--motion) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 280ms;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 350ms;
}

.hero-copy > *:nth-child(7) {
  animation-delay: 420ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8eb;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.03;
  font-weight: 900;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.malayalam {
  margin-bottom: 18px;
  font-family: "Noto Sans Malayalam", Inter, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 700;
}

.hero-logo {
  width: clamp(84px, 13vw, 128px);
  height: clamp(84px, 13vw, 128px);
  margin: 0 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(255, 0, 127, 0.26);
  animation: scaleIn 700ms var(--motion) 180ms both, floatSoft 5.5s ease-in-out 900ms infinite,
    pulseGlow 3.6s ease-in-out 900ms infinite;
}

.lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after,
.store-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.32), transparent 80%);
  transform: translateX(-120%);
  pointer-events: none;
}

.button:hover::after,
.store-button:hover::after {
  animation: shimmer 760ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--gradient);
  background-size: 180% 180%;
  box-shadow: 0 16px 34px rgba(255, 0, 127, 0.28);
  animation: gradientShift 9s ease infinite;
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.tertiary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.hero-stats span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: transform 220ms var(--motion), background 220ms var(--motion);
}

.hero-stats span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats strong {
  display: block;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
}

.planner-panel {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 760px);
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(75, 0, 130, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: riseIn 780ms var(--motion) 220ms both;
}

.planner-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, rgba(255, 0, 127, 0.11), transparent);
  transform: translateX(-120%);
  animation: shimmer 4.8s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-top strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.panel-top p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #11a772;
  box-shadow: 0 0 0 6px rgba(17, 167, 114, 0.12);
}

.planner-badge {
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--purple);
  background: var(--lilac);
  font-size: 0.78rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label,
fieldset {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  padding: 0 12px;
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
select:focus {
  border-color: rgba(255, 0, 127, 0.5);
  box-shadow: 0 8px 22px rgba(75, 0, 130, 0.1);
  transform: translateY(-1px);
}

.interest-field {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 15px 0 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.interest-field legend {
  padding: 0 6px;
  color: var(--purple);
}

.interest-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.78rem;
  transition: transform 180ms var(--motion), background 180ms ease;
}

.interest-field label:hover {
  transform: translateY(-2px);
  background: #fff;
}

.interest-field input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--magenta);
}

.planner-panel > .button {
  margin-top: 14px;
}

.trip-preview {
  margin-top: 14px;
  padding: 13px;
  border-radius: var(--radius);
  color: var(--muted);
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.08), rgba(75, 0, 130, 0.08));
  font-size: 0.9rem;
  line-height: 1.45;
}

.trip-preview strong {
  color: var(--purple);
}

.planner-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.planner-signals span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--purple);
  background: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.app-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 72px);
  background: white;
}

.app-strip p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.works-section {
  background: white;
}

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

.works-grid article,
.feedback-grid article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.works-grid article {
  background:
    linear-gradient(135deg, rgba(255, 0, 127, 0.06), rgba(75, 0, 130, 0.06)),
    white;
}

.works-grid article:hover,
.feedback-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(75, 0, 130, 0.13);
}

.works-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--magenta);
  font-weight: 900;
}

.works-grid p,
.feedback-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.intelligence-layer {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(13, 123, 103, 0.09), rgba(255, 0, 127, 0.06), rgba(75, 0, 130, 0.08)),
    var(--paper);
}

.intelligence-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.kerala-route-map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(75, 0, 130, 0.94), rgba(255, 0, 127, 0.78)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Kumarakom.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.kerala-route-map::before {
  content: "";
  position: absolute;
  inset: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 44% 56% 48% 52% / 28% 34% 66% 72%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(13, 123, 103, 0.28), rgba(187, 122, 19, 0.18));
  backdrop-filter: blur(10px);
}

.kerala-route-map::after {
  content: "TZ AI";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 900;
}

.route-line {
  position: absolute;
  left: 25%;
  top: 27%;
  width: 52%;
  height: 48%;
  border: 3px solid transparent;
  border-left-color: #fff;
  border-bottom-color: #fff;
  border-radius: 55% 35% 48% 28%;
  transform: rotate(-18deg);
  filter: drop-shadow(0 12px 18px rgba(255, 0, 127, 0.28));
  animation: routeTrace 2.2s var(--motion) both;
}

.route-pin {
  position: absolute;
  z-index: 2;
  min-width: 82px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: white;
  background: rgba(23, 17, 31, 0.55);
  box-shadow: 0 16px 34px rgba(23, 17, 31, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
  animation: pinLift 4s ease-in-out infinite;
}

.route-pin::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 5px rgba(255, 0, 127, 0.18);
}

.route-pin.kochi {
  left: 14%;
  top: 28%;
}

.route-pin.munnar {
  right: 12%;
  top: 18%;
  animation-delay: 0.5s;
}

.route-pin.alleppey {
  left: 19%;
  bottom: 28%;
  animation-delay: 1s;
}

.route-pin.varkala {
  right: 15%;
  bottom: 15%;
  animation-delay: 1.5s;
}

.signal-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-stack article {
  position: relative;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.signal-stack article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--green), var(--gold), var(--purple));
}

.signal-stack article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(75, 0, 130, 0.13);
}

.signal-stack span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.signal-stack p {
  color: var(--muted);
  line-height: 1.58;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.store-button {
  position: relative;
  overflow: hidden;
  display: grid;
  min-width: 190px;
  min-height: 58px;
  justify-content: start;
  padding: 10px 15px;
  border-radius: var(--radius);
  color: white;
  background: #17111f;
  box-shadow: 0 16px 34px rgba(23, 17, 31, 0.18);
  transition: transform 220ms var(--motion), box-shadow 220ms var(--motion);
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(23, 17, 31, 0.22);
}

.store-button span {
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.72;
}

.store-button strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.phone-preview {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: white;
  background:
    linear-gradient(160deg, rgba(255, 0, 127, 0.92), rgba(75, 0, 130, 0.94)),
    #22152e;
  box-shadow: var(--shadow);
  animation: floatSoft 6s ease-in-out infinite;
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.phone-preview:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 30px 90px rgba(75, 0, 130, 0.24);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.phone-top img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.phone-card,
.phone-note,
.phone-card-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.phone-card {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.phone-card small,
.phone-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.phone-card strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.phone-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.phone-card-grid span,
.phone-note {
  padding: 13px 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms var(--motion), background 180ms ease;
}

.phone-card-grid span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.section-heading.compact {
  max-width: 760px;
}

.category-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 5px 2px 11px;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--purple);
  background: white;
  font-weight: 900;
  transition: transform 180ms var(--motion), color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.category-chip:hover {
  transform: translateY(-2px);
}

.category-chip.active {
  color: white;
  border-color: transparent;
  background: var(--gradient);
}

.destinations {
  padding-top: 20px;
}

.text-link {
  color: var(--purple);
  font-weight: 900;
  border-bottom: 2px solid var(--magenta);
}

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

.destination-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 50px rgba(75, 0, 130, 0.08);
  transition: transform 260ms var(--motion), box-shadow 260ms var(--motion);
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(75, 0, 130, 0.15);
}

.destination-card:hover img {
  transform: scale(1.045);
}

.destination-card.hidden {
  display: none;
}

.destination-card.featured {
  grid-column: span 2;
}

.destination-card img {
  height: 190px;
  object-fit: cover;
  background: var(--lilac);
  transition: transform 600ms var(--motion);
}

.destination-card.featured img {
  height: 260px;
}

.destination-card div {
  padding: 16px;
}

.destination-card span {
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-card p {
  min-height: 70px;
  color: var(--muted);
  line-height: 1.5;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
}

.destination-card button {
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--purple);
  font-weight: 900;
  transition: transform 180ms var(--motion), background 180ms ease;
}

.destination-card button:hover {
  transform: translateY(-2px);
  background: var(--magenta);
}

.destination-card .card-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--purple);
  background: white;
  font-weight: 900;
  transition: transform 180ms var(--motion), border-color 180ms ease;
}

.destination-card .card-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 127, 0.35);
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
  padding: 0 clamp(16px, 5vw, 72px) clamp(56px, 8vw, 96px);
}

.route-card,
.assistant-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 50px rgba(75, 0, 130, 0.08);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.route-card:hover,
.assistant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(75, 0, 130, 0.13);
}

.route-card {
  padding: clamp(22px, 4vw, 38px);
}

.route-card p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.65;
}

.route-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.route-timeline span {
  padding: 13px 12px;
  border-radius: var(--radius);
  color: var(--purple);
  background: var(--soft);
  font-weight: 900;
  text-align: center;
  transition: transform 200ms var(--motion), background 200ms ease;
}

.route-timeline span:hover {
  transform: translateY(-3px);
  background: var(--lilac);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.detail-grid article {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 200ms var(--motion), box-shadow 200ms ease;
}

.detail-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(75, 0, 130, 0.1);
}

.detail-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid strong {
  color: var(--purple);
  font-size: 0.95rem;
}

.assistant-card {
  display: grid;
  align-content: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 0, 127, 0.09), rgba(75, 0, 130, 0.08)),
    white;
}

.assistant-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: white;
  background: var(--gradient);
  font-weight: 900;
  background-size: 180% 180%;
  animation: gradientShift 7s ease infinite;
}

.assistant-card p,
.partners p,
.about p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.service-grid article:hover,
.itinerary-grid article:hover,
.trust-grid article:hover,
.policy-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(75, 0, 130, 0.13);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--magenta);
  font-weight: 900;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.itinerary-library {
  padding-top: 0;
}

.itinerary-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.itinerary-grid article,
.trust-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.itinerary-grid span {
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--purple);
  font-weight: 900;
  border-bottom: 2px solid var(--magenta);
}

.itinerary-grid p,
.trust-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.booking-section {
  background:
    linear-gradient(135deg, rgba(255, 0, 127, 0.06), rgba(75, 0, 130, 0.07)),
    var(--paper);
}

.booking-form,
.partner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-width: 980px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.booking-form:hover,
.partner-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(75, 0, 130, 0.12);
}

.booking-form .full,
.booking-form .button,
.booking-form .form-note,
.partner-form .full,
.partner-form .button,
.partner-form .form-note {
  grid-column: 1 / -1;
}

.trust-band {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 0, 127, 0.07), rgba(75, 0, 130, 0.08)),
    white;
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 1.05rem;
}

.feedback-section {
  background: var(--paper);
}

.feedback-grid article p {
  font-size: 1.02rem;
}

.feedback-grid span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--purple);
  font-weight: 900;
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 98px) clamp(16px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(135deg, rgba(75, 0, 130, 0.96), rgba(255, 0, 127, 0.82)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Chinese_Fishing_nets_-_Fort_Kochi.jpg") center / cover no-repeat;
  background-size: 200% 200%, cover;
  animation: gradientShift 12s ease infinite;
}

.partners .eyebrow,
.partners p {
  color: rgba(255, 255, 255, 0.82);
}

.partner-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-matrix span {
  min-height: 94px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  font-weight: 900;
  backdrop-filter: blur(12px);
  transition: transform 220ms var(--motion), background 220ms ease;
}

.partner-matrix span:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.partner-onboarding {
  background: white;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--purple);
  font-weight: 850;
  line-height: 1.45;
}

.about {
  max-width: 1000px;
}

.about p {
  max-width: 850px;
  font-size: 1.05rem;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(75, 0, 130, 0.06);
  transition: transform 200ms var(--motion), box-shadow 200ms var(--motion);
}

.faq-list details:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.1);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--magenta);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.policy-grid article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.07);
  transition: transform 240ms var(--motion), box-shadow 240ms var(--motion);
}

.policy-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(16px, 5vw, 72px) clamp(40px, 6vw, 72px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  color: white;
  background: var(--gradient);
  background-size: 180% 180%;
  animation: gradientShift 9s ease infinite;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  font-weight: 900;
}

.contact-lines a {
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
}

.contact .button.primary {
  background: white;
  color: var(--purple);
  box-shadow: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.site-footer span:first-child {
  color: var(--purple);
  font-weight: 900;
}

.site-footer a {
  color: var(--purple);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, #13a66f, var(--purple));
  background-size: 180% 180%;
  box-shadow: 0 18px 42px rgba(19, 166, 111, 0.28);
  font-weight: 900;
  animation: gradientShift 7s ease infinite, floatSoft 4.5s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.destination-page {
  background: var(--paper);
}

.static-nav {
  display: flex;
}

.destination-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 72px);
  color: white;
  background: var(--gradient);
  background-size: 180% 180%;
  animation: gradientShift 10s ease infinite;
}

.destination-hero .eyebrow {
  color: #ffd8eb;
}

.destination-hero img {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  animation: scaleIn 700ms var(--motion) 120ms both, floatSoft 6.5s ease-in-out 900ms infinite;
}

.destination-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 72px);
}

.highlight-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--purple);
  background: white;
  font-weight: 900;
}

.related-pages {
  padding-top: 0;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--purple);
  background: white;
  font-weight: 900;
  transition: transform 180ms var(--motion), border-color 180ms ease;
}

.related-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 127, 0.35);
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--motion), transform 700ms var(--motion);
  transition-delay: var(--delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .planner-panel {
    justify-self: stretch;
  }

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

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

  .app-strip,
  .works-grid,
  .feedback-grid,
  .itinerary-grid,
  .trust-grid,
  .intelligence-board,
  .destination-hero,
  .destination-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 12px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 7px;
  }

  .nav-action {
    text-align: center;
  }
}

@media (max-width: 840px) {

  .hero {
    padding-top: 30px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(16, 8, 28, 0.7), rgba(16, 8, 28, 0.38) 46%, rgba(255, 250, 255, 0.86)),
      linear-gradient(180deg, transparent 78%, var(--paper));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .interest-field,
  .section-heading.split,
  .detail-band,
  .detail-grid,
  .partners,
  .booking-form,
  .partner-form,
  .policy-grid,
  .contact,
  .destination-hero,
  .destination-content {
    grid-template-columns: 1fr;
  }

  .app-strip,
  .works-grid,
  .feedback-grid,
  .itinerary-grid,
  .trust-grid,
  .intelligence-board,
  .signal-stack {
    grid-template-columns: 1fr;
  }

  .destination-card.featured {
    grid-column: span 1;
  }

  .partner-matrix,
  .route-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.92;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .lede {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-stats {
    display: none;
  }

  .planner-panel {
    padding: 14px;
  }

  .hero-actions .button,
  .contact-actions .button,
  .app-actions .button,
  .store-button {
    width: 100%;
  }

  .destination-grid,
  .service-grid,
  .works-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img,
  .destination-card.featured img {
    height: 210px;
  }

  .service-grid article {
    min-height: 210px;
  }

  .phone-card-grid,
  .route-timeline,
  .planner-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kerala-route-map {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
