:root {
  --primary: #0d2137;
  --primary-deep: #081320;
  --teal: #0b78b8;
  --teal-light: #e8f8fc;
  --gold: #f9b701;
  --gold-deep: #c48e00;
  --green-wa: #25d366;
  --green-wa-deep: #1ca855;
  --light-bg: #f4f7fa;
  --surface: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border-soft: rgba(11, 120, 184, 0.12);
  --shadow-soft: 0 10px 32px rgba(8, 19, 32, 0.1);
  --shadow-strong: 0 20px 50px rgba(8, 19, 32, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --nav-height: 92px;
  --container-max: 1180px;
  --font-body: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-main);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

main,
section,
header,
footer,
nav {
  display: block;
}

.no-js .page-loader,
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 183, 1, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 19, 32, 0.96), rgba(13, 33, 55, 0.98));
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader__spinner {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#mainNav .container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.container {
  max-width: var(--container-max);
}

.site-header {
  position: relative;
}

#mainNav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1100;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(8, 19, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(8, 19, 32, 0.26);
  padding: 10px 0;
}

.navbar-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 900;
}

.brand-anchor {
  width: 48px;
  height: 32px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

#navMenu {
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#navMenu .navbar-nav {
  gap: 8px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 700;
  padding: 10px 14px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-block-end: 3px;
  inset-inline-start: 14px;
  inset-inline-end: 14px;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-inline-tools {
  position: relative;
  z-index: 1201;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.lang-btn {
  min-width: 78px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.lang-btn.is-active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 6px 20px rgba(8, 19, 32, 0.18);
}

.btn-nav-book,
.btn-wa-hero,
.btn-outline-hero,
.btn-book-card,
.btn-cta-call,
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-nav-book {
  padding: 12px 24px;
  color: var(--primary) !important;
  background: linear-gradient(135deg, #ffd552, var(--gold));
  box-shadow: 0 10px 26px rgba(249, 183, 1, 0.28);
}

.btn-nav-book:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffde73, #f0aa00);
}

.navbar-toggler {
  position: relative;
  z-index: 1200;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.18);
}

.navbar-toggler-icon {
  filter: invert(1);
  transition: opacity 0.2s ease;
}

.toggler-close {
  position: absolute;
  display: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-close {
  display: inline-flex;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.cta-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 183, 1, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(8, 19, 32, 0.86) 20%, rgba(8, 19, 32, 0.54) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #e60808;
}

.hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.15;
  font-weight: 900;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-sub {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}

.hero-copy {
  max-width: 760px;
  margin: -14px auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 2vw, 1.04rem);
  line-height: 1.8;
}

.hero-btns,
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-wa-hero,
.btn-cta-wa {
  padding: 15px 30px;
  color: #fff;
  background: linear-gradient(135deg, #2cdf72, var(--green-wa));
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.28);
}

.btn-wa-hero:hover,
.btn-cta-wa:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #32e87a, var(--green-wa-deep));
  color: #fff;
}

.btn-outline-hero {
  padding: 15px 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-hero:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.hero-scroll {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  transform: translateX(-50%);
  animation: bobble 2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1.65rem;
}

.float-wa {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-start: 24px;
  z-index: 1080;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  background: linear-gradient(135deg, #2cdf72, var(--green-wa));
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-wa.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-wa:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.02);
}

.section-shell {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

#yachts.section-shell {
  padding-top: 122px;
}

.section-soft {
  background: var(--light-bg);
}

.section-heading {
  margin-bottom: 52px;
}

.sec-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sec-title {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
}

.sec-title .t {
  color: var(--teal);
}

.sec-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.fu {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fu.in {
  opacity: 1;
  transform: translateY(0);
}

.fu.d1 {
  transition-delay: 0.08s;
}

.fu.d2 {
  transition-delay: 0.16s;
}

.fu.d3 {
  transition-delay: 0.24s;
}

#yachts,
#experiences,
#contact {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

#yachts .container {
  max-width: 1440px;
}

#yachtsGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

#yachtsGrid > [class*="col-"] {
  grid-column: span 2;
  width: 100%;
  max-width: none;
  padding: 0;
}

#yachtsGrid > [class*="col-"]:nth-child(4) {
  grid-column: 2 / span 2;
}

#yachtsGrid > [class*="col-"]:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 1399px) {
  #yachtsGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #yachtsGrid > [class*="col-"] {
    grid-column: span 2;
  }

  #yachtsGrid > [class*="col-"]:nth-child(4),
  #yachtsGrid > [class*="col-"]:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 1199px) {
  #yachtsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #yachtsGrid > [class*="col-"] {
    grid-column: span 1;
  }

  #yachtsGrid > [class*="col-"]:nth-child(4),
  #yachtsGrid > [class*="col-"]:nth-child(5) {
    grid-column: span 1;
  }
}

.yacht-card,
.contact-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.yacht-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yacht-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.yc-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.yc-wrap .carousel {
  direction: ltr;
}

.yc-wrap .carousel,
.yc-wrap .carousel-inner,
.yc-wrap .carousel-item {
  height: 100%;
}

.yc-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.yc-wrap .carousel-item:hover img {
  transform: scale(1.03);
}

.yc-wrap .carousel-control-prev,
.yc-wrap .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  opacity: 1;
}

.yc-wrap .carousel-control-prev {
  left: 10px !important;
  right: auto !important;
}

.yc-wrap .carousel-control-next {
  right: 10px !important;
  left: auto !important;
}

.yc-wrap .carousel-indicators {
  margin-bottom: 0.5rem;
}

.yc-wrap .carousel-indicators button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.yc-wrap .carousel-indicators button.active {
  background: #fff;
}

.yc-badge {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 14px;
  z-index: 5;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 19, 32, 0.18);
}

.yc-badge.vip {
  background: linear-gradient(135deg, #ffda63, var(--gold));
  color: var(--primary);
}

.yc-badge.popular {
  background: linear-gradient(135deg, #ef4444, #c62020);
}

.yc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.yc-name {
  margin: 0 0 12px;
  text-align: center;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 900;
}

.yc-specs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.yc-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yc-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.yc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal);
}

.yc-toggle {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 800;
}

.yc-toggle i {
  transition: transform 0.3s ease;
}

.yc-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.yc-detail-box {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  color: #4b5563;
  line-height: 1.9;
  font-size: 0.92rem;
}

.yc-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.btn-book-card {
  width: 100%;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(135deg, #2cdf72, var(--green-wa));
  font-size: 0.98rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.btn-book-card:hover {
  color: #fff;
  transform: translateY(-2px);
}

#lightboxModal {
  z-index: 2100;
}

.modal-backdrop.show {
  z-index: 2090;
  opacity: 0.88;
}

#lightboxModal .modal-dialog {
  max-width: min(92vw, 1080px);
  margin: 1.75rem auto;
}

#lightboxModal .modal-content {
  border: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(249, 183, 1, 0.08), transparent 28%),
    rgba(8, 19, 32, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

#lightboxModal .modal-body {
  display: grid;
  place-items: center;
  min-height: min(80vh, 760px);
  padding: clamp(24px, 4vw, 40px);
}

#lightboxModal img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav-prev {
  left: 18px;
}

.lightbox-nav-next {
  right: 18px;
}

#lightboxModal .btn-close {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: 24px;
  inset-inline-start: auto;
  z-index: 5;
  filter: invert(1);
  opacity: 0.9;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.exp-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.exp-card:hover img,
.exp-card:focus-within img {
  transform: scale(1.06);
}

.exp-label,
.exp-overlay {
  position: absolute;
  inset-inline: 0;
}

.exp-label {
  inset-block-end: 0;
  z-index: 1;
  padding: 18px 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(to top, rgba(8, 19, 32, 0.72), transparent 100%);
  transition: opacity 0.3s ease;
}

.exp-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 19, 32, 0.92), rgba(8, 19, 32, 0.32));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.exp-card:hover .exp-label,
.exp-card:focus-within .exp-label {
  opacity: 0;
}

.exp-card:hover .exp-overlay,
.exp-card:focus-within .exp-overlay {
  opacity: 1;
}

.exp-overlay h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.exp-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card-link {
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card-link:hover {
  color: inherit;
  box-shadow: var(--shadow-strong);
}

.contact-card-accent {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(255, 255, 255, 0.96));
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-card-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 0;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
}

.contact-card-map {
  min-height: 100%;
  overflow: hidden;
}

.contact-card-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 1.6rem;
}

.contact-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.22rem;
  font-weight: 900;
}

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

.contact-address {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  color: var(--text-main);
  font-style: normal;
}

#cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-overlay {
  background:
    linear-gradient(120deg, rgba(8, 19, 32, 0.88), rgba(8, 19, 32, 0.64)),
    radial-gradient(circle at 80% 20%, rgba(249, 183, 1, 0.18), transparent 28%);
}

#cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

#cta h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
}

#cta p {
  max-width: 520px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.btn-cta-call {
  padding: 15px 30px;
  color: var(--primary);
  background: linear-gradient(135deg, #ffd552, var(--gold));
  box-shadow: 0 14px 34px rgba(249, 183, 1, 0.22);
}

.btn-cta-call:hover {
  color: var(--primary);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffde73, #efb11d);
}

.cta-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.cta-social-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 12px;
}

.footer-copy {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-brand i {
  color: var(--gold);
}

html[dir="ltr"] body {
  direction: ltr;
}

html[dir="ltr"] #navMenu .navbar-nav {
  margin-inline-end: auto;
}

html[dir="ltr"] .float-wa {
  inset-inline-start: auto;
  inset-inline-end: 24px;
}

html[dir="ltr"] .yc-badge {
  inset-inline-end: auto;
  inset-inline-start: 14px;
}

html[dir="ltr"] .yc-wrap .carousel-control-prev {
  left: 10px;
  right: auto;
}

html[dir="ltr"] .yc-wrap .carousel-control-next {
  right: 10px;
  left: auto;
}

html[dir="rtl"] .lightbox-nav-prev i,
html[dir="rtl"] .lightbox-nav-next i {
  transform: none;
}

html[dir="ltr"] .contact-card-location {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

html[dir="ltr"] .contact-card-info,
html[dir="ltr"] .contact-card,
html[dir="ltr"] .yc-body,
html[dir="ltr"] .yc-detail-box {
  text-align: left;
}

html[dir="ltr"] .yc-specs,
html[dir="ltr"] .yc-icons,
html[dir="ltr"] .hero-btns,
html[dir="ltr"] .cta-btns {
  justify-content: center;
}

@media (max-width: 991px) {
  #yachts.section-shell {
    padding-top: 108px;
  }

  #yachtsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  #yachtsGrid > [class*="col-"] {
    grid-column: span 1;
  }

  #yachtsGrid > [class*="col-"]:nth-child(4),
  #yachtsGrid > [class*="col-"]:nth-child(5) {
    grid-column: span 1;
  }

  #navMenu,
  #navMenu.collapsing,
  #navMenu.show {
    display: none !important;
  }

  body.nav-menu-open #navMenu {
    position: fixed;
    inset: 0;
    z-index: 1150;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    overflow-y: auto;
    padding: 104px 20px 32px;
    background: rgba(8, 19, 32, 0.98);
    backdrop-filter: blur(16px);
  }

  body.nav-menu-open #navMenu .navbar-nav {
    width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
  }

  .nav-link::after {
    inset-inline-start: 0;
    inset-inline-end: 0;
    inset-block-end: 8px;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    margin-inline: auto;
    width: 72px;
  }

  .nav-actions {
    width: 100%;
  }

  body.nav-menu-open #navMenu .nav-actions {
    width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-inline-tools {
    gap: 10px;
  }

  body.nav-menu-open #mainNav {
    background: rgba(8, 19, 32, 0.98);
    backdrop-filter: blur(14px);
  }

  .btn-nav-book {
    width: min(100%, 280px);
  }

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

@media (min-width: 768px) and (max-width: 991px) {
  body.nav-menu-open #navMenu {
    inset-block-start: 0;
    inset-block-end: auto;
    inset-inline: 0;
    width: 100vw;
    height: 50dvh;
    min-height: 50dvh;
    max-height: 50dvh;
    padding-top: 108px;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(8, 19, 32, 0.3);
  }

  body.nav-menu-open #navMenu .navbar-nav,
  body.nav-menu-open #navMenu .nav-actions {
    width: min(100%, 520px);
    max-width: none;
  }
}

@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --nav-height: 84px;
  }

  #mainNav {
    padding: 12px 0;
  }

  #mainNav .container {
    gap: 12px;
  }

  .navbar-brand {
    min-width: 0;
    font-size: 1rem;
  }

  .brand-anchor {
    width: 40px;
    height: 28px;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 62px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-top: calc(var(--nav-height) + 46px);
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1.08;
  }

  .hero-sub {
    max-width: 520px;
    margin-bottom: 28px;
  }

  .hero-copy {
    max-width: 560px;
    margin-top: -8px;
    margin-bottom: 24px;
  }

  .hero-badge {
    margin-bottom: 18px;
    padding: 7px 16px;
  }

  .yc-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-book-card,
  .yc-ask {
    justify-content: center;
    text-align: center;
  }

  .footer-shell {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  #yachts .container {
    max-width: var(--container-max);
  }

  #yachtsGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #yachts.section-shell {
    padding-top: 92px;
  }

  #mainNav .container {
    gap: 10px;
  }

  .navbar-brand {
    gap: 8px;
    font-size: 0.95rem;
    max-width: calc(100% - 170px);
  }

  .nav-inline-tools {
    gap: 8px;
  }

  .lang-switch {
    max-width: 122px;
  }

  .lang-btn {
    min-width: 54px;
    padding: 7px 9px;
    font-size: 0.86rem;
  }

  .navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .hero-badge {
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .float-wa {
    width: 56px;
    height: 56px;
    inset-block-end: 18px;
    inset-inline-start: 18px;
  }

  html[dir="ltr"] .float-wa {
    inset-inline-end: 18px;
  }

  .section-shell {
    padding: 78px 0;
  }

  .hero-inner {
    padding-top: calc(var(--nav-height) + 52px);
    padding-inline: 16px;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-sub {
    max-width: 310px;
    font-size: 0.94rem;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 0.84rem;
    margin-top: -6px;
    margin-bottom: 22px;
    line-height: 1.7;
  }

  .hero-btns {
    gap: 10px;
  }

  .hero-scroll {
    inset-block-end: 18px;
  }

  .yc-wrap,
  .yc-wrap img {
    height: 250px;
  }

  .yc-body {
    padding: 20px;
  }

  .btn-book-card {
    padding: 11px 16px;
    font-size: 0.92rem;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-nav-prev {
    left: 10px;
  }

  .lightbox-nav-next {
    right: 10px;
  }

  #lightboxModal .modal-body {
    padding: 20px 16px;
    min-height: auto;
  }

  #lightboxModal img {
    max-width: 100%;
    max-height: calc(100dvh - 92px);
  }

  #lightboxModal .btn-close {
    inset-block-start: 14px;
    inset-inline-end: 14px;
  }

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

  .exp-card {
    min-height: 290px;
  }

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

  .contact-card-map iframe {
    min-height: 280px;
  }

  .btn-cta-call,
  .btn-cta-wa,
  .btn-wa-hero,
  .btn-outline-hero {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fu {
    opacity: 1;
    transform: none;
  }
}

@keyframes bobble {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

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