:root {
  --ink: #10251f;
  --muted: #5b6f68;
  --paper: #fffdf7;
  --mist: #eaf7f0;
  --leaf: #17785f;
  --leaf-dark: #0e5748;
  --sun: #f3b84f;
  --coral: #ec6b57;
  --sky: #d8f0f3;
  --line: rgba(16, 37, 31, 0.14);
  --shadow: 0 24px 70px rgba(13, 62, 52, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(243, 184, 79, 0.32), transparent 24rem),
    radial-gradient(circle at 18% 8%, rgba(216, 240, 243, 0.9), transparent 24rem),
    linear-gradient(180deg, #f7fff9 0%, #fff9ee 54%, #eef8f1 100%);
  overflow-x: hidden;
  cursor: none;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
.mode-option {
  cursor: none;
}

.custom-cursor,
.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 100;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background 160ms ease;
}

.custom-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 120, 95, 0.6);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--coral);
}

.cursor-active .custom-cursor {
  width: 46px;
  height: 46px;
  border-color: rgba(236, 107, 87, 0.85);
  background: rgba(236, 107, 87, 0.08);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 68px;
  right: 11vw;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd875, #f09f45);
  box-shadow: 0 0 45px rgba(243, 184, 79, 0.42);
}

.wave {
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -110px;
  height: 230px;
  background: linear-gradient(180deg, rgba(127, 201, 192, 0.35), rgba(42, 146, 137, 0.4));
  border-radius: 50% 50% 0 0;
}

.float {
  position: absolute;
  opacity: 0.24;
  animation: drift 18s linear infinite;
}

.float.hotel {
  width: 82px;
  height: 76px;
  border: 3px solid rgba(14, 87, 72, 0.34);
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(90deg, transparent 16px, rgba(14, 87, 72, 0.22) 17px 20px, transparent 21px),
    linear-gradient(180deg, transparent 17px, rgba(14, 87, 72, 0.2) 18px 21px, transparent 22px);
  background-size: 24px 22px;
}

.float.hotel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -22px;
  height: 22px;
  border: 3px solid rgba(14, 87, 72, 0.34);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.float.taxi {
  width: 96px;
  height: 38px;
  border-radius: 18px 18px 10px 10px;
  background: rgba(243, 184, 79, 0.55);
  border: 3px solid rgba(125, 82, 22, 0.24);
}

.float.taxi::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -18px;
  width: 44px;
  height: 21px;
  border-radius: 14px 14px 2px 2px;
  background: rgba(216, 240, 243, 0.72);
  border: 3px solid rgba(125, 82, 22, 0.18);
}

.float.taxi::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -11px;
  width: 68px;
  height: 18px;
  background:
    radial-gradient(circle at 10px 9px, #10251f 0 8px, transparent 9px),
    radial-gradient(circle at 58px 9px, #10251f 0 8px, transparent 9px);
}

.palm {
  position: absolute;
  left: 6vw;
  bottom: 40px;
  width: 160px;
  height: 250px;
  opacity: 0.28;
}

.palm::before {
  content: "";
  position: absolute;
  left: 75px;
  bottom: 0;
  width: 18px;
  height: 185px;
  background: linear-gradient(90deg, #9c6a35, #c28a4c);
  border-radius: 16px;
  transform: rotate(8deg);
  transform-origin: bottom;
}

.palm::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  width: 122px;
  height: 105px;
  background:
    radial-gradient(ellipse at 20% 70%, transparent 0 34%, rgba(23, 120, 95, 0.92) 35% 57%, transparent 58%),
    radial-gradient(ellipse at 80% 70%, transparent 0 34%, rgba(23, 120, 95, 0.92) 35% 57%, transparent 58%),
    radial-gradient(ellipse at 50% 22%, transparent 0 33%, rgba(23, 120, 95, 0.92) 34% 56%, transparent 57%);
}

@keyframes drift {
  from {
    transform: translateX(-14vw) translateY(0) rotate(-4deg);
  }

  to {
    transform: translateX(116vw) translateY(-28px) rotate(6deg);
  }
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: white;
  box-shadow: 0 10px 26px rgba(13, 62, 52, 0.14);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
}

.mode-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(13, 62, 52, 0.08);
}

.mode-option {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
}

.mode-option.active {
  color: white;
  background: var(--leaf);
  box-shadow: 0 8px 22px rgba(23, 120, 95, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 28px 0 70px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--leaf-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--coral);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: #38524a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.search-panel {
  position: relative;
  width: min(100%, 880px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 10px;
  align-items: stretch;
}

.search-input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 16px;
  color: var(--ink);
  background: white;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input:focus {
  border-color: rgba(23, 120, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(23, 120, 95, 0.12);
}

.search-button,
.clear-button,
.link-button {
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  min-height: 54px;
  color: white;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 120, 95, 0.22);
}

.clear-button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--leaf-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
  font-weight: 900;
}

.result-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.result-tools label {
  font-weight: 800;
}

.result-tools select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 34px 0 12px;
  color: var(--ink);
  background: white;
  outline: 0;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.status-line {
  min-height: 28px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.result-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  color: white;
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.field {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.field-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field-value {
  overflow-wrap: anywhere;
  line-height: 1.42;
}

.field-wide {
  grid-column: 1 / -1;
}

.map-link {
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration-color: rgba(23, 120, 95, 0.35);
  text-underline-offset: 3px;
}

.visual-panel {
  position: relative;
  min-height: 520px;
}

.badge-stack {
  position: absolute;
  inset: 38px 0 auto 0;
  display: grid;
  gap: 14px;
}

.stat-tile {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(13, 62, 52, 0.12);
  backdrop-filter: blur(14px);
}

.stat-tile:nth-child(2) {
  margin-left: 72px;
}

.stat-tile:nth-child(3) {
  margin-right: 54px;
}

.stat-value {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
}

.stat-label {
  color: var(--muted);
}

.scene-road {
  position: absolute;
  left: 0;
  right: 10px;
  bottom: 44px;
  height: 106px;
  border-radius: 70px 12px 12px 70px;
  background: linear-gradient(90deg, rgba(16, 37, 31, 0.86), rgba(16, 37, 31, 0.68));
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

.scene-road::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #fffdf7 0 32px, transparent 32px 58px);
}

.scene-cab {
  position: absolute;
  right: 42px;
  bottom: 93px;
  width: 180px;
  height: 66px;
  border-radius: 30px 30px 14px 14px;
  background: linear-gradient(180deg, #ffd56a, #ecad36);
  box-shadow: 0 18px 26px rgba(16, 37, 31, 0.22);
}

.scene-cab::before {
  content: "";
  position: absolute;
  left: 48px;
  top: -32px;
  width: 82px;
  height: 40px;
  border-radius: 24px 24px 3px 3px;
  background: linear-gradient(135deg, #d9f5f6, #ffffff);
  border: 5px solid #edb33e;
}

.scene-cab::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -18px;
  width: 132px;
  height: 31px;
  background:
    radial-gradient(circle at 18px 15px, #10251f 0 15px, transparent 16px),
    radial-gradient(circle at 114px 15px, #10251f 0 15px, transparent 16px);
}

.scene-hotel {
  position: absolute;
  left: 34px;
  bottom: 138px;
  width: 154px;
  height: 198px;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(90deg, transparent 20px, rgba(255, 255, 255, 0.74) 21px 52px, transparent 53px),
    linear-gradient(180deg, transparent 18px, rgba(23, 120, 95, 0.32) 19px 48px, transparent 49px),
    linear-gradient(135deg, #97d8c6, #4eaa91);
  background-size: 56px 52px, 100% 52px, 100% 100%;
  box-shadow: 0 22px 36px rgba(13, 62, 52, 0.18);
}

.scene-hotel::before {
  content: "GOA";
  position: absolute;
  top: -30px;
  left: 32px;
  right: 32px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 0 0;
  color: white;
  background: var(--coral);
  font-weight: 900;
  letter-spacing: 0;
}

.seo-strip {
  padding: 18px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-compact .hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 34px;
}

.page-compact .hero-copy {
  max-width: 940px;
}

.page-compact .search-panel {
  max-width: 980px;
  margin: 0 auto;
}

.page-compact .visual-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 260px;
  min-height: 210px;
  opacity: 0.72;
  pointer-events: none;
}

.page-compact .scene-hotel {
  left: 18px;
  bottom: 58px;
  width: 82px;
  height: 108px;
  background-size: 34px 32px, 100% 32px, 100% 100%;
}

.page-compact .scene-hotel::before {
  top: -24px;
  left: 16px;
  right: 16px;
  height: 24px;
  font-size: 0.74rem;
}

.page-compact .scene-road {
  bottom: 8px;
  height: 58px;
}

.page-compact .scene-cab {
  right: 22px;
  bottom: 48px;
  width: 104px;
  height: 42px;
}

.page-compact .scene-cab::before {
  left: 28px;
  top: -22px;
  width: 48px;
  height: 28px;
  border-width: 3px;
}

.page-compact .scene-cab::after {
  left: 14px;
  width: 76px;
  height: 22px;
  bottom: -12px;
  background:
    radial-gradient(circle at 10px 10px, #10251f 0 9px, transparent 10px),
    radial-gradient(circle at 66px 10px, #10251f 0 9px, transparent 10px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 44px 0;
}

.contact-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
}

.contact-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: white;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.result-tools select:focus {
  border-color: rgba(23, 120, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(23, 120, 95, 0.12);
}

.site-footer {
  margin-top: 20px;
  padding: 34px 0;
  color: var(--paper);
  background: linear-gradient(135deg, #10251f, #0e5748);
}

.site-footer .brand img {
  box-shadow: none;
}

.site-footer p {
  max-width: 680px;
  color: rgba(255, 253, 247, 0.78);
}

.site-footer a {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-grid nav {
  display: grid;
  gap: 12px;
  min-width: 190px;
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  button,
  .mode-option {
    cursor: pointer;
  }

  .custom-cursor,
  .cursor-dot {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 26px;
  }

  .visual-panel {
    min-height: 300px;
  }

  .badge-stack {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-tile:nth-child(n) {
    margin: 0;
  }

  .scene-road,
  .scene-cab,
  .scene-hotel {
    display: none;
  }

  .page-compact .visual-panel {
    display: none;
  }

  .contact-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1160px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mode-toggle,
  .mode-option {
    width: 100%;
  }

  .search-panel {
    padding: 14px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-button,
  .clear-button {
    width: 100%;
  }

  .result-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .result-head,
  .result-grid,
  .badge-stack {
    grid-template-columns: 1fr;
  }

  .result-head {
    display: grid;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .brand-sub {
    display: none;
  }
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.share-button-top {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: white;
  color: var(--leaf-dark);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(13, 62, 52, 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

.share-button-top:hover {
  background: var(--mist);
}

.share-button-top svg {
  width: 16px;
  height: 16px;
}

.footer-share-icon {
  background: none;
  border: none;
  color: white;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
  opacity: 0.8;
}

.footer-share-icon:hover {
  opacity: 1;
}

.data-updated-box {
  margin: 10px auto 30px;
  padding: 16px 20px;
  background: var(--mist);
  border: 1px solid rgba(23, 120, 95, 0.2);
  border-radius: var(--radius);
  text-align: center;
  color: var(--leaf-dark);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(13, 62, 52, 0.05);
}

.data-updated-box strong {
  font-weight: 800;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.share-result-btn {
  background: none;
  border: none;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.share-result-btn:hover {
  color: var(--leaf-dark);
  background: rgba(23, 120, 95, 0.1);
}

@media (max-width: 600px) {
  .share-button-top {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
