body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  background: #020b14 !important;
  color: #f0f8ff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --sh-accent: #00c6ff;
  --sh-accent-dark: #0072ff;
  --sh-bg: #020b14;
  --sh-glass: rgba(255, 255, 255, 0.03);
  --sh-glass-border: rgba(255, 255, 255, 0.08);
  --sh-text: #ffffff;
  --sh-text-muted: rgba(255, 255, 255, 0.65);
}
#sh-engine {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  overflow: hidden !important;
  background: var(--sh-bg) !important;
  z-index: 9990 !important;
}
#sh-engine::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}
.sh-scene {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
  filter: blur(30px);
}
.sh-scene-next {
  transform: scale(0.85);
  opacity: 0;
  filter: blur(30px);
}
.sh-scene-active {
  transform: scale(1) !important;
  opacity: 1 !important;
  filter: blur(0) !important;
  pointer-events: auto;
  z-index: 10;
}
.sh-scene-prev {
  transform: scale(1.15);
  opacity: 0;
  filter: blur(30px);
}
.sh-bg-orbs {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.sh-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.sh-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: saturate(1.2) contrast(1.1);
}
.sh-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 11, 20, 0.1) 0,
    rgba(2, 11, 20, 0.9) 100%
  );
  z-index: 2;
}
#sh-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.sh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: sh-orb-float 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  will-change: transform;
}
@keyframes sh-orb-float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0);
  }
  33% {
    transform: translate(5vw, -5vh) scale(1.1) rotate(10deg);
  }
  66% {
    transform: translate(-3vw, 8vh) scale(0.9) rotate(-10deg);
  }
  100% {
    transform: translate(4vw, -2vh) scale(1.05) rotate(5deg);
  }
}
.sh-orb-1 {
  width: 40vw;
  height: 40vw;
  background: #00c6ff;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.sh-orb-2 {
  width: 35vw;
  height: 35vw;
  background: #0072ff;
  bottom: 20%;
  right: 10%;
  animation-delay: -5s;
}
.sh-orb-3 {
  width: 25vw;
  height: 25vw;
  background: #00f2fe;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}
.sh-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
#sh-dots {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sh-dot {
  width: 6px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.sh-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scaleX(1.5);
}
.sh-dot.active {
  background: #fff;
  height: 48px;
  box-shadow: 0 0 15px var(--sh-accent);
}
#sh-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 9995;
}
#sh-progress-bar {
  height: 100%;
  background: #fff;
  box-shadow:
    0 0 10px #fff,
    0 0 20px var(--sh-accent);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sh-scene-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.sh-scene-content::-webkit-scrollbar {
  width: 6px;
}
.sh-scene-content::-webkit-scrollbar-track {
  background: 0 0;
}
.sh-scene-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.sh-scene-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}
.sh-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sh-accent);
  display: block;
  text-align: center;
  margin-bottom: 4px;
}
.sh-scene-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  margin-bottom: 12px;
}
.sh-scene-desc {
  max-width: 720px;
  text-align: center;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--sh-text-muted);
  font-weight: 300;
}
.sh-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(10px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.sh-scene-active .sh-reveal.sh-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.sh-hero-content {
  gap: 24px;
  margin-top: 0;
}
#sh-logo {
  width: min(280px, 50vw);
}
.sh-hero-title {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.sh-hero-tagline {
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sh-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.sh-legal-footer {
  margin-top: 60px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.sh-legal-footer p {
  margin-bottom: 8px;
}
.sh-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.sh-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  font-size: 13px;
  white-space: nowrap;
}
.sh-legal-links a:hover {
  color: #fff;
  border-bottom-color: var(--sh-accent);
  background: rgba(255, 255, 255, 0.02);
}
.sh-hero-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.sh-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #020b14 !important;
  background: #fff;
  text-decoration: none !important;
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  margin-top: 16px;
}
.sh-cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.8);
}
.sh-cta-primary:active {
  transform: scale(0.98);
}
.sh-scroll-hint {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sh-scroll-arrow {
  animation: sh-bounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  color: #fff;
}
@keyframes sh-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
.sh-stats-content {
  gap: 16px;
  justify-content: center;
}
.sh-route-cards {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  justify-content: center;
}
.sh-route-card {
  flex: 1;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.sh-route-card.sh-clickable {
  cursor: pointer;
}
.sh-route-card.sh-clickable:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(0, 198, 255, 0.2);
}
.sh-route-card h3 {
  font-size: clamp(16px, 3.5vw, 22px);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.sh-route-metrics {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.sh-route-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sh-metric-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 5vw, 32px);
  color: var(--sh-accent);
  line-height: 1;
}
.sh-metric-lbl {
  font-size: 10px;
  color: var(--sh-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.sh-final-logo {
  max-width: 100%;
  transition: transform 0.4s;
}
.sh-final-logo:hover {
  transform: scale(1.05);
}
.sh-final-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
  pointer-events: none;
}
.sh-final-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: sh-blob-float 20s infinite alternate ease-in-out;
}
.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 198, 255, 0.2);
  top: -100px;
  left: -100px;
}
.blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(29, 158, 117, 0.2);
  bottom: -50px;
  right: -50px;
  animation-delay: -10s;
}
@keyframes sh-blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}
.sh-social-links {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}
.sh-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sh-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.sh-back-top-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.sh-back-top-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.sh-legal-footer {
  margin-top: auto;
  padding-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sh-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.sh-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}
.sh-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
}
.sh-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.sh-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.sh-powered-by {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
.sh-cta-ocean {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 400px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #0072ff;
  color: #fff !important;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
  margin-bottom: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}
.sh-cta-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.6);
}
.sh-cta-ocean span {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.sh-cta-ocean::after,
.sh-cta-ocean::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}
.sh-cta-ocean::before {
  border-radius: 45%;
  background: rgba(0, 198, 255, 0.9);
  animation: sh-wave 4s linear infinite;
  z-index: 0;
}
.sh-cta-ocean::after {
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.15);
  animation: sh-wave 8s linear infinite;
  z-index: 0;
}
@keyframes sh-wave {
  0% {
    transform: translate(-50%, -75%) rotate(0);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
.sh-experience-content {
  gap: 16px;
  justify-content: flex-start;
}
.sh-lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 900px;
}
.sh-list-card {
  padding: 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}
.sh-custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sh-custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.sh-list-icon {
  font-size: 16px;
  flex-shrink: 0;
}
#sh-scene-3 {
  background: linear-gradient(-45deg, #02121d, #001f3f, #036, #02121d);
  background-size: 400% 400%;
  animation: sh-water-bg 15s ease infinite;
}
@keyframes sh-water-bg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.sh-info-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 900px;
  margin-top: 16px;
}
.sh-info-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}
.sh-info-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.sh-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.sh-glass-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 12vh;
}
.sh-glass-modal.sh-modal-active {
  opacity: 1;
  pointer-events: auto;
}
.sh-modal-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.sh-glass-modal.sh-modal-active .sh-modal-content {
  transform: translateY(0) scale(1);
}
.sh-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.sh-modal-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.sh-modal-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.sh-modal-content p {
  font-size: 14px;
  color: var(--sh-text-muted);
  line-height: 1.6;
}
.sh-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  align-items: center;
}
.sh-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
}
.sh-detail-icon {
  font-size: 24px;
}
.sh-detail-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sh-accent);
  margin-bottom: 4px;
}
.sh-detail-item span {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
}
.sh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.sh-why-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
}
.sh-why-card.sh-modal-trigger {
  cursor: pointer;
}
.sh-why-card.sh-modal-trigger:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(0, 198, 255, 0.2);
}
.sh-why-icon {
  font-size: 40px;
}
.sh-why-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.sh-why-card p {
  font-size: 13px;
  color: var(--sh-text-muted);
  line-height: 1.5;
}
.sh-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.sh-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.sh-faq-arrow {
  color: var(--sh-accent);
  transition: transform 0.4s;
}
.sh-faq-q[aria-expanded="true"] .sh-faq-arrow {
  transform: rotate(180deg);
}
.sh-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 12px 12px;
  margin-top: -10px;
  margin-bottom: 12px;
}
.sh-faq-a.sh-open {
  max-height: 300px;
}
.sh-faq-a p {
  padding: 16px;
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.6;
  font-weight: 300;
}
/* Arrow navigation for desktop carousel - hidden on mobile */
.sh-activities-nav {
  display: none; /* hidden by default, shown on desktop */
  position: absolute;
  top: 50%;
  left: -24px;
  right: -24px;
  transform: translateY(-50%);
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.sh-main-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background: rgba(30, 30, 40, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.sh-main-arrow:hover {
  background: rgba(0,198,255,0.3);
  border-color: rgba(0,198,255,0.6);
  transform: scale(1.1);
}
@media (min-width: 769px) {
  .sh-activities-nav {
    display: flex;
  }
}
/* ===== ACTIVITIES CAROUSEL ===== */
.sh-activities-carousel-wrapper {
  position: relative;
  width: 100%;
}
.sh-activities-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sh-activities-carousel::-webkit-scrollbar {
  display: none;
}
/* MOBILE: each card is nearly full-width */
.sh-act-card {
  flex: 0 0 calc(85vw - 24px);
  max-width: 340px;
  min-height: 420px;
  height: 100%;
  border-radius: 20px;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transform: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  background: rgba(20, 25, 30, 0.95);
}
.sh-act-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}
/* DESKTOP: fixed-width cards, arrow navigation */
@media (min-width: 769px) {
  .sh-activities-carousel {
    gap: 20px;
    padding: 8px 0 32px;
    overflow-x: auto; /* still scrollable by wheel, arrows control it */
  }
  .sh-act-card {
    flex: 0 0 280px;
    max-width: 280px;
    min-height: 440px;
  }
}
.sh-act-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 1;
}
.sh-act-card:hover .sh-act-bg {
  transform: scale(1.05);
}
.sh-act-visual {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 250px;
  overflow: hidden;
}
.sh-act-content {
  position: relative;
  width: 100%;
  padding: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.sh-act-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.sh-act-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-act-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}
.sh-act-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  border: none;
}
.sh-btn-info {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sh-btn-info:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sh-btn-wa {
  background: #25d366;
  color: #fff !important;
}
.sh-btn-wa:hover {
  background: #128c7e;
}
.sh-act-carousel-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sh-act-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.sh-act-carousel-track::-webkit-scrollbar {
  display: none;
}
.sh-act-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.sh-act-card:hover .sh-act-slide {
  transform: scale(1.05);
}
.sh-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  z-index: 3;
  transition: background 0.3s;
}
.sh-img-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}
.sh-img-arrow-left {
  left: 10px;
}
.sh-img-arrow-right {
  right: 10px;
}
.sh-modal-activity-content {
  max-width: 600px;
  padding: 0;
  overflow: hidden;
  background: rgba(20, 25, 30, 0.95);
}
.sh-modal-activity-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.sh-modal-activity-body {
  padding: 30px;
}
.sh-modal-activity-body h4 {
  font-size: 32px;
  margin: 0 0 15px 0;
  color: #fff;
}
.sh-modal-activity-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  white-space: pre-wrap;
}
.sh-final-title {
  font-size: clamp(36px, 8vw, 80px);
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sh-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 900px) {
  .sh-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sh-lists-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sh-info-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sh-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sh-activities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sh-faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .sh-scene {
    align-items: flex-start !important;
    padding-top: 20px;
    transform-origin: top center !important;
  }
  /* El mapa no hereda el padding-top de flex-start */
  #sh-scene-map {
    padding-top: 0 !important;
    align-items: stretch !important;
  }
  #sh-scene-map .sh-map-content {
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding-top: 0 !important;
  }
  .sh-scene-content {
    padding: 0 20px;
    padding-bottom: 20px;
    gap: 16px;
    max-height: 100vh;
    overflow-y: auto;
  }
  .sh-scene-content::after {
    content: '';
    display: block;
    height: 140px;
    width: 100%;
    flex-shrink: 0;
  }
  .sh-act-card {
    min-height: unset;
    height: 380px;
    max-height: 400px;
  }
  .sh-act-visual {
    min-height: 120px;
    flex: 1;
  }
  .sh-act-content {
    flex: none;
    padding: 16px;
  }
  .sh-act-title {
    font-size: 22px;
  }
  .sh-act-desc {
    font-size: 13px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .sh-act-actions {
    flex-wrap: wrap;
  }
  .sh-act-actions .sh-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  #sh-dots {
    display: none !important;
  }
  #sh-logo {
    width: 160px;
  }
  .sh-route-cards {
    flex-direction: row;
    gap: 8px;
  }
  .sh-route-card {
    padding: 12px 8px;
  }
  .sh-route-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .sh-route-metric {
    gap: 2px;
  }
  .sh-route-metric .sh-val {
    font-size: 16px;
  }
  .sh-route-metric .sh-lbl {
    font-size: 8px;
  }
  .sh-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .sh-stat-card {
    padding: 16px 8px;
    gap: 4px;
  }
  .sh-stat-num {
    font-size: 32px;
  }
  .sh-stat-unit {
    font-size: 16px;
  }
  .sh-stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .sh-lists-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sh-list-card {
    padding: 12px;
    margin-bottom: 4px;
  }
  .sh-list-card h3 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  .sh-custom-list li {
    font-size: 12px;
    gap: 6px;
  }
  .sh-info-buttons {
    position: fixed;
    right: 16px;
    top: 40px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto !important;
    z-index: 99999;
  }
  .sh-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 0;
    width: 48px;
    height: 48px;
    transition:
      background 0.4s,
      opacity 0.4s;
    opacity: 0;
  }
  .sh-info-btn .sh-info-icon {
    font-size: 20px;
    text-align: center;
  }
  .sh-info-btn .sh-info-label {
    display: none !important;
  }
  .sh-scene-active .sh-info-btn {
    opacity: 1;
    background: rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.4);
  }
  .sh-scene-active .sh-info-btn:first-child {
    transition-delay: 0.1s;
  }
  .sh-scene-active .sh-info-btn:nth-child(2) {
    transition-delay: 0.2s;
  }
  .sh-scene-active .sh-info-btn:nth-child(3) {
    transition-delay: 0.3s;
  }
  .sh-scene-active .sh-info-btn:nth-child(4) {
    transition-delay: 0.4s;
  }
  .sh-detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .sh-activity-card {
    padding: 16px;
    gap: 8px;
  }
  .sh-activity-card .sh-detail-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    line-height: 24px;
    padding: 12px;
  }
  .sh-activity-card strong {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .sh-activity-card span {
    font-size: 11px;
  }
  .sh-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
  }
  .sh-why-card {
    padding: 16px 8px;
    gap: 6px;
    border-radius: 12px;
    min-height: 0;
  }
  .sh-why-icon {
    font-size: 24px;
    margin-bottom: 0;
  }
  .sh-why-card h3 {
    font-size: 11px;
    margin: 0;
    line-height: 1.2;
    padding: 0 4px;
  }
  .sh-why-card p {
    display: none;
  }
  .sh-faq-q {
    padding: 12px;
    font-size: 13px;
    gap: 8px;
  }
  .sh-faq-a p {
    padding: 12px;
    font-size: 13px;
  }
  .sh-hero-content .sh-cta-primary {
    display: none;
  }
  .sh-final-content .sh-cta-primary {
    display: none;
  }
  .sh-legal-footer {
    padding-bottom: 20px;
  }
  .sh-mobile-spacer {
    display: block !important;
  }
  #sh-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9998;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition:
      opacity 0.6s ease,
      transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  body[data-scene="0"] #sh-mobile-cta {
    opacity: 0;
    transform: translateY(120px);
    pointer-events: none;
  }
  .sh-mobile-cta-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00c6ff 0, #0072ff 100%);
    color: #fff !important;
    border-radius: 18px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
    position: relative;
    z-index: 10;
    animation: sh-cta-pulse 2.5s infinite;
  }
  @keyframes sh-cta-pulse {
    0% {
      box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
    }
    50% {
      box-shadow: 0 8px 30px rgba(0, 198, 255, 0.8);
    }
    100% {
      box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
    }
  }
  .sh-cta-icon {
    font-size: 1.2rem;
  }
  .sh-mobile-cta-decorations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    overflow: visible;
  }
  .sh-mobile-cta-decorations svg {
    position: absolute;
    width: 250px;
    bottom: 0;
    left: 50%;
    margin-left: -125px;
    overflow: visible;
  }
  .sh-mobile-cta-decorations #sh-logo-sun {
    opacity: 0;
    transform: translateY(150px) scale(0.6);
    transform-origin: center bottom;
    transition: all 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    z-index: 1;
  }
  body[data-scene="2"] .sh-mobile-cta-decorations #sh-logo-sun {
    opacity: 1;
    transform: translateY(-30px) scale(0.6);
  }
  .sh-mobile-cta-decorations #sh-logo-canoe {
    opacity: 0;
    transform: translate(-300px, 20px) scaleX(0.4) scaleY(0.4);
    transition: all 6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
  }
  body[data-scene="2"] .sh-mobile-cta-decorations #sh-logo-canoe {
    opacity: 1;
    transform: translate(300px, 20px) scaleX(0.4) scaleY(0.4);
    transition-delay: 1s;
  }
  #sh-mobile-cta.sl-water-absorbed {
    background: rgba(0, 198, 255, 0.15);
    border-color: rgba(0, 198, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.3);
    transition: all 0.6s ease;
  }
}
.sh-custom-logo-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sh-custom-logo-wrapper {
    max-width: 250px;
  }
}
.sh-map-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 !important;
  height: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  position: absolute !important;
  inset: 0 !important;
}
body.sh-map-open #sh-engine {
  background: #000;
}
.sh-map-content .smm-wrap {
  background: radial-gradient(circle at 50% 80%, #0c3623 0, #051410 40%, #000 100%) !important;
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}
/* Desktop: constrain map to reasonable width */
@media (min-width: 769px) {
  .sh-map-content {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: radial-gradient(circle at 50% 80%, #0c3623 0, #051410 40%, #000 100%) !important;
  }
  .sh-map-content .smm-wrap {
    position: relative !important;
    inset: auto !important;
    width: 480px !important;
    max-width: 480px !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
}
.sh-map-content .smm-map-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.sh-map-content .smm-panel {
  position: absolute;
  bottom: 160px;
  left: 10px;
  right: 10px;
  z-index: 10;
}
.sh-map-content .smm-stats {
  position: absolute;
  bottom: 90px;
  left: 10px;
  right: 10px;
  z-index: 10;
}
.sh-map-content .smm-map-area svg {
  height: 100%;
  width: 100%;
}
.sh-map-back {
  display: flex !important;
  position: absolute !important;
  bottom: 120px !important;
  left: 20px !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  z-index: 10000 !important;
  background: rgba(10, 25, 18, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  gap: 8px !important;
  align-items: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}
.sh-map-back svg {
  width: 20px !important;
  height: 20px !important;
}
.sh-map-content .smm-cta {
  display: none !important;
}
.sh-map-content .smm-head > div:first-child {
  display: none !important;
}
.sh-map-content .smm-head {
  overflow: visible !important;
  background: 0 0 !important;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  justify-content: center !important;
  padding: 0 !important;
  z-index: 20;
  pointer-events: none;
}
.sh-map-content .smm-head::before {
  display: none !important;
}
.sh-map-content .smm-tabs {
  background: 0 0;
  padding: 0;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.sh-map-content .smm-tab {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 !important;
}
.smm-wrap {
  --smm-primary: #639922;
  --smm-accent: #1d9e75;
  --smm-bg: #edf7dc;
  --smm-font: "Segoe UI", Arial, sans-serif;
  --smm-panel-blur: 16px;
  --smm-panel-radius: 14px;
  --smm-panel-bg-op: 72%;
  --smm-cta-radius: 10px;
  --smm-lb-blur: 32px;
  --smm-lb-bg-op: 90%;
  --smm-anim-speed: 1;
  --smm-stat-layout: 2col;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  background: var(--smm-bg);
  padding: 0 0 20px;
  font-family: var(--smm-font);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.smm-head {
  background: linear-gradient(135deg, #1a3d1f, #0f2a13);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.smm-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(99, 153, 34, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.smm-logo {
  font-size: 18px;
  font-weight: 700;
  color: #c0dd97;
  animation: smmFloat 6s ease-in-out infinite;
}
.smm-sub {
  font-size: 11px;
  color: var(--smm-primary);
  margin-top: 2px;
}
.smm-tabs {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.smm-tab {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(99, 153, 34, 0.4);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #97c459;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  font-family: inherit;
}
.smm-tab.smm-on {
  background: var(--smm-primary);
  color: #173404;
  border-color: var(--smm-primary);
  box-shadow: 0 2px 12px rgba(99, 153, 34, 0.3);
}
.smm-tab:hover {
  background: rgba(99, 153, 34, 0.2);
  transform: scale(1.04);
}
.smm-tab.smm-on:hover {
  transform: scale(1.06);
}
.smm-map-area {
  padding: 8px 4px 0;
  position: relative;
}
.smm-map-area svg {
  display: block;
  max-width: 100%;
  height: 100%;
  overflow: visible;
}
.smm-river-shimmer {
  animation: smmShimmer 4s ease-in-out infinite;
}
@keyframes smmShimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.smm-wp {
  transition:
    opacity 0.35s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  cursor: pointer;
}
.smm-wp:hover {
  transform: scale(1.3);
  filter: brightness(1.25);
}
.smm-wp-major:hover {
  transform: scale(1.2);
}
.smm-wp-stop circle:first-child {
  animation: smmBob 4s ease-in-out infinite;
}
.smm-wp-stop:nth-child(2n) circle:first-child {
  animation-delay: -1s;
}
.smm-wp-stop:nth-child(3n) circle:first-child {
  animation-delay: -2s;
}
@keyframes smmBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2.5px);
  }
}
.smm-wp-major circle,
.smm-wp-major polygon,
.smm-wp-major rect {
  animation: smmPulse 3s ease-in-out infinite;
}
@keyframes smmPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
#smm-long-route {
  opacity: 0;
  transition: opacity 0.45s ease;
}
#smm-short-route {
  transition: opacity 0.45s ease;
}
#smm-ck,
#smm-cl {
  transition: opacity 0.4s ease;
}
#smm-cl {
  opacity: 0;
}
.smm-lbl {
  transition: opacity 0.4s ease;
  font-variation-settings: "wght" 650;
  cursor: pointer;
}
.smm-lbl:hover {
  fill: #1a3d8f !important;
}
.smm-tooltip {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(6px) scale(0.96);
  background: rgba(26, 61, 31, 0.94);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  color: #eaf3de;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(192, 221, 151, 0.25);
}
.smm-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(26, 61, 31, 0.94);
}
.smm-tooltip.smm-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.smm-tooltip .smm-tt-dist {
  font-weight: 400;
  opacity: 0.6;
  font-size: 11px;
  margin-left: 8px;
}
.smm-panel {
  margin: 8px 14px 0;
  background: rgba(255, 255, 255, calc(var(--smm-panel-bg-op) / 100));
  backdrop-filter: blur(var(--smm-panel-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--smm-panel-blur)) saturate(1.3);
  border-radius: var(--smm-panel-radius);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
  min-height: 60px;
  transition: min-height 0.3s ease;
}
.smm-panel-name {
  font-size: 14px;
  font-weight: 700;
  color: #173404;
  margin-bottom: 2px;
}
.smm-panel-dist {
  font-size: 11px;
  color: #3b6d11;
  margin-bottom: 6px;
}
.smm-panel-desc {
  font-size: 12px;
  color: #3a4a2a;
  line-height: 1.65;
}
.smm-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 9px;
  display: inline-block;
  animation: smmPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes smmPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.tg {
  background: #c0dd97;
  color: #173404;
}
.ta {
  background: #fac775;
  color: #412402;
}
.tr {
  background: #f5c4b3;
  color: #4a1b0c;
}
.tb {
  background: rgba(181, 212, 244, 0.85);
  color: #042c53;
  backdrop-filter: blur(4px);
}
.tc {
  background: #9fe1cb;
  color: #04342c;
}
.smm-panel-photos {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  min-height: 50px;
}
.smm-panel-photo {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  animation: smmPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.smm-panel-photo:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.smm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 8px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.smm-stat {
  padding: 10px 0;
  text-align: center;
  position: relative;
}
.smm-stat:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(192, 221, 151, 0.4);
}
.smm-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: #27500a;
}
.smm-stat-lbl {
  font-size: 11px;
  color: #3b6d11;
  margin-top: 2px;
}
.smm-cta {
  display: block;
  margin: 8px 14px 0;
  padding: 11px 0;
  background: linear-gradient(135deg, var(--smm-primary), #4a7a1a);
  color: #eaf3de;
  border: none;
  border-radius: var(--smm-cta-radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: calc(100% - 28px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.smm-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  animation: smmShine 4s ease-in-out infinite;
}
@keyframes smmShine {
  0%,
  100% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(100%);
  }
}
.smm-cta:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 4px 20px rgba(99, 153, 34, 0.35);
}
@keyframes smmFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.smm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, calc(var(--smm-lb-bg-op) / 100));
  backdrop-filter: blur(var(--smm-lb-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--smm-lb-blur)) saturate(1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.smm-lightbox.smm-active {
  opacity: 1;
  visibility: visible;
}
.smm-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10;
}
.smm-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.1);
}
.smm-lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.smm-lightbox.smm-active .smm-lightbox-img {
  opacity: 1;
  transform: scale(1) translateY(0);
}
@media (prefers-color-scheme: dark) {
  .smm-wrap {
    background: #000;
    color: #e0e0e0;
  }
  .smm-head {
    background: linear-gradient(135deg, #0a1a0d, #050d07);
  }
  .smm-head::before {
    background: radial-gradient(
      ellipse at 30% 50%,
      rgba(99, 153, 34, 0.08),
      transparent 60%
    );
  }
  .smm-panel {
    background: rgba(15, 15, 15, 0.88);
    border-color: rgba(99, 153, 34, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  .smm-panel-name {
    color: #c0dd97;
  }
  .smm-panel-desc {
    color: #999;
  }
  .smm-stats {
    background: rgba(15, 15, 15, 0.85);
    border-color: rgba(99, 153, 34, 0.15);
  }
  .smm-stat-val {
    color: #7ecb3f;
  }
  .smm-stat-lbl {
    color: #4a7a1a;
  }
  .smm-stat:first-child::after {
    background: rgba(99, 153, 34, 0.2);
  }
  .smm-tooltip {
    background: rgba(10, 26, 13, 0.96);
    border-color: rgba(99, 153, 34, 0.3);
  }
  .smm-tooltip::after {
    border-top-color: rgba(10, 26, 13, 0.96);
  }
  .smm-tab {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 153, 34, 0.3);
  }
  .smm-map-area svg text {
    fill: #888 !important;
  }
  .smm-map-area svg text[font-size="24"],
  .smm-map-area svg text[font-size="26"] {
    fill: #1a3d8f !important;
  }
  .smm-cta {
    background: linear-gradient(135deg, #2d5c0e, #1a3d08);
  }
}
@media print {
  .smm-cta,
  .smm-lightbox,
  .smm-tabs,
  .smm-tooltip,
  .smm-wrap {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .smm-panel {
    break-inside: avoid;
  }
}
.sh-map-content .smm-stats {
  display: none !important;
}
.sh-map-content .smm-head {
  justify-content: flex-start !important;
  padding-left: 20px !important;
}
body.sh-map-open #sh-mobile-cta {
  background: 0 0 !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  bottom: 20px !important;
  left: 10px !important;
  right: auto !important;
  width: auto !important;
  padding: 0 !important;
  z-index: 100 !important;
}
body.sh-map-open .sh-mobile-cta-btn {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.smm-wrap.smm-mode-short #smm-river-short {
  stroke: #639922;
  transition: stroke 0.5s ease;
}
.smm-wrap.smm-mode-short #smm-river-long {
  stroke: #1d4e7a;
  opacity: 0.3;
  transition:
    stroke 0.5s ease,
    opacity 0.5s ease;
}
.smm-wrap.smm-mode-long #smm-river-short {
  stroke: #1d9e75;
  transition: stroke 0.5s ease;
}
.smm-wrap.smm-mode-long #smm-river-long {
  stroke: #1d9e75;
  opacity: 1;
  transition:
    stroke 0.5s ease,
    opacity 0.5s ease;
}
@keyframes smm-pulse-bg {
  0% {
    background: rgba(29, 158, 117, 0.2);
  }
  50% {
    background: rgba(29, 158, 117, 0.6);
  }
  100% {
    background: rgba(29, 158, 117, 0.2);
  }
}
.smm-wrap:not(.smm-mode-short):not(.smm-mode-long) .sh-map-content .smm-tab {
  border-color: rgba(29, 158, 117, 0.5) !important;
}
.sh-map-content .smm-tab.smm-on {
  background: #1d9e75 !important;
  color: #fff !important;
  border-color: #fff !important;
  animation: none;
}
.smm-wrap:not(.smm-mode-short):not(.smm-mode-long) #smm-river-long,
.smm-wrap:not(.smm-mode-short):not(.smm-mode-long) #smm-river-short {
  stroke: #1d4e7a;
  opacity: 0.5;
}
.smm-wrap:not(.smm-mode-short):not(.smm-mode-long) .smm-wp:not(.smm-wp-major) {
  opacity: 0.3;
}
body.sh-map-open {
  overflow: hidden !important;
  touch-action: none !important;
}

/* smm-wrap background is set in the main .sh-map-content .smm-wrap block above */
@keyframes sh-map-bg-anim {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 100% 0;
  }
}
.sh-map-content .smm-wrap::before {
  content: "";
  background: 
    linear-gradient(rgba(99, 153, 34, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 153, 34, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, #0c3623 0, #051410 40%, #000 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  z-index: 0;
  pointer-events: none;
}
.smm-map-area svg text.smm-lbl-r1 {
  fill: #ffffff !important;
  filter: drop-shadow(0px 0px 8px rgba(239, 159, 39, 0.9));
}
.smm-map-area svg text.smm-lbl-r2 {
  fill: #ffffff !important;
  filter: drop-shadow(0px 0px 8px rgba(32, 95, 153, 0.9));
}
.sh-map-content {
  background: 0 0 !important;
}
body.sh-map-open .sh-scene:not(#sh-scene-map) {
  opacity: 0 !important;
  pointer-events: none !important;
}
/* .smm-wrap height controlled by .sh-map-content .smm-wrap above */
body.sh-map-open #sh-mobile-cta {
  z-index: 1000 !important;
}
.smm-mode-short #smm-river-short {
  opacity: 1 !important;
  stroke: #1d9e75 !important;
  stroke-width: 10px !important;
  stroke-dasharray: 400;
  animation: smmDrawShortOnly 14s ease-in-out infinite;
}
.smm-mode-short #smm-river-long {
  opacity: 0.15 !important;
  stroke: #1d4e7a !important;
}
.smm-mode-short .smm-wp:not(.smm-wp-short):not(.smm-wp-both) {
  opacity: 0.15 !important;
}
.smm-mode-long #smm-river-short {
  opacity: 1 !important;
  stroke: #1d9e75 !important;
  stroke-width: 10px !important;
  stroke-dasharray: 400;
  animation: smmDrawLongPart1 14s linear infinite;
}
.smm-mode-long #smm-river-long {
  opacity: 1 !important;
  stroke: #1d9e75 !important;
  stroke-width: 10px !important;
  stroke-dasharray: 500;
  animation: smmDrawLongPart2 14s linear infinite;
}
@keyframes smmDrawShortOnly {
  0% {
    stroke-dashoffset: 400;
  }
  28.5% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes smmDrawLongPart1 {
  0% {
    stroke-dashoffset: 400;
  }
  12.14% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes smmDrawLongPart2 {
  0% {
    stroke-dashoffset: 500;
  }
  12.14% {
    stroke-dashoffset: 500;
  }
  28.57% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.smm-wrap:not(.smm-mode-short):not(.smm-mode-long) .smm-tab {
  border-color: rgba(29, 158, 117, 0.5) !important;
}
.sh-map-content .smm-panel {
  display: flex !important;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 85%;
  max-width: 400px;
  z-index: 1001;
  background: rgba(10, 20, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-direction: column;
  gap: 12px;
}
.sh-map-content .smm-panel.smm-panel-active {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) scale(1);
}
.sh-map-content .smm-panel-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.smm-panel-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  padding-right: 20px;
}
.smm-panel-dist {
  font-size: 14px;
  color: #1d9e75;
  font-weight: 700;
}
.smm-panel-desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}
.smm-lbl[data-slug],
.smm-wp[data-slug] {
  cursor: pointer;
}
.sh-wave-anim {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sh-wave-anim span {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sh-wave-anim::after,
.sh-wave-anim::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  pointer-events: none;
}
.sh-wave-anim::before {
  border-radius: 45%;
  background: rgba(0, 198, 255, 0.5);
  animation: sh-wave 12s linear infinite;
  z-index: -1;
}
.sh-wave-anim::after {
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.1);
  animation: sh-wave 24s linear infinite;
  z-index: -1;
}
.sh-wave-anim.smm-on::after,
.sh-wave-anim.smm-on::before {
  animation-play-state: paused;
  opacity: 0.2;
}
.sh-wave-anim:hover::before {
  background: rgba(0, 198, 255, 0.8);
}
