﻿/* Palette and base */
:root {
  --blue-primary: #0D3C8C;
  --blue-wave: #1F5FA8;
  --accent: #F2B233;
  --white: #FFFFFF;
  --text: #1B1B1B;
  --text-muted: #666666;
  --surface: #f8fbff;
  --shadow-soft: 0 12px 32px rgba(13, 60, 140, 0.12);
}

html {
  scroll-behavior: smooth;
  background: var(--blue-primary);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #eef3f8;
  margin: 0;
  min-height: 100%;
}

/* Improve rendering cost for below-the-fold sections on supporting browsers */
.intro-section,
.services-section,
.cta-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

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

.skip-link {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2000;
  background: var(--white);
  color: var(--blue-primary);
  padding: .5rem .75rem;
  border-radius: .5rem;
}

/* Header / navbar */
.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
}

.navbar {
  transition: box-shadow .25s ease;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

.navbar.nav-scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.logo-img {
  width: 235px;
  height: auto;
}

.nav-link {
  color: var(--blue-primary);
  font-weight: 600;
  padding-inline: .9rem !important;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--blue-wave);
}

/* Google Translate / language picker (adapted from belvedere) */
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

#google_translate_element,
.google-translate-mount {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.lang-picker {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline: .15rem .25rem;
}

.lang-toggle {
  min-width: 84px;
  height: 46px;
  border: 1px solid rgba(13, 60, 140, .16);
  background: #fff;
  color: var(--blue-primary);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
  padding: .38rem .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  box-shadow: 0 6px 18px rgba(13, 60, 140, .08);
}

.lang-toggle:hover {
  border-color: rgba(13, 60, 140, .3);
  background: #f8fbff;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 172px;
  border: 1px solid rgba(13, 60, 140, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 24, 40, .12);
  padding: .35rem;
  display: none;
  z-index: 30;
}

.lang-picker.open .lang-menu {
  display: block;
}

.lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: .45rem .5rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  text-align: left;
  font-size: .9rem;
  color: var(--text);
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(31, 95, 168, .08);
}

.lang-option svg {
  width: 20px;
  height: 14px;
  border: 1px solid rgba(13, 60, 140, .2);
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-current-flag svg {
  width: 20px;
  height: 14px;
  border: 1px solid rgba(13, 60, 140, .18);
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-current-flag {
  display: inline-flex;
  align-items: center;
}

.navbar-toggler {
  border-color: rgba(13, 60, 140, 0.15);
  box-shadow: none !important;
  width: 56px;
  height: 56px;
  border-radius: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:not(.collapsed) {
  box-shadow: none !important;
  outline: none;
}

.navbar-toggler-icon {
  display: none;
}

.toggler-lines {
  width: 26px;
  height: 20px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggler-lines span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: #666;
  transition: transform .22s ease, opacity .18s ease, background-color .2s ease;
  transform-origin: center;
}

.navbar-toggler:hover .toggler-lines span {
  background: var(--blue-primary);
}

.navbar-toggler:not(.collapsed) .toggler-lines span {
  background: var(--blue-primary);
}

.navbar-toggler:not(.collapsed) .toggler-lines span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .toggler-lines span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-lines span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.btn-call,
.btn-primary-custom {
  background: var(--accent);
  color: var(--blue-primary);
  border: 2px solid transparent;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(242, 178, 51, 0.25);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-call {
  padding: .65rem 1rem;
}

.btn-call-circle {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--blue-primary);
  border: 2px solid transparent;
  box-shadow: 0 10px 18px rgba(242, 178, 51, 0.25);
}

.btn-call-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-call-circle-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.22);
}

.btn-call-circle-wa:hover {
  background: #2ede72;
  color: #fff;
}

.btn-primary-custom {
  padding: .8rem 1.35rem;
}

.btn-call:hover,
.btn-primary-custom:hover {
  background: #f7c85e;
  color: var(--blue-primary);
  transform: translateY(-1px);
}

.btn-call-circle:hover {
  background: var(--blue-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-call:focus-visible,
.btn-call-circle:focus-visible,
.btn-primary-custom:focus-visible,
.nav-link:focus-visible,
.footer-links a:focus-visible,
.footer-social a:focus-visible {
  outline: 3px solid rgba(31, 95, 168, 0.35);
  outline-offset: 3px;
}

/* Reusable wave separators */
.wave-stack {
  position: relative;
  line-height: 0;
}

.wave-stack .wave {
  width: 100%;
  display: block;
}

.wave-stack .wave path {
  transition: opacity .2s ease;
}

.wave-orange path { fill: var(--accent); }
.wave-blue path { fill: var(--blue-wave); }

.wave-stack-header {
  margin-top: -2px;
}

.wave-stack-header .wave-orange {
  height: 18px;
}

.wave-stack-header .wave-blue {
  height: 16px;
  margin-top: -5px;
}

.wave-stack-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
}

.wave-stack-hero-bottom .wave-orange { height: 44px; }
.wave-stack-hero-bottom .wave-blue { height: 34px; margin-top: -12px; }

.wave-stack-section .wave-orange { height: 28px; }
.wave-stack-section .wave-blue { height: 24px; margin-top: -7px; }

.wave-stack-card {
  position: absolute;
  inset: auto 0 0 0;
}

.wave-stack-card .wave-orange { height: 26px; }
.wave-stack-card .wave-blue { height: 20px; margin-top: -6px; }

/* Hero */
.hero-section {
  min-height: 560px;
  overflow: hidden;
  background: var(--blue-primary);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 60, 140, 0.68) 0%, rgba(13, 60, 140, 0.46) 35%, rgba(13, 60, 140, 0.18) 100%);
}

.hero-content {
  padding-top: 3.5rem;
  padding-bottom: 6.75rem;
}

.min-vh-60 { min-height: 60vh; }

.hero-title {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.05;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  max-width: 34ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.decorative-wave-text {
  width: 180px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0, var(--accent) 12%, var(--accent) 88%, transparent 100%);
  opacity: .9;
}

/* Mini gallery circles */
.mini-gallery-wrap {
  margin-top: -82px;
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 195, 255, 0.16), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(31, 95, 168, 0.12), transparent 38%),
    #ffffff;
  padding-bottom: .35rem;
}

.mini-gallery {
  align-items: center;
}

.circle-card {
  width: 140px;
  text-align: center;
  margin: 0;
}

.circle-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  background: linear-gradient(180deg, #87c7f7, #0d3c8c);
}

.circle-card figcaption {
  color: var(--blue-wave);
  font-weight: 700;
  font-size: .78rem;
  margin-top: .5rem;
  text-shadow: none;
}

.circle-card.active img {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* Intro + shared section styles */
.section-surface,
.cta-section,
.tour-map-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 195, 255, 0.16), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(31, 95, 168, 0.12), transparent 38%),
    #ffffff;
}

.section-title {
  color: var(--blue-primary);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.intro-section .section-title,
.cta-section .section-title {
  font-family: 'Georgia', serif;
  font-style: italic;
}

.section-text {
  max-width: 900px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Services cards */
.services-section {
  background:
    radial-gradient(circle at 20% 8%, rgba(242, 178, 51, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 470px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  background: #0a4da8;
}

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .32) 0%, rgba(0, 0, 0, .16) 45%, rgba(0, 0, 0, .04) 82%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
}

.service-card-left .service-overlay {
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, .05) 82%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.32));
}

.service-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.5rem 4.2rem;
}

.service-title {
  font-weight: 800;
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  line-height: 1.05;
  text-shadow: 0 4px 12px rgba(0,0,0,.2);
  margin-bottom: 1rem;
}

.service-title-accent {
  color: #ffe07a;
}

.service-list {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}

.service-list li { margin-bottom: .45rem; }

/* CTA + FAQ */
.cta-line {
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: var(--blue-primary);
}

.cta-line strong {
  font-size: 1.2em;
}

.cta-actions .btn-icon {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.cta-actions .btn-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #36de75;
  color: #ffffff;
}

.faq-accordion {
  max-width: 920px;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(13, 60, 140, .12);
  border-radius: .85rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 60, 140, .05);
  margin-bottom: .75rem;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--blue-primary);
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(31,95,168,.06);
  color: var(--blue-primary);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: inset 0 0 0 2px rgba(31,95,168,.18);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #12469f 0%, var(--blue-primary) 100%);
  color: var(--white);
  margin-bottom: 0;
}

.footer-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  margin-bottom: .9rem;
}

.footer-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .4rem;
}

.footer-links a:hover {
  color: #ffd66d;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-divider {
  border-color: rgba(255,255,255,.32);
  border-top-width: 2px;
  opacity: 1;
}

.footer-bottom {
  min-height: 28px;
}

.footer-credit-logo {
  height: 18px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(12px);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 95, 168, 0.96);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 60, 140, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.back-to-top:hover {
  background: var(--blue-primary);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(242, 178, 51, 0.6);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Image fallback for placeholder or missing files */
.hero-image[src$='.jpg'],
.circle-card img[src$='.jpg'],
.service-bg[src$='.jpg'] {
  background-color: #2b83d0;
}

/* Tour map */
.tour-map-section {
  position: relative;
  margin-top: -1px;
  padding-bottom: 0 !important;
}

.tour-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(242, 178, 51, 0.10), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(31, 95, 168, 0.08), transparent 24%);
  pointer-events: none;
}

.tour-map-section > .container,
.tour-map-section > .wave-stack {
  position: relative;
  z-index: 1;
}

.tour-map-intro {
  max-width: 860px;
}

.tour-map-kicker {
  color: var(--blue-wave);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tour-map-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.tour-map-card {
  border-radius: 1.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 60, 140, 0.08);
  box-shadow: 0 24px 54px rgba(13, 60, 140, 0.12);
}

.tour-map-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,249,255,.9));
  border-bottom: 1px solid rgba(13, 60, 140, 0.08);
}

.tour-map-toolbar-main {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--blue-primary);
}

.tour-map-toolbar small {
  color: var(--text-muted);
  font-size: .92rem;
}

.tour-map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 178, 51, 0.18);
}

.tour-map-shell {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(31,95,168,.08), rgba(255,255,255,.78));
}

.tour-map-wrap {
  position: relative;
  overflow: visible;
  background: #0d3358;
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
  line-height: 0;
}

.tour-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  user-select: none;
}

.tour-route-svg,
.tour-markers-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-route-svg {
  pointer-events: none;
  z-index: 2;
}

#tourRouteGlow,
#tourRouteLine {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#tourRouteGlow {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: .9;
}

#tourRouteLine {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: .26;
  stroke-dasharray: .75 .8;
}

.tour-markers-layer {
  pointer-events: none;
  z-index: 3;
}

.tour-marker {
  --size: 30px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 999px;
  background: rgba(13, 60, 140, 0.94);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(255, 255, 255, 0.16);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.tour-marker:hover,
.tour-marker:focus-visible,
.tour-marker.active {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--accent);
  color: #352503;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 0 6px rgba(242, 178, 51, 0.24);
  outline: none;
}

.tour-marker.start {
  --size: 32px;
  background: var(--blue-wave);
}

.tour-marker-popup {
  position: absolute;
  width: min(340px, calc(100% - 20px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(13, 60, 140, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 20px 44px rgba(10, 32, 70, 0.28);
  overflow: hidden;
  z-index: 10;
  transition: opacity .2s ease, transform .2s ease;
  line-height: normal;
}

.tour-marker-popup::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 50%);
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(13, 60, 140, 0.12);
  border-bottom: 1px solid rgba(13, 60, 140, 0.12);
  transform: translateX(-50%) rotate(45deg);
}

.tour-marker-popup.below::after {
  top: -10px;
  bottom: auto;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid rgba(13, 60, 140, 0.12);
  border-left: 1px solid rgba(13, 60, 140, 0.12);
}

.tour-marker-popup.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.tour-popup-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 26, 57, 0.65);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.tour-popup-image-wrap {
  aspect-ratio: 16 / 10;
  background: #dce8f5;
  overflow: hidden;
}

.tour-popup-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-popup-content {
  padding: 1rem;
}

.tour-popup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(31, 95, 168, 0.08);
  color: var(--blue-primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tour-popup-content h3 {
  margin: .8rem 0 .45rem;
  color: var(--blue-primary);
  font-size: 1.45rem;
  line-height: 1.1;
}

.tour-popup-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: .94rem;
}

.tour-popup-actions {
  margin-top: .95rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.tour-ghost-btn {
  border: 1px solid rgba(13, 60, 140, 0.16);
  background: #fff;
  color: var(--blue-primary);
  border-radius: 999px;
  padding: .62rem .9rem;
  font-weight: 700;
  cursor: pointer;
}

.tour-ghost-btn:hover,
.tour-ghost-btn:focus-visible {
  background: rgba(31, 95, 168, 0.08);
  outline: none;
}

.tour-stops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.intro-map-divider {
  margin-top: 2.5rem !important;
}

.tour-map-divider {
  margin-top: 3.25rem !important;
}

.cta-faq-divider {
  position: relative;
  z-index: 2;
  margin-bottom: -1.6rem;
}

.faq-section {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding-top: 4.25rem !important;
}

.services-section {
  margin-top: -1px;
  padding-top: 1.25rem;
}

.tour-stop-card {
  text-align: left;
  border: 1px solid rgba(13, 60, 140, 0.08);
  background: rgba(255,255,255,.92);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(13, 60, 140, 0.08);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tour-stop-card:hover,
.tour-stop-card:focus-visible,
.tour-stop-card.active {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 60, 140, 0.12);
  border-color: rgba(31, 95, 168, 0.18);
  outline: none;
}

.tour-stop-index {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue-wave);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: .8rem;
}

.tour-stop-card strong {
  display: block;
  color: var(--blue-primary);
  line-height: 1.2;
}

.tour-point-modal .modal-dialog {
  max-width: 420px;
}

.tour-point-modal-content {
  position: relative;
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  max-height: calc(100vh - 2rem);
  box-shadow: 0 20px 46px rgba(10, 32, 70, 0.26);
}

.tour-point-modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 26, 57, 0.65);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.tour-point-modal-image-wrap {
  aspect-ratio: 16 / 10;
  background: #dce8f5;
  overflow: hidden;
}

.tour-point-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-point-modal-body {
  padding: 1rem 1rem 1.1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.tour-point-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(31, 95, 168, 0.08);
  color: var(--blue-primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tour-point-modal-body h3 {
  margin: .8rem 0 .45rem;
  color: var(--blue-primary);
  font-size: 1.4rem;
  line-height: 1.1;
}

.tour-point-modal-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.tour-point-modal-actions {
  margin-top: .95rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.legal-modal .modal-dialog {
  max-width: 760px;
}

.legal-modal-content {
  position: relative;
  border: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  max-height: calc(100vh - 2rem);
  box-shadow: 0 24px 56px rgba(10, 32, 70, 0.26);
}

.legal-modal-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 26, 57, 0.72);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal-body {
  padding: 1.4rem 1.45rem 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(242, 178, 51, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  color: var(--text);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-modal-kicker {
  color: var(--blue-wave);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-modal-body h3 {
  color: var(--blue-primary);
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: clamp(1.65rem, 2vw, 2.25rem);
  margin-bottom: 1rem;
}

.legal-modal-body h4 {
  color: var(--blue-primary);
  font-size: 1rem;
  font-weight: 800;
  margin: 1.1rem 0 .35rem;
}

.legal-modal-body p {
  margin-bottom: .8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: .75rem 0;
    overflow: visible;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: #fff;
    border: 1px solid rgba(13, 60, 140, 0.08);
    border-radius: 1rem;
    box-shadow: 0 14px 28px rgba(13, 60, 140, 0.12);
    margin-top: .55rem;
    padding: .85rem .9rem;
  }

  /* Faster mobile menu animation (Bootstrap collapse can feel sluggish on mobile) */
  .navbar-collapse.collapsing {
    transition: height .14s ease !important;
  }

  .navbar-collapse .navbar-nav {
    margin-bottom: .6rem !important;
  }

  /* Avoid flash where links/buttons render before the panel background */
  .navbar-collapse.collapsing > * {
    opacity: 0;
  }

  .navbar-collapse.show > * {
    opacity: 1;
    transition: opacity .08s ease;
  }

  .header-contact-actions {
    margin-top: .25rem;
  }

  .header-actions {
    margin-top: .25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .lang-toggle {
    min-width: 90px;
  }

  .lang-picker {
    margin-inline: 0;
    overflow: visible;
  }

  .lang-menu {
    right: auto;
    left: 0;
    top: calc(100% + 8px);
    width: min(172px, calc(100vw - 2rem));
  }

  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }

  .mini-gallery-wrap {
    margin-top: -66px;
  }

  .circle-card,
  .circle-card img {
    width: 116px;
    height: 116px;
  }

  .circle-card img {
    border-width: 3px;
  }

  .circle-card figcaption {
    font-size: .72rem;
  }

  .service-card {
    min-height: 410px;
  }

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

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

@media (max-width: 767.98px) {
  .logo-img {
    width: 190px;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-subtitle {
    font-size: .98rem;
  }

  .mini-gallery-wrap {
    margin-top: -52px;
  }

  .mini-gallery {
    row-gap: .5rem;
  }

  .circle-card {
    width: 96px;
  }

  .circle-card img {
    width: 96px;
    height: 96px;
  }

  .service-content {
    padding: 1.35rem 1rem 3.8rem;
  }

  .service-list {
    font-size: 1rem;
  }

  .wave-stack-hero-bottom .wave-orange { height: 34px; }
  .wave-stack-hero-bottom .wave-blue { height: 26px; }

  .footer-credit-logo {
    height: 16px;
  }

  .cta-actions .btn-icon {
    min-width: 150px;
  }

  .navbar {
    padding-top: .28rem;
    padding-bottom: .28rem;
  }

  .back-to-top {
    bottom: 12px;
    width: 42px;
    height: 42px;
  }

  .tour-map-shell {
    padding: .85rem;
  }

  .tour-map-wrap {
    overflow: hidden;
  }

  .tour-marker {
    --size: 26px;
    font-size: .7rem;
  }

  .tour-marker.start {
    --size: 28px;
  }

  .tour-marker-popup {
    display: none;
  }

  .tour-point-modal .modal-dialog {
    margin: 1rem auto;
  }

  .tour-point-modal-body h3 {
    font-size: 1.3rem;
  }

  .legal-modal .modal-dialog {
    margin: 1rem auto;
  }

  .legal-modal-body {
    padding: 1.15rem 1rem 1rem;
  }

  .tour-stops-grid {
    display: none;
  }
}
