:root {
  --bg: #edf2fb;
  --surface: #ffffff;
  --card: #ffffff;
  --wash: #e2eafc;
  --mist: #d7e3fc;
  --brand: #b6ccfe;
  --brand-mid: #c1d3fe;
  --brand-dark: #abc4ff;
  --accent: #ccdbfd;
  --text: #17233f;
  --muted: #51627f;
  --line: #c1d3fe;
  --ok: #1c8856;
  --warn: #c47e12;
  --danger: #b84040;
  --radius: 12px;
  --shadow: 0 18px 42px rgba(80, 111, 174, 0.16);
  --shadow-soft: 0 8px 24px rgba(80, 111, 174, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(226, 234, 252, 0.72), transparent 34%),
    radial-gradient(circle at 20% 10%, rgba(215, 227, 252, 0.8), transparent 32%),
    radial-gradient(circle at 82% 88%, rgba(171, 196, 255, 0.34), transparent 30%),
    var(--bg);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: #fff;
  border: 1px solid #ccd7e0;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 40;
}

.skip-link:focus {
  left: 12px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(rgba(237, 242, 251, 0.9), rgba(237, 242, 251, 0.9)),
    url("/assets/wot_photos.jpg") center/cover no-repeat;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(171, 196, 255, 0.5);
  animation: header-pan 16s ease-in-out infinite alternate;
}

.has-top-info-bar .site-header {
  top: var(--top-info-bar-height, 0px);
}

.has-top-info-bar .site-nav-shell {
  top: var(--top-info-bar-height, 0px);
}

.top-info-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #17233f;
  color: #ffffff;
  border-bottom: 1px solid rgba(171, 196, 255, 0.38);
}

.top-info-label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: #17233f;
  color: #c1d3fe;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 12px 0 18px rgba(23, 35, 63, 0.86);
}

.top-info-ticker {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding-right: 58px;
}

.top-info-track {
  display: flex;
  width: max-content;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  animation: top-info-marquee 34s linear infinite;
}

.top-info-message-set {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 42px;
  padding-right: 42px;
}

.top-info-message {
  display: inline-flex;
  align-items: center;
}

.top-info-message::after {
  content: "/";
  margin-left: 42px;
  color: #abc4ff;
  opacity: 0.78;
}

.top-info-close {
  position: absolute;
  right: 8px;
  top: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.top-info-close:hover {
  background: rgba(193, 211, 254, 0.28);
}

.top-info-close svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

@keyframes top-info-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-logo {
  width: 168px;
  height: 40px;
  display: inline-block;
  background: url("/assets/logo.svg") center/contain no-repeat;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.brand-text {
  color: var(--text);
  text-shadow: none;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
  background: rgba(193, 211, 254, 0.55);
}

.nav a.active {
  box-shadow: inset 0 0 0 1px rgba(171, 196, 255, 0.72);
}

.hero {
  padding: 78px 0 58px;
  position: relative;
}

.hero-with-photo {
  background: url("/assets/wot_photos.jpg") center/cover no-repeat;
}

.hero-with-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(23, 35, 63, 0.64), rgba(23, 35, 63, 0.76));
  z-index: 0;
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  color: #f7fbff;
  animation: fade-up 0.7s ease both;
}

.hero p {
  color: #dbecf8;
  font-size: 1.06rem;
  max-width: 62ch;
  animation: fade-up 0.9s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--brand-mid), var(--brand-dark));
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid var(--brand);
  color: var(--text);
  background: rgba(237, 242, 251, 0.75);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid rgba(171, 196, 255, 0.54);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(80, 111, 174, 0.17);
}

.hero-image {
  min-height: 320px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(9, 72, 102, 0.35), rgba(9, 72, 102, 0.45)),
    url("https://images.unsplash.com/photo-1519181245277-cffeb31da2e3?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  animation: float-card 6s ease-in-out infinite;
}

.section {
  padding: 52px 0;
  animation: fade-up 0.65s ease both;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 1.7rem;
}

.section p.lead {
  margin: 0 0 26px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0;
}

.price small {
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 500;
}

.cruise-offer-card {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.cruise-offer-card .price,
.cruise-offer-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.cruise-offer-card .badge {
  display: flex;
  width: max-content;
  max-width: calc(100% - 36px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateY(-50%);
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 22px rgba(80, 111, 174, 0.18);
}

.cruise-offer-card .price {
  margin-top: -2px;
}

.cruise-offer-card p:last-child {
  margin-bottom: 18px;
}

.cruise-offer-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(193, 211, 254, 1);
  color: #24365f;
}

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
}

.reviews-section {
  background:
    radial-gradient(circle at 0% 30%, rgba(204, 219, 253, 0.38), transparent 24%),
    radial-gradient(circle at 100% 70%, rgba(171, 196, 255, 0.24), transparent 22%),
    #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(171, 196, 255, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #edf2fb 100%);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-score {
  width: max-content;
  border-radius: 999px;
  background: rgba(193, 211, 254, 1);
  color: var(--text);
  font-weight: 900;
  padding: 7px 14px;
}

.review-stars {
  color: #d9a407;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.review-star {
  width: 19px;
  height: 19px;
  display: block;
}

.review-star-outline {
  fill: none;
  stroke: #d9a407;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.review-star-fill {
  fill: #d9a407;
  stroke: none;
}

.review-star.is-empty .review-star-fill {
  display: none;
}

.review-star.is-half .review-star-fill {
  clip-path: inset(0 50% 0 0);
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.review-card strong {
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews-google-link {
  min-height: 44px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.reviews-btn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(171, 196, 255, 0.72);
  border-radius: 999px;
  background: rgba(237, 242, 251, 0.92);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.reviews-btn:hover {
  background: rgba(193, 211, 254, 1);
  box-shadow: 0 10px 24px rgba(80, 111, 174, 0.18);
}

.reviews-btn svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-counter {
  min-width: 60px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(237, 242, 251, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.faq-counter {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(171, 196, 255, 0.7);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0 16px;
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(171, 196, 255, 0.58);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(193, 211, 254, 0.76);
  color: var(--muted);
  line-height: 1.6;
  padding: 0 18px 18px;
}

.faq-toggle {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(193, 211, 254, 1);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-more-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(193, 211, 254, 1);
  color: var(--text);
  font-weight: 900;
  padding: 0 22px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.faq-more-btn:hover {
  background: #abc4ff;
}

.faq-more-btn[hidden] {
  display: none;
}

.faq-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.gallery-carousel-wrap {
  width: 100%;
}

.gallery-carousel {
  --visible-count: 5;
  --slide-target-width: 376px;
  position: relative;
  overflow: hidden;
  width: min(100vw, 1880px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gallery-carousel-viewport {
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.42s ease;
  will-change: transform;
}

.gallery-carousel-track.is-resetting {
  transition: none;
}

.gallery-carousel-slide {
  flex: 0 0 min(var(--slide-target-width), calc(100% / var(--visible-count)));
  margin: 0;
  min-width: 0;
}

.gallery-carousel-slide img {
  display: block;
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 0;
}

.gallery-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(237, 242, 251, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 35, 63, 0.2);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-carousel-btn:hover {
  background: rgba(193, 211, 254, 1);
  box-shadow: 0 14px 30px rgba(23, 35, 63, 0.24);
}

.gallery-carousel-btn svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.gallery-carousel-prev {
  left: 14px;
  transform: translateY(-50%);
}

.gallery-carousel-next {
  right: 14px;
  transform: translateY(-50%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-flow-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(237, 242, 251, 0.86);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 12px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.flow-pill.active {
  border-color: rgba(171, 196, 255, 0.95);
  background: rgba(171, 196, 255, 0.32);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(171, 196, 255, 0.24);
}

.flow-pill.done {
  border-color: rgba(193, 211, 254, 0.95);
  background: rgba(193, 211, 254, 0.42);
  color: #33466f;
}

.booking-step-panel {
  margin-top: 10px;
}

.booking-step-reveal {
  animation: booking-step-in 0.34s ease both;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 13px;
}

label {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

input,
textarea,
select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(171, 196, 255, 0.8);
  outline-offset: 2px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slot.selected {
  background: linear-gradient(120deg, var(--brand-mid), var(--brand-dark));
  border-color: var(--brand-dark);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(80, 111, 174, 0.24);
}

.slot.full {
  border-color: rgba(184, 64, 64, 0.6);
  background: rgba(184, 64, 64, 0.14);
  color: #8f2f2f;
  cursor: not-allowed;
}

.slot.slot-low {
  border-color: rgba(184, 64, 64, 0.45);
  background: rgba(184, 64, 64, 0.08);
}

.slot.slot-medium {
  border-color: rgba(196, 126, 18, 0.45);
  background: rgba(196, 126, 18, 0.08);
}

.slot.slot-high {
  border-color: rgba(28, 136, 86, 0.4);
  background: rgba(28, 136, 86, 0.08);
}

.p24-payment-methods {
  margin-top: 16px;
  border: 1px solid rgba(171, 196, 255, 0.62);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(237, 242, 251, 0.78), rgba(255, 255, 255, 0.96));
  padding: 14px;
}

.p24-methods-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.p24-methods-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.p24-methods-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.p24-method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 8px;
}

.p24-method-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 42px minmax(0, 1fr);
  min-height: 64px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(171, 196, 255, 0.64);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.p24-method-option:hover,
.p24-method-option:has(input:checked) {
  border-color: #abc4ff;
  background: rgba(237, 242, 251, 0.86);
  box-shadow: 0 10px 22px rgba(80, 111, 174, 0.13);
}

.p24-method-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
}

.p24-method-option img {
  max-width: 42px;
  max-height: 30px;
  object-fit: contain;
}

.p24-method-option-default {
  grid-template-columns: 20px minmax(0, 1fr);
}

.p24-method-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.p24-method-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p24-method-copy small,
.p24-method-status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.p24-method-status {
  grid-column: 1 / -1;
  border: 1px dashed rgba(171, 196, 255, 0.62);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.p24-regulation-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.p24-regulation-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.p24-regulation-consent a {
  color: #33466f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.day {
  appearance: none;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  font-size: 0.86rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.22s ease, border-color 0.2s ease, background 0.2s ease;
  color: var(--text);
  font: inherit;
}

.day:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(80, 111, 174, 0.12);
}

.day.open {
  border-color: rgba(28, 136, 86, 0.45);
  background: rgba(28, 136, 86, 0.08);
}

.day.limited {
  border-color: rgba(196, 126, 18, 0.45);
  background: rgba(196, 126, 18, 0.1);
}

.day.full {
  border-color: rgba(184, 64, 64, 0.6);
  background: rgba(184, 64, 64, 0.14);
  color: #8f2f2f;
}

.day.off {
  border-color: rgba(95, 111, 124, 0.3);
  color: var(--muted);
}

.day.selected {
  outline: 2px solid var(--brand-dark);
  outline-offset: 1px;
  box-shadow: 0 8px 16px rgba(80, 111, 174, 0.18);
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.legend-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
}

.legend-open {
  background: rgba(28, 136, 86, 0.5);
}

.legend-limited {
  background: rgba(196, 126, 18, 0.5);
}

.legend-full {
  background: rgba(184, 64, 64, 0.65);
}

.status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
}

.status.ok {
  display: block;
  background: rgba(28, 136, 86, 0.1);
  color: var(--ok);
}

.status.warn {
  display: block;
  background: rgba(196, 126, 18, 0.13);
  color: var(--warn);
}

.status.err {
  display: block;
  background: rgba(184, 64, 64, 0.12);
  color: var(--danger);
}

#routeMap {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}

.route-map-shell {
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: var(--radius);
}

.route-map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.route-illustration {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(171, 196, 255, 0.64);
  box-shadow: var(--shadow);
  display: block;
}

.poi-popup {
  width: 220px;
}

.poi-popup img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
}

.poi-popup strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.poi-popup span {
  color: #4b5563;
  font-size: 0.82rem;
}

.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 8, 23, 0.86);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  background: rgba(15, 23, 42, 0.65);
}

.lightbox-image {
  max-width: min(1180px, 96vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin-top: 10px;
  color: #dbeafe;
  font-size: 0.94rem;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: #eef3f7;
}

.hidden {
  display: none;
}

.payment-actions {
  margin-top: 14px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.admin-tab {
  border: 1px solid var(--line);
  background: rgba(237, 242, 251, 0.92);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.admin-tab.is-active {
  background: linear-gradient(120deg, var(--brand-mid), var(--brand-dark));
  color: var(--text);
  border-color: transparent;
}

.admin-tab-panel h5 {
  margin: 14px 0 10px;
  font-size: 1.05rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(193, 211, 254, 0.62);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.admin-table th {
  background: var(--wash);
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table input,
.admin-table select,
.admin-table textarea {
  min-width: 110px;
}

.admin-table textarea {
  min-width: 320px;
  min-height: 88px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.58);
}

.admin-modal.hidden {
  display: none;
}

.admin-modal-panel {
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  overflow: hidden;
  border: 1px solid rgba(171, 196, 255, 0.52);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.admin-modal-body {
  max-height: calc(86vh - 68px);
  overflow-y: auto;
  padding: 20px;
}

.admin-modal-close {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(171, 196, 255, 0.62);
  border-radius: 999px;
  background: #edf2fb;
  color: #1f2937;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.admin-modal-close:hover {
  background: #d7e3fc;
}

.admin-gallery-thumb {
  width: 104px;
  height: 62px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(171, 196, 255, 0.58);
}

.site-footer {
  margin-top: 50px;
  border-top: 1px solid rgba(171, 196, 255, 0.54);
  padding: 26px 0 34px;
  color: var(--muted);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes booking-step-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes header-pan {
  from {
    background-position: center top;
  }
  to {
    background-position: center 14%;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-grid,
  .gallery-grid,
  .reviews-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-carousel {
    --visible-count: 3;
  }

  .brand-logo {
    width: 120px;
    height: 30px;
  }

  .brand-text {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .gallery-carousel {
    --visible-count: 1;
  }

  .gallery-carousel-slide img {
    height: 224px;
  }
}

/* UI/UX Pro refresh */
.site-shell {
  background:
    radial-gradient(circle at 8% 0%, rgba(171, 196, 255, 0.34), transparent 26%),
    radial-gradient(circle at 94% 4%, rgba(204, 219, 253, 0.48), transparent 22%),
    linear-gradient(180deg, #edf2fb 0%, #f7faff 46%, #edf2fb 100%);
}

.site-nav-shell {
  background: rgba(237, 242, 251, 0.86) !important;
  border-bottom: 1px solid rgba(171, 196, 255, 0.58) !important;
  box-shadow: 0 10px 28px rgba(80, 111, 174, 0.14);
}

.site-nav-shell a,
.site-nav-shell nav {
  color: var(--text) !important;
}

.site-nav-shell .text-white {
  color: var(--text) !important;
}

.site-nav-shell nav a {
  border-radius: 999px;
  padding: 8px 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav-shell nav a:hover,
.site-nav-shell nav a.active {
  background: rgba(193, 211, 254, 0.68);
  color: #17233f !important;
}

.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 210px;
  background: radial-gradient(65% 90% at 50% 0%, rgba(171, 196, 255, 0.34), transparent 70%);
  pointer-events: none;
}

.hero-copy > * {
  animation: fade-up 0.65s ease both;
}

.hero-kpi {
  border: 1px solid rgba(226, 234, 252, 0.54);
  background: rgba(226, 234, 252, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  backdrop-filter: blur(6px);
}

.hero-kpi span {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

.hero-kpi p {
  margin: 4px 0 0;
  color: #dceaf7;
  font-size: 0.77rem;
  line-height: 1.35;
}

.hero-feature-card {
  box-shadow: 0 20px 40px rgba(23, 35, 63, 0.22);
  border-radius: var(--radius) !important;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b6ccfe, #abc4ff);
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: 10% -9% auto;
  height: 180px;
  background: radial-gradient(50% 80% at 50% 50%, rgba(171, 196, 255, 0.22), transparent 72%);
  pointer-events: none;
}

.booking-section-shell {
  background:
    radial-gradient(circle at 0% 50%, rgba(204, 219, 253, 0.4), transparent 22%),
    radial-gradient(circle at 100% 52%, rgba(171, 196, 255, 0.26), transparent 20%),
    #ffffff;
}

.booking-panel {
  background: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(171, 196, 255, 0.62) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.booking-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.booking-panel-calendar {
  border-top: 4px solid #b6ccfe;
}

.booking-panel-form {
  border-top: 4px solid #abc4ff;
}

.card.cruise-offer-card {
  border: 1px solid rgba(171, 196, 255, 0.58);
  background: linear-gradient(180deg, #ffffff 0%, #edf2fb 100%);
}

.card.cruise-offer-card .price {
  color: var(--text);
}

.card.cruise-offer-card .badge {
  border: 1px solid rgba(171, 196, 255, 0.58);
}

.gallery-shell img {
  box-shadow: 0 14px 22px rgba(80, 111, 174, 0.18);
  border: 1px solid rgba(193, 211, 254, 0.5);
}

.gallery-shell img:hover {
  transform: translateY(-3px) scale(1.01);
}

.gallery-shell .gallery-carousel-slide img {
  border: 0;
  box-shadow: none;
}

.gallery-shell .gallery-carousel-slide img:hover {
  transform: none;
}

.contact-shell {
  border-radius: var(--radius) !important;
  border-color: rgba(171, 196, 255, 0.58) !important;
  box-shadow: var(--shadow-soft);
}

.footer-shell {
  background:
    radial-gradient(circle at 15% -5%, rgba(193, 211, 254, 0.35), transparent 25%),
    radial-gradient(circle at 90% 0%, rgba(171, 196, 255, 0.28), transparent 24%),
    #17233f;
}

.site-footer.footer-shell {
  margin-top: 64px;
  border-top: 1px solid rgba(171, 196, 255, 0.38);
  padding: 42px 0 48px;
  color: #edf2fb;
}

.footer-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(80px, 0.45fr) minmax(150px, 0.65fr) minmax(220px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.footer-brand-block,
.footer-spacer-column,
.footer-nav-block,
.footer-contact-block {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(280px, 100%);
  min-height: 70px;
  margin-bottom: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(193, 211, 254, 0.75);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(5, 14, 35, 0.18);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-brand-block address {
  margin: 0;
  color: #d7e3fc;
  font-style: normal;
  line-height: 1.72;
}

.footer-nav-block,
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-block a,
.footer-contact-block a {
  width: max-content;
  max-width: 100%;
  color: #d7e3fc;
  font-size: 0.96rem;
  line-height: 1.35;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-nav-block a:hover,
.footer-contact-block a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin: 2px 0 6px;
}

.footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px;
  border: 1px solid rgba(171, 196, 255, 0.72);
  border-radius: 50%;
  background: rgba(237, 242, 251, 0.1);
  color: #ffffff !important;
  transform: none !important;
}

.footer-social-link:hover {
  background: #abc4ff;
  color: #17233f !important;
}

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

@media (max-width: 780px) {
  .site-footer.footer-shell {
    padding: 34px 0 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-logo-link {
    width: min(260px, 100%);
    min-height: 64px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav-block,
  .footer-contact-block {
    align-items: center;
  }

  .footer-nav-block a,
  .footer-contact-block a {
    width: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

.admin-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(171, 196, 255, 0.35), transparent 25%),
    linear-gradient(180deg, #edf2fb, #f7faff 54%, #edf2fb);
  color: var(--text);
}

.palette-surface,
.admin-shell section,
.admin-shell .admin-table,
.admin-shell #ticketDownloadList {
  border-color: rgba(171, 196, 255, 0.58) !important;
  box-shadow: var(--shadow-soft);
}

.bg-violet-300,
.hover\:bg-violet-400:hover,
.bg-sky-100,
.bg-violet-200,
.bg-violet-200\/90 {
  background: linear-gradient(120deg, #c1d3fe, #abc4ff) !important;
  color: var(--text) !important;
}

.text-violet-900,
.text-sky-900,
.text-emerald-800,
.hover\:text-violet-300:hover {
  color: var(--text) !important;
}

.border-violet-300,
.border-emerald-300 {
  border-color: #abc4ff !important;
}

.bg-violet-50,
.bg-emerald-50 {
  background: rgba(226, 234, 252, 0.78) !important;
}

.text-slate-600,
.text-slate-700,
.text-slate-500 {
  color: var(--muted) !important;
}

.border-slate-200,
.border-slate-300,
.border-slate-600 {
  border-color: rgba(171, 196, 255, 0.58) !important;
}

.bg-slate-50,
.bg-slate-100 {
  background: rgba(237, 242, 251, 0.72) !important;
}

@media (max-width: 640px) {
  .hero-kpi {
    padding: 10px 12px;
  }

  .hero-kpi span {
    font-size: 0.95rem;
  }
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.spinner-dark {
  border-color: rgba(188, 204, 254, 0.3);
  border-top-color: var(--brand);
}

.spinner-sm {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.btn-loading::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s ease-in-out infinite;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(2px);
}

.loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

.loading-overlay-text {
  margin-top: 12px;
  font-weight: 600;
  color: var(--brand);
}
