:root {
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.36);
  --brand-blue: #1ea8ff;
  --brand-blue-dark: #0f7fd4;
  --brand-orange: #f25a2f;
  --brand-orange-dark: #d94823;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background: #000000;
  overflow-x: hidden;
}

body {
  position: relative;
}

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

img {
  max-width: 100%;
  height: auto;
}

.ambient {
  display: none;
}

.container {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
}

main.container {
  padding: 0;
}

.hero-stack {
  width: 100vw;
  min-height: 100vh;
  padding: 0;
}

.feature-panel {
  width: 100vw;
  min-height: 50vh;
  margin: 0;
  border-radius: 0;
  border-top: 1px solid rgba(30, 168, 255, 0.25);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  background: #ffffff;
  box-shadow: none;
  padding: clamp(34px, 4vw, 56px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(300px, 520px);
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.feature-panel::before {
  display: none;
}

.feature-panel::after {
  display: none;
}

.feature-panel::before,
.feature-panel::after {
  background-repeat: no-repeat;
  filter: blur(0.2px);
}

.feature-content,
.feature-gallery {
  position: relative;
  z-index: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 520px;
  width: min(100%, 520px);
  justify-self: start;
  margin-left: 0;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(30, 168, 255, 0.3);
  padding-bottom: 12px;
}

.stat-item {
  padding: 0 10px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 46px;
  background: rgba(30, 168, 255, 0.3);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: rgba(30, 168, 255, 0.12);
  border: 1px solid rgba(30, 168, 255, 0.35);
  color: var(--brand-orange);
}

.stat-icon svg {
  width: 16px;
  height: 16px;
}

.stat-label {
  display: block;
  font-size: 0.66rem;
  color: var(--brand-blue-dark);
  margin-bottom: 4px;
}

.stat-value {
  font-size: clamp(1.05rem, 2.1vw, 1.6rem);
  color: var(--brand-orange);
  line-height: 1;
}

.feature-copy {
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  line-height: 1.7;
  max-width: 52ch;
}

.feature-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  background: rgba(242, 90, 47, 0.08);
  border: 1px solid rgba(242, 90, 47, 0.38);
}

.feature-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.feature-more {
  width: auto !important;
  height: auto !important;
  margin-left: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--brand-orange) !important;
  font-size: 0.82rem;
  font-weight: 600;
}

.feature-gallery {
  position: relative;
  min-height: 320px;
  width: min(100%, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  --fan-progress: 0;
  justify-self: center;
  transform: translateX(-110px);
}

.gallery-card {
  position: absolute;
  width: clamp(120px, 15vw, 172px);
  height: clamp(176px, 22vw, 248px);
  margin: 0;
  border-radius: 16px;
  border: 2px solid var(--brand-orange);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  background: #ffffff;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card-a {
  transform: translate(
      calc(-20% + (var(--fan-progress) * -42%)),
      calc(8px + (var(--fan-progress) * 20px))
    )
    rotate(calc(-6deg + (var(--fan-progress) * -5deg)));
  z-index: 1;
  opacity: 0.88;
}

.gallery-card-b {
  transform: translate(0, 0) rotate(calc(-1deg + (var(--fan-progress) * -1deg)));
  z-index: 2;
}

.gallery-card-c {
  transform: translate(
      calc(20% + (var(--fan-progress) * 42%)),
      calc(-8px + (var(--fan-progress) * -20px))
    )
    rotate(calc(5deg + (var(--fan-progress) * 4deg)));
  z-index: 3;
}

.about-panel {
  width: 100vw;
  min-height: 50vh;
  display: grid;
  grid-template-columns: minmax(340px, 720px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(22px, 3vw, 42px) clamp(18px, 5vw, 72px) clamp(34px, 4vw, 60px);
  background: #ffffff;
  border-top: 0;
  border-bottom: 1px solid rgba(30, 168, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(30, 168, 255, 0.18);
}

.about-content {
  max-width: 680px;
  order: 2;
  justify-self: end;
}

.slide-on-scroll-right {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.slide-on-scroll-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-on-scroll-left {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.slide-on-scroll-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about-text {
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  max-width: 58ch;
}

.about-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-orange), var(--brand-orange-dark));
  color: #fff8f4;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.86rem;
}

.about-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  order: 1;
}

.about-title-wrap h2 {
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-media {
  margin: 0;
  width: min(100%, 430px);
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(242, 90, 47, 0.7);
  box-shadow: 0 18px 34px rgba(10, 36, 57, 0.22);
  background: #ffffff;
  margin-left: clamp(28px, 4vw, 52px);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
}

.destinations-section {
  width: 100vw;
  background: linear-gradient(180deg, #d9f2ff 0%, #c8ebff 100%);
  padding: clamp(36px, 4.4vw, 62px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 66px);
}

.contact-section {
  width: 100vw;
  background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
  padding: clamp(36px, 4.4vw, 62px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-section::before {
  background-image: repeating-linear-gradient(
    102deg,
    rgba(242, 90, 47, 0.18) 0px,
    rgba(242, 90, 47, 0.18) 2px,
    transparent 2px,
    transparent 22px
  );
  background-size: 120% 220%;
  animation: orangeRain 12s linear infinite;
  opacity: 0.55;
}

.contact-section::after {
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 90, 47, 0.2), transparent 36%),
    radial-gradient(circle at 85% 70%, rgba(242, 90, 47, 0.16), transparent 34%);
  animation: rainGlowShift 10s ease-in-out infinite;
}

.contact-header,
.contact-grid {
  position: relative;
  z-index: 1;
}

@keyframes orangeRain {
  0% {
    background-position: 0 -120%;
  }
  100% {
    background-position: 0 120%;
  }
}

@keyframes rainGlowShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(0, -10px, 0);
    opacity: 1;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-header h2 {
  margin: 0;
  color: var(--brand-orange);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.contact-header p {
  margin: 8px 0 0;
  color: #376585;
  font-size: 0.98rem;
}

.contact-grid {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(16px, 2.6vw, 28px);
}

.contact-form,
.contact-info {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 168, 255, 0.2);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 24px);
  box-shadow: 0 14px 24px rgba(10, 36, 57, 0.1);
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: var(--brand-blue-dark);
  font-weight: 600;
  font-size: 0.86rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(30, 168, 255, 0.28);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #1b3f59;
  background: #f8fcff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 126px;
}

.contact-submit {
  margin-top: 6px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-orange), var(--brand-orange-dark));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}

.contact-info h3 {
  margin: 0 0 10px;
  color: var(--brand-orange-dark);
  font-size: 1.3rem;
}

.contact-info p {
  margin: 0 0 14px;
  color: #305b7b;
  line-height: 1.6;
}

.contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--brand-blue-dark);
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
  font-size: 0.92rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 90, 47, 0.1);
  border: 1px solid rgba(242, 90, 47, 0.28);
  color: var(--brand-orange-dark);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-list a {
  color: var(--brand-blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-info-list a:hover {
  color: var(--brand-orange-dark);
}

.contact-whatsapp {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
}

.contact-whatsapp:hover {
  filter: brightness(1.06);
}

.destinations-header {
  text-align: center;
  margin-bottom: 18px;
}

.destinations-header h2 {
  margin: 0;
  color: var(--brand-orange);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.destinations-header p {
  margin: 6px 0 0;
  color: #376585;
  font-size: 0.95rem;
}

.destinations-shell {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(242, 90, 47, 0.3);
  border-radius: 24px;
  padding: 22px 16px 18px;
  box-shadow: 0 16px 30px rgba(17, 58, 86, 0.12);
  width: min(100%, 1080px);
  margin: 0 auto;
}

.region-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.region-pill {
  border: 1px solid rgba(242, 90, 47, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 180ms ease;
}

.region-pill.is-active {
  background: linear-gradient(145deg, var(--brand-orange), var(--brand-orange-dark));
  color: #effaff;
  border-color: transparent;
}

.region-subtitle {
  text-align: center;
  margin: 10px 0 18px;
  color: #305b7b;
  font-size: 1.1rem;
}

.destinations-row {
  display: grid;
  grid-template-columns: 44px repeat(4, minmax(0, 1fr)) 44px;
  gap: 10px;
  align-items: center;
}

.dest-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(242, 90, 47, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-orange);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.destination-card {
  position: relative;
  height: clamp(220px, 24vw, 290px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(7, 25, 39, 0.22);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 12px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 78%);
  color: #fff;
  text-align: center;
}

.destination-overlay h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.destination-overlay p {
  margin: 6px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.destinations-footer {
  border-top: 1px solid rgba(242, 90, 47, 0.2);
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dest-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dest-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(242, 90, 47, 0.25);
  cursor: pointer;
  transition: all 180ms ease;
}

.dest-dots .is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.dest-counter {
  color: var(--brand-orange-dark);
  font-weight: 600;
}

.hero-card {
  height: 100vh;
  border-radius: 0;
  border: 0;
  overflow: visible;
  position: relative;
}

.hero-front {
  background-image: url("assets/Fondo inicio.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroBackgroundRotate 12s infinite;
  color: var(--white);
  padding: clamp(22px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  isolation: auto;
  overflow: visible;
}

@keyframes heroBackgroundRotate {
  0%,
  32.99% {
    background-image: url("assets/Fondo inicio.png");
  }
  33%,
  65.99% {
    background-image: url("assets/Fondo inicio 2.png");
  }
  66%,
  100% {
    background-image: url("assets/Fondo inicio 3.png");
  }
}

.hero-front::before,
.hero-front::after {
  display: none;
}

.hero-topbar {
  width: min(1040px, calc(100vw - 24px));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 35, 56, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}

.brand {
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-right: 18px;
  flex-shrink: 0;
}

.brand-logo {
  max-width: 100%;
  max-height: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-name {
  display: none;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--brand-orange);
}

.nav {
  flex: 1;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f2f8ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.nav a {
  padding: 7px 12px;
  border-radius: 999px;
  color: #f2f8ff;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  background: rgba(30, 168, 255, 0.25);
  color: var(--brand-orange);
  transform: translateY(-1px);
}

.topbar-actions {
  min-width: 170px;
  height: 44px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(11, 41, 66, 0.82);
  border: 1px solid rgba(30, 168, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lang {
  color: #d9eeff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-dark {
  height: 32px;
  padding: 0 14px;
  background: linear-gradient(145deg, var(--brand-orange), var(--brand-orange-dark));
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff7f2;
  font-size: 0.74rem;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn-dark:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.social-mini {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f2f8ff;
  background: rgba(30, 168, 255, 0.24);
  border: 1px solid rgba(30, 168, 255, 0.45);
  flex-shrink: 0;
}

.social-mini svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-location {
  margin: 118px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: #e8f4ff;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(5rem, 13.8vw, 11.8rem);
  letter-spacing: 0.03em;
  line-height: 0.84;
  font-weight: 500;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(0.78rem, 1.35vw, 1.6rem);
  letter-spacing: 0.06em;
  color: var(--brand-orange);
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.type-on-scroll {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  border-right: 2px solid var(--brand-orange);
}

.type-on-scroll.is-typing {
  animation:
    titleTyping 1.35s steps(var(--chars, 24), end) forwards,
    titleCaret 0.75s step-end infinite;
}

.type-on-scroll.is-typed {
  max-width: 100%;
  border-right-color: transparent;
}

@keyframes titleTyping {
  from {
    max-width: 0;
  }
  to {
    max-width: 100%;
  }
}

@keyframes titleCaret {
  0%,
  49% {
    border-right-color: var(--brand-orange);
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}

.hero-copy {
  margin: auto 0 0 0;
  transform: translateY(14px);
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  font-weight: 700;
  color: #fff7f1;
  max-width: min(92vw, 760px);
}

.hero-copy span {
  font-family: "Satisfy", cursive;
  font-size: 0.8em;
  font-weight: 400;
  color: var(--brand-orange);
}

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

.btn-primary {
  height: 34px;
  padding: 0 14px;
  border-color: rgba(30, 168, 255, 0.55);
  color: #eaf6ff;
  background: linear-gradient(145deg, rgba(30, 168, 255, 0.22), rgba(15, 127, 212, 0.24));
  font-size: 0.72rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.site-footer {
  width: 100vw;
  background: linear-gradient(180deg, #f57a3c 0%, #e65e2d 100%);
  color: #ffffff;
  padding: clamp(34px, 4vw, 48px) clamp(18px, 6vw, 92px) 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(250px, 1.3fr) minmax(140px, 0.7fr) minmax(
      170px,
      0.8fr
    );
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  align-items: flex-start;
}

.footer-brand-block img {
  width: min(100%, 140px);
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16));
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 1.03rem;
  color: #ffffff;
  position: relative;
  width: fit-content;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 5px;
  background: rgba(155, 232, 255, 0.95);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.93rem;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.4;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: rgba(155, 232, 255, 0.98);
  flex-shrink: 0;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-list a:hover,
.footer-links-nav a:hover {
  opacity: 0.86;
}

.footer-links-nav {
  display: grid;
  gap: 8px;
}

.footer-links-nav a {
  width: fit-content;
  font-size: 0.93rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(155, 232, 255, 0.98);
  border: 1px solid rgba(155, 232, 255, 0.9);
  background: transparent;
  transition: transform 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  background: rgba(155, 232, 255, 0.16);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer-bottom {
  width: min(100%, 1180px);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-credit {
  margin-top: 6px !important;
  font-size: 0.84rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer-credit a {
  color: rgba(155, 232, 255, 0.98);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-credit a:hover {
  opacity: 0.86;
}

.social-float {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #101828;
  display: grid;
  place-items: center;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
    padding: 34px 18px 36px;
    min-height: auto;
  }

  .feature-content {
    justify-self: start;
    margin-left: 0;
  }

  .feature-stats {
    grid-template-columns: 1fr;
    border-bottom: 0;
    padding-bottom: 0;
    gap: 8px;
  }

  .stat-item {
    border-radius: 10px;
    border: 1px solid rgba(30, 168, 255, 0.24);
    background: rgba(30, 168, 255, 0.08);
    padding: 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-gallery {
    min-height: 240px;
    justify-self: center;
    transform: translateX(-36px);
  }

  .gallery-card {
    width: 124px;
    height: 172px;
  }

  .gallery-card-a {
    transform: translate(
        calc(-24% + (var(--fan-progress) * -18%)),
        calc(10px + (var(--fan-progress) * 8px))
      )
      rotate(calc(-5deg + (var(--fan-progress) * -3deg)));
  }

  .gallery-card-b {
    transform: translateX(0) rotate(calc(-1deg + (var(--fan-progress) * -1deg)));
  }

  .gallery-card-c {
    transform: translate(
        calc(24% + (var(--fan-progress) * 18%)),
        calc(-8px + (var(--fan-progress) * -8px))
      )
      rotate(calc(4deg + (var(--fan-progress) * 4deg)));
  }

  .hero-topbar {
    width: 100%;
    border-radius: 22px;
    flex-wrap: wrap;
    justify-content: center;
    top: 8px;
  }

  .nav {
    width: 100%;
    min-height: 44px;
    gap: 6px;
    padding: 0 8px;
  }

  .brand,
  .topbar-actions {
    min-width: 0;
    width: 100%;
    border-radius: 999px;
  }

  .brand {
    height: auto;
    margin-right: 0;
  }

  .brand-logo {
    max-height: 64px;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 30px 18px 38px;
  }

  .about-title-wrap {
    justify-content: flex-start;
    order: -1;
    align-items: flex-start;
  }

  .about-title-wrap h2 {
    text-align: left;
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
    white-space: normal;
  }

  .about-title-wrap .type-on-scroll {
    white-space: normal;
    max-width: 100%;
    border-right-width: 0;
  }

  .about-title-wrap .type-on-scroll.is-typing,
  .about-title-wrap .type-on-scroll.is-typed {
    animation: none;
  }

  .about-content {
    order: 0;
    justify-self: start;
  }

  .about-media {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .destinations-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dest-nav {
    display: none;
  }

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

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination-card {
    height: 210px;
  }

  .destination-overlay h3 {
    font-size: 1.7rem;
  }

  .destination-overlay p {
    font-size: 0.94rem;
  }
}

@media (max-width: 1200px) {
  .hero-topbar {
    width: min(980px, calc(100vw - 20px));
    gap: 12px;
    padding: 8px 10px;
  }

  .brand-logo {
    max-height: 68px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .topbar-actions {
    min-width: 150px;
    height: 40px;
  }

  .about-panel {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .about-title-wrap h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .hero-front {
    padding: 14px;
  }

  .hero-location {
    margin-top: 138px;
    font-size: 0.74rem;
  }

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

  .hero-copy {
    font-size: clamp(0.96rem, 5.2vw, 1.2rem);
    max-width: 100%;
  }

  .btn-primary,
  .btn-dark {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .feature-links {
    flex-wrap: wrap;
  }

  .feature-links a {
    width: 42px;
    height: 42px;
  }

  .feature-links svg {
    width: 18px;
    height: 18px;
  }

  .destinations-section {
    padding: 30px 14px 40px;
  }

  .contact-section {
    padding: 30px 14px 40px;
  }

  .contact-section::before {
    opacity: 0.38;
    background-image: repeating-linear-gradient(
      102deg,
      rgba(242, 90, 47, 0.14) 0px,
      rgba(242, 90, 47, 0.14) 2px,
      transparent 2px,
      transparent 20px
    );
  }

  .destinations-shell {
    padding: 16px 10px 14px;
    border-radius: 16px;
  }

  .region-subtitle {
    font-size: 0.95rem;
  }

  .destination-card {
    height: 190px;
  }

  .destinations-footer {
    gap: 12px;
  }

  .site-footer {
    padding: 28px 14px 14px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand-block img {
    width: 118px;
  }

  .site-footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
  }

  .site-footer-bottom p {
    font-size: 0.8rem;
  }

  .site-footer-credit {
    margin-top: 4px !important;
    font-size: 0.76rem !important;
  }
}
