:root {
  --navy: #06182c;
  --blue: #0a3a62;
  --cyan: #55d8e8;
  --text: #142235;
  --muted: #637185;
  --line: #dbe4ec;
  --bg: #f4f7fa;
  --white: #ffffff;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(85,216,232,.24), transparent 28rem),
    linear-gradient(145deg, #06182c, #0b3154);
}

.hero .shell {
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.eyebrow.dark {
  color: #0b6f88;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(58px, 9vw, 110px);
  line-height: .92;
  letter-spacing: -.055em;
}

.lead {
  max-width: 650px;
  margin: 32px 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.primary-button {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.demo-note {
  margin-top: 26px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.explore {
  padding-block: 90px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.045em;
}

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

.menu-card {
  min-height: 190px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  text-decoration: none;
}

.menu-card > span {
  margin-bottom: auto;
  font-size: 34px;
}

.menu-card strong {
  font-size: 21px;
}

.menu-card small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.ship-card {
  margin-top: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  border-radius: 26px;
  color: #fff;
  background: var(--navy);
}

.ship-card h3 {
  margin: 6px 0 0;
  font-size: 32px;
}

.ship-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ship-times div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}

.ship-times span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.ship-times strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 92svh;
  }

  .hero .shell {
    padding-block: 70px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .lead {
    font-size: 18px;
  }

  .explore {
    padding-block: 68px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-card {
    min-height: 160px;
    padding: 20px;
  }

  .ship-card {
    grid-template-columns: 1fr;
  }

  .ship-times {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Harbor interactive map */

.map-section {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.map-heading {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.map-heading h3 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.map-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e6f8fb;
  color: #08748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

#harbor-map {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe8ef;
}

.leaflet-control-attribution {
  font-size: 10px;
}

@media (max-width: 760px) {
  .map-section {
    padding: 18px;
    border-radius: 22px;
  }

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

  #harbor-map {
    height: 400px;
  }
}

@media (max-width: 430px) {
  #harbor-map {
    height: 340px;
  }
}

.route-summary {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 10px;
}

.route-summary div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg);
}

.route-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.route-summary strong {
  font-size: 14px;
}

@media (max-width: 760px) {
  .route-summary {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   NTM Harbor local offline map
   ========================================= */

.harbor-local-map {
  position: relative;
  width: 100%;
  height: auto !important;
  aspect-ratio: 1536 / 1024;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe8ef;
}

.harbor-local-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef3f7;
}

@media (max-width: 760px) {
  .harbor-local-map {
    height: auto !important;
    aspect-ratio: 1536 / 1024;
  }
}

@media (max-width: 430px) {
  .harbor-local-map {
    height: auto !important;
    aspect-ratio: 1536 / 1024;
    border-radius: 14px;
  }
}

/* =========================================
   NTM Harbor map hotspots
   ========================================= */

.map-hotspot {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #06182c;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, box-shadow .18s ease;
}

.map-hotspot span {
  font-size: 20px;
  line-height: 1;
}

.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.active {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow:
    0 10px 28px rgba(0,0,0,.34),
    0 0 0 6px rgba(85,216,232,.22);
  outline: none;
}

/*
 * Positions are relative to the current NTM Harbor map artwork.
 * Fine-tune later after visual testing.
 */
.hotspot-port {
  left: 67%;
  top: 43%;
}

.hotspot-kervansaray {
  left: 61%;
  top: 31%;
}

.hotspot-bazaar {
  left: 58%;
  top: 48%;
}

.hotspot-oldtown {
  left: 48%;
  top: 60%;
}

.hotspot-waterfront {
  left: 41%;
  top: 45%;
}

.hotspot-guvercinada {
  left: 28%;
  top: 66%;
}

.map-detail {
  margin-top: 14px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7fafc;
}

.map-detail-kicker {
  display: block;
  margin-bottom: 5px;
  color: #08748b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.map-detail h4 {
  margin: 0 0 5px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.map-detail p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.map-detail-time {
  min-width: 115px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.map-detail-time span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.map-detail-time strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 23px;
}

@media (max-width: 760px) {
  .map-hotspot {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }

  .map-hotspot span {
    font-size: 17px;
  }

  .map-detail {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .map-detail-time {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 430px) {
  .map-hotspot {
    width: 34px;
    height: 34px;
  }

  .map-hotspot span {
    font-size: 15px;
  }
}

/* =========================================
   NTM Harbor invisible interactive hit zones
   Map artwork provides the visible markers.
   ========================================= */

.map-hotspot {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
}

.map-hotspot span {
  display: none;
}

.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.active {
  background: rgba(85,216,232,.12);
  box-shadow: 0 0 0 2px rgba(85,216,232,.45);
  transform: translate(-50%, -50%);
  outline: none;
}

/* Hit zones aligned to visible markers in the local map artwork */

.hotspot-port {
  left: 78.5%;
  top: 15.5%;
}

.hotspot-guvercinada {
  left: 24.6%;
  top: 23.0%;
}

.hotspot-waterfront {
  left: 53.0%;
  top: 44.5%;
}

.hotspot-oldtown {
  left: 48.8%;
  top: 58.5%;
}

.hotspot-bazaar {
  left: 61.5%;
  top: 56.0%;
}

.hotspot-kervansaray {
  left: 49.0%;
  top: 76.5%;
}

@media (max-width: 760px) {
  .map-hotspot {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 430px) {
  .map-hotspot {
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   NTM Harbor hotspot alignment v2
   Invisible click zones — artwork stays clean
   ========================================= */

.map-hotspot,
.map-hotspot:hover,
.map-hotspot:focus-visible,
.map-hotspot.active {
  width: 64px;
  height: 64px;
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  opacity: 1;
  transform: translate(-50%, -50%) !important;
}

/* Exact positions relative to ntm-harbor-map.png */

.hotspot-port {
  left: 79.1%;
  top: 21.5%;
}

.hotspot-guvercinada {
  left: 38.4%;
  top: 24.8%;
}

.hotspot-waterfront {
  left: 61.9%;
  top: 42.7%;
}

.hotspot-oldtown {
  left: 58.2%;
  top: 54.2%;
}

.hotspot-bazaar {
  left: 67.6%;
  top: 54.0%;
}

.hotspot-kervansaray {
  left: 58.2%;
  top: 67.6%;
}

@media (max-width: 760px) {
  .map-hotspot,
  .map-hotspot:hover,
  .map-hotspot:focus-visible,
  .map-hotspot.active {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .map-hotspot,
  .map-hotspot:hover,
  .map-hotspot:focus-visible,
  .map-hotspot.active {
    width: 44px;
    height: 44px;
  }
}

/* =========================================
   NTM Harbor POI detail card
   ========================================= */

.map-detail-category {
  margin: 0 0 8px !important;
  color: #08748b !important;
  font-size: 12px !important;
  font-weight: 800;
}

.map-detail-tip {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eaf7f9;
}

.map-detail-tip span {
  display: block;
  margin-bottom: 4px;
  color: #08748b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.map-detail-tip p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.map-detail-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.poi-action {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.poi-action-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

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

@media (max-width: 430px) {
  .map-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .poi-action {
    width: 100%;
  }
}

/* =========================================
   NTM Harbor Bazaar detail view
   ========================================= */

.poi-detail-view {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.poi-detail-view[hidden] {
  display: none;
}

.poi-detail-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.poi-detail-hero h3 {
  margin: 6px 0 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.poi-detail-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poi-detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.poi-back {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.poi-detail-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 18px;
}

.poi-info-card,
.poi-featured-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg);
}

.poi-label {
  margin: 0 0 7px;
  color: #08748b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.poi-info-card h4,
.poi-featured-card h4 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -.025em;
}

.poi-info-card > p,
.poi-featured-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.poi-tip-box {
  margin: 20px 0;
  padding: 15px 16px;
  border-radius: 15px;
  background: #e7f6f8;
}

.poi-tip-box span {
  display: block;
  margin-bottom: 5px;
  color: #08748b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.poi-tip-box p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.partner-placeholder {
  margin-top: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.partner-placeholder > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.partner-placeholder strong {
  display: block;
  font-size: 13px;
}

.partner-placeholder small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 760px) {
  .poi-detail-view {
    padding: 20px;
    border-radius: 22px;
  }

  .poi-detail-hero {
    flex-direction: column;
  }

  .poi-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   NTM Harbor professional partner listing
   ========================================= */

.partner-card {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.partner-card:hover {
  border-color: #9fdce5;
  transform: translateY(-1px);
}

.partner-card-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.partner-card-copy {
  min-width: 0;
}

.partner-card-type {
  display: block;
  margin-bottom: 3px;
  color: #08748b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
}

.partner-card-copy strong {
  display: block;
  font-size: 14px;
}

.partner-card-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.partner-card-meta {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.partner-card-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.partner-card-arrow {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.partner-detail-view {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.partner-detail-view[hidden] {
  display: none;
}

.partner-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.partner-detail-top h3 {
  margin: 6px 0 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.partner-detail-subtitle {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.partner-detail-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
}

.partner-detail-main {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.partner-visual {
  min-height: 310px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 15%, rgba(85,216,232,.28), transparent 16rem),
    linear-gradient(145deg, #06182c, #0b3154);
}

.partner-visual-badge {
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.partner-visual-content span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.partner-visual-content strong {
  display: block;
  margin-top: 5px;
  font-size: 30px;
  line-height: 1;
}

.partner-visual-content small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.65);
}

.partner-info,
.partner-offer-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg);
}

.partner-info > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.partner-facts {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.partner-facts div {
  padding: 12px;
  border-radius: 13px;
  background: #fff;
}

.partner-facts span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.partner-facts strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.partner-offer-card h4 {
  margin: 0 0 10px;
  font-size: 26px;
}

.partner-offer-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.partner-offer {
  margin: 20px 0;
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
}

.partner-offer span {
  display: block;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.partner-offer strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.partner-offer small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.62);
}

@media (max-width: 900px) {
  .partner-detail-layout,
  .partner-detail-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .partner-detail-view {
    padding: 20px;
    border-radius: 22px;
  }

  .partner-detail-top {
    flex-direction: column;
  }

  .partner-facts {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   NTM Harbor coupon / QR flow
   ========================================= */

.coupon-view {
  margin-top: 18px;
}

.coupon-view[hidden] {
  display: none;
}

.coupon-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.coupon-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.coupon-top h3 {
  margin: 5px 0 7px;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -.04em;
}

.coupon-top p {
  margin: 0;
  color: var(--muted);
}

.coupon-content {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 18px;
  align-items: stretch;
}

.coupon-offer,
.coupon-qr,
.coupon-code {
  padding: 22px;
  border-radius: 20px;
  background: var(--bg);
}

.coupon-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 75% 10%, rgba(85,216,232,.25), transparent 14rem),
    var(--navy);
}

.coupon-offer span,
.coupon-code > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.coupon-offer span {
  color: var(--cyan);
}

.coupon-offer strong {
  display: block;
  margin-top: 8px;
  font-size: 46px;
}

.coupon-offer small {
  margin-top: 7px;
  color: rgba(255,255,255,.64);
}

.coupon-qr {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
}

.coupon-qr img {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: 0 auto 12px;
}

.coupon-qr span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
}

.coupon-code {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coupon-code > span {
  color: var(--muted);
}

.coupon-code strong {
  margin: 8px 0 15px;
  font-size: 22px;
  letter-spacing: .04em;
}

.coupon-code button {
  align-self: flex-start;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.coupon-demo-note {
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 16px;
  background: #e8f6f8;
}

.coupon-demo-note strong {
  color: #08748b;
  font-size: 11px;
}

.coupon-demo-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .coupon-card {
    padding: 20px;
    border-radius: 22px;
  }

  .coupon-top {
    flex-direction: column;
  }

  .coupon-content {
    grid-template-columns: 1fr;
  }

  .coupon-qr img {
    max-width: 190px;
  }
}

/* =========================================
   NTM Harbor v0.3 active route overlay
   ========================================= */

.active-route-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.active-route-overlay[hidden] {
  display: none;
}

.active-route-overlay polyline {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-glow {
  stroke: rgba(255,255,255,.9);
  stroke-width: 10px;
}

.route-active-line {
  stroke: #00a8c6;
  stroke-width: 6px;
  stroke-dasharray: 10 8;
  animation: harborRouteMove 1.4s linear infinite;
}

.route-point {
  vector-effect: non-scaling-stroke;
  stroke: #fff;
  stroke-width: 3px;
}

.route-start {
  fill: #06182c;
}

.route-stop {
  fill: #55d8e8;
}

.route-destination {
  fill: #00a8c6;
}

@keyframes harborRouteMove {
  to {
    stroke-dashoffset: -18;
  }
}

.active-route-panel {
  margin-top: 14px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #b9e4ea;
  border-radius: 16px;
  background: #e9f8fa;
}

.active-route-panel[hidden] {
  display: none;
}

.active-route-label {
  display: block;
  margin-bottom: 4px;
  color: #08748b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}

.active-route-panel strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.active-route-panel small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.active-route-panel button {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #9bd7df;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 760px) {
  .active-route-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-active-line {
    animation: none;
  }
}
