:root {
  --primary: #24b5ea;
  --primary-dark: #0f7fa8;
  --text: #0d0d0d;
  --muted: #707b87;
  --surface: #f3f7fb;
  --border: rgba(16, 34, 48, 0.08);
  --footer: #0b0b0b;
  --container: min(1216px, calc(100vw - 64px));
  --shadow-soft: 0 24px 60px rgba(13, 32, 47, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

.image-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18) 8%, rgba(255, 255, 255, 0.5) 18%, rgba(255, 255, 255, 0.18) 33%),
    linear-gradient(180deg, #dce8ef, #edf4f8);
  background-size: 200% 100%, 100% 100%;
  animation: imageLoaderShift 1.2s linear infinite;
}

.image-loader {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.managed-image {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.image-shell.is-loaded {
  animation: none;
  background: #e9f1f6;
}

.image-shell.is-loaded .managed-image {
  opacity: 1;
}

.image-shell.is-error {
  background:
    linear-gradient(180deg, #eef4f7, #e5edf2);
}

@keyframes imageLoaderShift {
  0% {
    background-position: 200% 0, 0 0;
  }

  100% {
    background-position: -200% 0, 0 0;
  }
}

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 38, 52, 0.06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand img {
  width: 74px;
  height: auto;
  object-fit: contain;
}

.brand span {
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.95rem;
  color: #141f29;
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(36, 181, 234, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #eff6fb;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #173244;
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  background: #09131a;
}

.hero-slider,
.slide {
  min-height: calc(100vh - 82px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.slide-bg.is-loading {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.1) 8%, rgba(255, 255, 255, 0.26) 18%, rgba(255, 255, 255, 0.1) 33%),
    linear-gradient(180deg, #203745, #13242f);
  background-size: 200% 100%, 100% 100%;
  animation: imageLoaderShift 1.35s linear infinite;
}

.slide-overlay {
  background:
    linear-gradient(90deg, rgba(11, 17, 22, 0.58) 0%, rgba(11, 17, 22, 0.18) 43%, rgba(234, 190, 69, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 18, 23, 0.1) 0%, rgba(9, 18, 23, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  min-height: calc(100vh - 82px);
  padding-top: 140px;
}

.hero-copy {
  max-width: 920px;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-primary-button,
.hero-secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-primary-button {
  background: #ffffff;
  color: #132633;
  box-shadow: 0 18px 40px rgba(10, 18, 24, 0.22);
}

.hero-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-primary-button:hover,
.hero-secondary-button:hover {
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  max-width: 13.4ch;
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-ui {
  position: absolute;
  inset: auto 0 34px 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}

.slider-dots,
.explore-link {
  pointer-events: auto;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 48px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active {
  background: #ffffff;
  transform: scaleX(1.06);
}

.explore-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.explore-link svg {
  width: 18px;
  height: 18px;
}

.tours-section {
  background: #f7fbff;
  padding: 84px 0 94px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-label {
  margin: 0 0 10px;
  color: #38a5ff;
  font-size: 0.84rem;
  letter-spacing: 0.26em;
}

.section-head h2,
.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-head a {
  color: #38a5ff;
  font-size: 0.95rem;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}

.tour-card {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.tour-card .image-shell,
.tour-card img,
.card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-card img {
  object-fit: cover;
}

.card-gradient {
  background: linear-gradient(180deg, rgba(6, 17, 28, 0.02) 10%, rgba(7, 18, 27, 0.7) 100%);
}

.tour-card-large {
  grid-row: span 2;
  min-height: 660px;
}

.tour-card-wide {
  grid-column: 2 / 4;
  min-height: 322px;
}

.card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 24px;
  color: #ffffff;
}

.card-content.compact {
  padding: 22px 18px 20px;
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.tag-primary,
.tag-muted {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.67rem;
  font-weight: 700;
}

.tag-primary {
  background: #1ab6ea;
}

.tag-muted {
  background: rgba(255, 255, 255, 0.16);
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.tour-card-large .card-content h3 {
  font-size: 2rem;
}

.empty-public-block {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(16, 34, 48, 0.08);
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
  color: #5b6875;
  text-align: center;
  font-weight: 600;
}

.card-content p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-content strong {
  font-size: 1.05rem;
}

.inner-page {
  background: #f8fbff;
}

.tour-list-hero,
.detail-hero {
  padding: 54px 0 24px;
}

.list-headline,
.detail-topline,
.detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.list-headline h1,
.detail-heading h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.list-headline p {
  margin: 14px 0 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.8;
}

.list-count {
  min-width: 164px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f1c25, #203847);
  color: #ffffff;
}

.list-count strong {
  display: block;
  font-size: 2rem;
}

.list-count span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.filter-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-bar label,
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-bar span,
.booking-form span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #688095;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-bar input,
.filter-bar select,
.booking-form input,
.booking-form select {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid #dbe6ee;
  background: #f7fbff;
  color: #182833;
  outline: none;
}

.tour-list-section,
.detail-content {
  padding: 18px 0 96px;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1596466596120-2a8e4b5f2d1b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.contact-hero-overlay {
  background: rgba(245, 251, 255, 0.78);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 0;
}

.contact-hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
}

.contact-hero-content p {
  max-width: 720px;
  margin: 0 auto;
  color: #384955;
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-cards-section {
  padding: 22px 0 34px;
}

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

.contact-card {
  padding: 34px 28px 30px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 40, 54, 0.08);
  box-shadow: 0 18px 42px rgba(19, 41, 56, 0.05);
  text-align: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #f0f7fc;
}

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

.contact-card h2 {
  margin: 0 0 12px;
  font-size: 1.95rem;
  letter-spacing: -0.05em;
}

.contact-card p {
  margin: 0;
  color: #4d5e6b;
  line-height: 1.8;
}

.contact-main-section {
  padding: 16px 0 48px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.map-showcase {
  position: relative;
  min-height: 490px;
  padding: 42px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #191919, #2d2d2d);
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(17, 24, 29, 0.18);
}

.map-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 48% 52%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 8px, transparent 8px, transparent 18px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.map-device {
  position: relative;
  z-index: 1;
  width: min(270px, 100%);
  height: 350px;
  margin: 34px auto 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(160deg, #3a3a3a, #171717);
  border: 7px solid #202020;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 18px 46px rgba(0, 0, 0, 0.4);
}

.map-device::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 92px;
  height: 14px;
  border-radius: 999px;
  background: #161616;
  transform: translateX(-50%);
}

.map-bubble {
  position: absolute;
  top: 108px;
  left: 34px;
  z-index: 1;
  padding: 10px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: #20252a;
  box-shadow: 0 12px 26px rgba(14, 20, 27, 0.18);
}

.map-pin {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -30%);
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: #232323;
  rotate: -45deg;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.map-pin span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f3f3f3;
  transform: translate(-50%, -50%);
}

.map-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  z-index: 1;
}

.map-zoom button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 1.45rem;
  line-height: 1;
}

.contact-form-card {
  padding: 40px 38px;
  border-radius: 18px;
  background: #f4f4f4;
}

.contact-form-card h2 {
  margin: 0 0 26px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.contact-form,
.contact-form label {
  display: flex;
  flex-direction: column;
}

.contact-form {
  gap: 18px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfe0ea;
  border-radius: 10px;
  background: #ffffff;
  padding: 15px 14px;
  color: #1b2a35;
  outline: none;
}

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

.contact-captcha-wrap {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact-captcha-hint {
  margin: 0;
  font-size: 0.84rem;
  color: #60717f;
}

.contact-captcha-error {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #d92d20;
}

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

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  line-height: 1.7;
}

.contact-phone-link svg {
  width: 20px;
  height: 20px;
  color: #1fbf61;
  flex: 0 0 auto;
}

.contact-submit {
  width: 120px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contact-footer {
  padding-top: 26px;
}

.footer-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 42px;
}

.footer-topbar-left,
.footer-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-top-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(36, 181, 234, 0.16);
  color: var(--primary);
}

.footer-top-icon svg {
  width: 22px;
  height: 22px;
}

.footer-topbar-left strong {
  display: block;
  margin-bottom: 4px;
}

.footer-topbar-left p,
.footer-topbar-right span {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-topbar-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-topbar-right a {
  color: var(--primary);
  font-weight: 700;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-whatsapp-link svg {
  width: 20px;
  height: 20px;
}

.list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.list-meta p {
  margin: 0;
  color: #53616d;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e7f0;
  color: #496071;
  font-size: 0.84rem;
}

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

.listing-card,
.content-card,
.booking-card {
  background: #ffffff;
  border: 1px solid rgba(15, 37, 51, 0.08);
  box-shadow: 0 18px 44px rgba(15, 36, 53, 0.06);
}

.listing-card {
  border-radius: 24px;
  overflow: hidden;
}

.listing-card.hidden {
  display: none;
}

.listing-image {
  position: relative;
  display: block;
  aspect-ratio: 1.35 / 1;
}

.listing-image .image-shell,
.related-card .image-shell,
.gallery-main .image-shell,
.gallery-side .image-shell,
.timeline-item .image-shell,
.listing-image img,
.related-card img,
.gallery-main img,
.gallery-side img,
.timeline-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  background: #22c2f2;
}

.listing-badge.purple {
  background: #7f45c8;
}

.listing-badge.dark {
  background: #1b2024;
}

.listing-badge.blue {
  background: #20b7ea;
}

.listing-badge.teal {
  background: #30bfc0;
}

.listing-body {
  padding: 22px;
}

.listing-title-row,
.listing-footer,
.booking-summary div,
.detail-facts,
.payment-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-title-row h3,
.timeline-item h3,
.related-card h3,
.booking-card h2,
.content-card h2 {
  margin: 0;
}

.listing-title-row span {
  color: #26b7eb;
  font-weight: 700;
}

.listing-body p,
.timeline-item p,
.footer-news-copy {
  color: #667783;
  line-height: 1.75;
}

.listing-footer {
  margin-top: 22px;
}

.listing-footer small {
  display: block;
  color: #91a4b4;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.listing-footer strong,
.related-card strong {
  color: var(--primary);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #a8dff3;
  color: var(--primary);
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.page-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #738695;
  box-shadow: 0 10px 24px rgba(25, 51, 65, 0.06);
}

.page-dot.active {
  background: var(--primary);
  color: #ffffff;
}

.page-dot.muted {
  background: #eef4f9;
}

.detail-topline {
  margin-bottom: 12px;
  color: #2eaadf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.detail-price-label {
  color: #7a8f9d;
}

.detail-price-label strong {
  display: inline-block;
  margin-left: 8px;
  color: var(--primary);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

.detail-facts {
  justify-content: flex-start;
  margin-top: 14px;
  color: #61737f;
  flex-wrap: wrap;
}

.detail-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

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

.gallery-main,
.gallery-side > * {
  border-radius: 18px;
  overflow: hidden;
}

.gallery-main {
  min-height: 470px;
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}

.gallery-side > * {
  min-height: 229px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 370px;
  gap: 28px;
  align-items: start;
}

.detail-grid.detail-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.content-card {
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.content-card p {
  margin: 16px 0 0;
}

.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.overview-tags span {
  padding: 10px 14px;
  border-radius: 12px;
  background: #f6fafc;
  border: 1px solid #ddeaf2;
  color: #547082;
  font-size: 0.85rem;
}

.timeline {
  margin-top: 8px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
}

.timeline-copy {
  color: #596d7a;
  line-height: 1.8;
}

.timeline-copy p,
.timeline-copy ul,
.timeline-copy ol {
  margin: 10px 0 0;
}

.timeline-copy p:first-child,
.timeline-copy ul:first-child,
.timeline-copy ol:first-child {
  margin-top: 6px;
}

.timeline-copy ul,
.timeline-copy ol {
  padding-left: 20px;
}

.timeline-copy h3 {
  margin: 12px 0 6px;
  color: #183747;
  font-size: 1rem;
  line-height: 1.5;
}

.timeline-copy blockquote {
  margin: 12px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: #f4fbff;
  color: #466273;
}

.timeline-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
}

.timeline-item img {
  margin-top: 18px;
  height: 190px;
  border-radius: 16px;
}

.include-grid,
.related-grid,
.booking-row {
  display: grid;
  gap: 18px;
}

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

.include-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #596d7a;
  line-height: 2;
}

.related-tours h2 {
  margin: 10px 0 22px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

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

.related-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 37, 51, 0.08);
}

.related-card .image-shell,
.related-card img {
  aspect-ratio: 1.35 / 1;
}

.related-card div {
  padding: 18px;
}

.related-card span {
  color: #29b6ea;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.related-card h3 {
  margin: 10px 0 12px;
  font-size: 1.1rem;
}

.booking-card {
  position: sticky;
  top: 110px;
  border-radius: 24px;
  padding: 24px;
}

.booking-row {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.booking-summary {
  margin: 24px 0 20px;
  border-top: 1px solid #e5eef4;
  border-bottom: 1px solid #e5eef4;
  padding: 16px 0;
}

.booking-summary .total {
  margin-top: 10px;
  font-size: 1.2rem;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
}

.payment-note {
  margin: 14px 0 18px;
  color: #7c8d99;
  font-size: 0.84rem;
}

.compact-footer {
  grid-template-columns: 1.3fr 1fr 1fr;
  padding-bottom: 28px;
}

.features-section {
  padding: 92px 0 102px;
  background: #ffffff;
}

.section-intro.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-intro p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.feature-card {
  padding: 42px 30px 34px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(14, 33, 46, 0.06);
  box-shadow: 0 18px 44px rgba(18, 38, 51, 0.05);
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(36, 181, 234, 0.1);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  background: var(--footer);
  color: #ffffff;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
}

.footer-brand h3,
.footer-grid h4 {
  margin: 0 0 18px;
}

.footer-brand h3 {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.footer-brand p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

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

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.static-page {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.static-hero {
  padding: 72px 0 26px;
}

.static-hero .section-label {
  margin-bottom: 14px;
}

.static-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.static-hero p {
  display: none;
}

.static-copy-section,
.library-section {
  padding: 10px 0 88px;
}

.media-embed-section {
  padding: 8px 0 88px;
}

.media-intro-card {
  margin-bottom: 22px;
  padding: 26px 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(46, 192, 241, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(16, 34, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.media-intro-label {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-intro-card h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.media-follow-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2ec0f1, #1eaee0);
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(36, 181, 234, 0.18);
}

.media-embed-card {
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 34, 48, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.media-embed-card .elfsight-app-b72f426f-2b1d-4436-94ab-eac3477301e1 {
  min-height: 420px;
}

.static-rich-card {
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 34, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.static-rich-card h2 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.static-rich-card p,
.static-rich-card li {
  color: #53687c;
  line-height: 1.82;
}

.static-rich-card ul {
  margin: 0;
  padding-left: 20px;
}

.static-rich-card + .static-rich-card {
  margin-top: 22px;
}

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

#fleetGrid.library-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.library-card {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 34, 48, 0.08);
  box-shadow: var(--shadow-soft);
}

.library-card-media {
  height: 280px;
  background: linear-gradient(135deg, #eff7ff 0%, #dfeef8 100%);
  display: grid;
  place-items: center;
}

.library-card-media.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-card-media.pdf {
  position: relative;
}

.library-pdf-badge {
  min-width: 92px;
  min-height: 92px;
  padding: 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #e53935;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.library-card-body {
  padding: 22px 22px 24px;
}

.library-card-body span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.library-card-body p {
  margin: 0;
  color: #586a7b;
  line-height: 1.72;
}

.fleet-gallery-card {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 34, 48, 0.08);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.fleet-gallery-card .image-shell,
.fleet-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.fleet-gallery-card:hover img {
  transform: scale(1.04);
}

.library-card-media.image .image-shell,
.site-promo-thumb .image-shell,
.site-promo-main-shell,
.site-promo-viewer-shell,
.fleet-lightbox-shell {
  width: 100%;
  height: 100%;
}

.site-promo-main-image,
.site-promo-viewer-image,
.fleet-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-promo-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 16, 23, 0.58);
  backdrop-filter: blur(10px);
}

.site-promo-popup-backdrop[hidden] {
  display: none;
}

.site-promo-popup-card {
  position: relative;
  width: min(100%, 760px);
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(7, 16, 23, 0.24);
}

.site-promo-popup-card.image-only {
  background: transparent;
  box-shadow: none;
  width: auto;
  max-width: 96vw;
  padding: 0;
  overflow: visible;
}

.site-promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 23, 31, 0.88);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 16px 30px rgba(7, 16, 23, 0.28);
  backdrop-filter: blur(10px);
}

.site-promo-media {
  position: relative;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
}

.site-promo-media.plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-promo-media img {
  width: auto;
  max-width: 96vw;
  max-height: 84vh;
  object-fit: contain;
  display: block;
}

.site-promo-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 8px 2px 2px;
  overflow-x: auto;
  justify-content: center;
}

.site-promo-thumb {
  width: 88px;
  min-width: 88px;
  height: 118px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-promo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-promo-thumb.active {
  border-color: rgba(36, 181, 234, 0.9);
  box-shadow: 0 16px 30px rgba(36, 181, 234, 0.24);
}

.site-promo-thumb:hover {
  transform: translateY(-2px);
}

.site-promo-viewer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 24px;
  border-radius: 28px;
  background: rgba(7, 16, 23, 0.92);
  backdrop-filter: blur(12px);
}

.site-promo-viewer[hidden] {
  display: none;
}

.site-promo-viewer img {
  width: 100%;
  max-height: min(82vh, 1200px);
  object-fit: contain;
}

.site-promo-optout {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 23, 31, 0.88);
  color: #ffffff;
  font-size: 0.9rem;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.site-promo-optout input {
  width: 16px;
  height: 16px;
}

.site-promo-viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
}

.site-promo-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-promo-copy h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.site-promo-copy p {
  margin: 14px 0 0;
  color: #5c6874;
  line-height: 1.7;
}

.site-promo-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.site-promo-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(36, 181, 234, 0.22);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 22px;
  }

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

  .tour-card-large,
  .tour-card-wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 420px;
  }

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

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

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

  .footer-topbar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-topbar-line {
    display: none;
  }

  .tour-list-grid,
  .related-grid,
  .include-grid,
  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .booking-card {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 40px, 1000px);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav,
  .book-button {
    display: none;
  }

  .header-inner.menu-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .header-inner.menu-open .book-button {
    position: absolute;
    top: calc(100% + 238px);
    left: 20px;
    display: inline-flex;
  }

  .hero-content {
    flex-direction: column;
    padding-top: 116px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    max-width: 12.4ch;
  }

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

  .list-headline,
  .detail-topline,
  .detail-heading,
  .list-meta {
    flex-direction: column;
  }

  .filter-bar,
  .tour-list-grid,
  .related-grid,
  .include-grid,
  .detail-gallery,
  .gallery-side,
  .contact-cards,
  .contact-form-row,
  .library-grid {
    grid-template-columns: 1fr;
  }

  .media-intro-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-follow-button {
    width: 100%;
  }

  .gallery-main,
  .gallery-side > *,
  .map-showcase {
    min-height: 280px;
  }

  .footer-topbar-left,
  .footer-topbar-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 62px;
  }

  .brand span {
    font-size: 1.45rem;
  }

  .hero,
  .hero-slider,
  .slide,
  .hero-content {
    min-height: calc(88vh - 74px);
  }

  .hero-copy p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-primary-button,
  .hero-secondary-button {
    width: 100%;
  }

  .hero-ui {
    bottom: 24px;
    align-items: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .tour-card,
  .tour-card-large,
  .tour-card-wide {
    min-height: 300px;
  }

  .tour-card-large .card-content h3 {
    font-size: 1.5rem;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom div {
    gap: 14px;
  }

  .detail-price-label strong {
    display: block;
    margin: 10px 0 0;
  }

  .content-card,
  .booking-card {
    padding: 22px;
  }

  .booking-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .map-showcase {
    padding: 24px;
    min-height: 420px;
  }

  .contact-card h2 {
    font-size: 1.7rem;
  }

  .site-promo-popup-card {
    padding: 22px;
  }

  .site-promo-copy h3 {
    font-size: 1.65rem;
  }

  .site-promo-popup-card.image-only {
    width: auto;
    max-width: 94vw;
  }

  .site-promo-media img {
    max-width: 94vw;
    max-height: 72vh;
  }

  .site-promo-thumb {
    width: 72px;
    min-width: 72px;
    height: 96px;
    border-radius: 14px;
  }
}

.site-whatsapp-fixed {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1fbf61;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(31, 191, 97, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-whatsapp-fixed svg {
  width: 24px;
  height: 24px;
}

.site-whatsapp-fixed:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 191, 97, 0.4);
}

.site-feedback-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 24, 33, 0.42);
  backdrop-filter: blur(10px);
}

.site-feedback-backdrop[hidden] {
  display: none !important;
}

.site-feedback-card {
  width: min(100%, 360px);
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(17, 30, 45, 0.14);
  text-align: center;
}

.site-feedback-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f4f7fa;
  color: #8ea0b4;
  font-size: 1.25rem;
  cursor: pointer;
}

.site-feedback-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.site-feedback-icon[data-tone="success"] {
  background: rgba(31, 191, 97, 0.12);
  color: #11a84f;
}

.site-feedback-icon[data-tone="error"] {
  background: rgba(236, 76, 76, 0.12);
  color: #e43c3c;
}

.site-feedback-icon svg {
  width: 24px;
  height: 24px;
}

.site-feedback-copy span {
  display: block;
  margin-bottom: 8px;
  color: #6b7f92;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-feedback-copy h3 {
  margin: 0 0 8px;
  color: #172335;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.site-feedback-copy p {
  margin: 0;
  color: #53687c;
  line-height: 1.55;
  font-size: 0.94rem;
}

.site-feedback-action {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.fleet-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 15, 22, 0.78);
  backdrop-filter: blur(8px);
}

.fleet-lightbox-backdrop[hidden] {
  display: none !important;
}

.fleet-lightbox-card {
  position: relative;
  width: min(100%, 1100px);
  max-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
}

.fleet-lightbox-close {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1d3446;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.fleet-lightbox-card img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}
