:root {
  --navy-950: #041628;
  --navy-900: #08233d;
  --navy-800: #0d3358;
  --navy-700: #12456f;
  --blue-400: #7cc2eb;
  --blue-300: #acd8f2;
  --sand-100: #f5f7fb;
  --white: #ffffff;
  --text-dark: #17324d;
  --text-muted: #5a718b;
  --border-soft: rgba(18, 69, 111, 0.12);
  --shadow-soft: 0 24px 60px rgba(4, 22, 40, 0.12);
  --shadow-card: 0 18px 45px rgba(8, 35, 61, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --transition: all 0.35s ease;
  --font-display: "Sora", sans-serif;
  --font-body: "Public Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f3f8fc 100%);
  line-height: 1.7;
  font-size: 1rem;
  font-feature-settings: "liga" 1, "kern" 1;
}

body.page-loading {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

section {
  position: relative;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at top, rgba(124, 194, 235, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(4, 22, 40, 0.98), rgba(8, 35, 61, 0.98));
  color: rgba(255, 255, 255, 0.78);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-loader-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(124, 194, 235, 0.2), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 55px rgba(4, 22, 40, 0.26);
  position: relative;
  overflow: hidden;
}

.page-loader-mark::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-right-color: transparent;
  animation: loader-spin 0.9s linear infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

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

.section-padding {
  padding: 5.5rem 0;
}

.section-surface {
  background: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.text-accent {
  color: var(--navy-700);
}

.section-heading h2,
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 16ch;
}

.section-heading.text-center h2 {
  margin-inline: auto;
}

.section-intro,
.section-copy {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-copy,
.hero-subheading,
.card-body p,
.card-text,
.footer-copy,
.form-note,
.thank-you-copy {
  max-width: 62ch;
}

#mainNav {
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1050;
}

#mainNav.navbar-scrolled {
  padding: 0.7rem 0;
  background: rgba(4, 22, 40, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 35px rgba(4, 22, 40, 0.18);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  color: var(--white);
  font-family: var(--font-display);
}

.brand-mark {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 800;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 1rem;
  transition: var(--transition);
}

.menu-open {
  overflow: hidden;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.footer-links a:hover,
.footer-links a:focus {
  color: var(--blue-300);
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary,
.btn-book {
  background: linear-gradient(135deg, var(--blue-400), #d4edf9);
  border: 0;
  color: var(--navy-950);
  box-shadow: 0 16px 35px rgba(124, 194, 235, 0.24);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-book:hover,
.btn-book:focus {
  transform: translateY(-2px);
  color: var(--navy-950);
  box-shadow: 0 20px 38px rgba(124, 194, 235, 0.32);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  background-color: var(--navy-950);
  background:
    linear-gradient(120deg, rgba(4, 22, 40, 0.84) 8%, rgba(8, 35, 61, 0.56) 44%, rgba(12, 59, 92, 0.2) 100%),
    url("../images/hero-1400.jpg") center/cover no-repeat;
  overflow: hidden;
}

.page-hero {
  min-height: 88vh;
  padding: 6rem 0 4rem;
}

.fleet-hero {
  background:
    linear-gradient(120deg, rgba(4, 22, 40, 0.9) 10%, rgba(8, 35, 61, 0.58) 48%, rgba(12, 59, 92, 0.22) 100%),
    url("../images/baracuda-1200.jpg") center 34% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(124, 194, 235, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(4, 22, 40, 0.08), rgba(4, 22, 40, 0.38));
}

.hero-content {
  color: var(--white);
  padding-top: 5rem;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 6.8rem);
  max-width: 10ch;
  margin-bottom: 1rem;
}

.hero-subheading {
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.fleet-hero-panel {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(4, 22, 40, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(4, 22, 40, 0.22);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.fleet-panel-label {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.fleet-panel-stat {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.fleet-panel-stat strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 0.95;
}

.fleet-panel-stat span,
.fleet-panel-note {
  color: rgba(255, 255, 255, 0.74);
}

.fleet-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.fleet-panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.fleet-panel-list span {
  color: rgba(255, 255, 255, 0.84);
}

.fleet-panel-list strong {
  color: var(--blue-300);
}

.fleet-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fleet-metric-card {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.fleet-metric-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
  color: var(--navy-900);
}

.fleet-metric-card span {
  color: var(--text-muted);
}

.btn-outline-light {
  border-width: 1.5px;
}

.section-heading {
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--navy-800);
}

.stat-card span {
  color: var(--text-muted);
}

.image-stack {
  position: relative;
}

.about-main-image {
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.experience-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 220px;
  padding: 1rem 1.2rem;
  background: rgba(4, 22, 40, 0.84);
  color: var(--white);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.service-card,
.fleet-card,
.contact-form,
.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-card img,
.fleet-card img {
  height: 260px;
  object-fit: cover;
}

.fleet-image-asteria {
  object-position: center 38%;
}

.service-card .card-body,
.fleet-card .card-body {
  padding: 1.6rem;
}

.service-card h3,
.fleet-card .fleet-meta span:first-child {
  color: var(--navy-900);
}

.service-card p,
.fleet-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.service-card,
.fleet-card,
.gallery-item img,
.social-links a,
.whatsapp-float,
.contact-details a {
  transition: var(--transition);
}

.service-card:hover,
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(8, 35, 61, 0.12);
}

.fleet-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.fleet-meta span:last-child {
  color: var(--navy-700);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-list li {
  padding: 0.45rem 0.9rem;
  background: rgba(124, 194, 235, 0.14);
  border-radius: 999px;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-modal .modal-content {
  background: rgba(4, 22, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
}

.gallery-caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.fleet-carousel-shell {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding: clamp(1rem, 2vw, 1.3rem);
  background: linear-gradient(180deg, rgba(4, 22, 40, 0.96), rgba(8, 35, 61, 0.9));
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(4, 22, 40, 0.24);
}

.fleet-gallery-stack {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

#fleet-overview {
  padding-top: 7rem;
}

.fleet-boat-section {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 69, 111, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(4, 22, 40, 0.08);
}

.fleet-copy-card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background:
    radial-gradient(circle at top left, rgba(124, 194, 235, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.98));
  border-radius: 26px;
  border: 1px solid rgba(18, 69, 111, 0.08);
}

.fleet-boat-tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-copy-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-900);
  margin-bottom: 0.85rem;
}

.fleet-copy-card p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.fleet-inline-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.fleet-inline-specs span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(124, 194, 235, 0.14);
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.fleet-copy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.fleet-copy-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy-800);
  font-weight: 600;
}

.fleet-copy-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}

.fleet-split-carousel-shell {
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 26px;
  box-shadow: none;
}

.fleet-boat-carousel {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(4, 22, 40, 0.16);
}

.fleet-boat-carousel .carousel-item img {
  height: clamp(320px, 44vw, 520px);
  object-fit: cover;
  object-position: center;
}

.fleet-page-carousel {
  overflow: hidden;
  border-radius: 24px;
}

.fleet-page-carousel .carousel-item img {
  height: clamp(420px, 65vw, 720px);
  object-fit: cover;
  object-position: center;
}

.fleet-carousel-asteria {
  object-position: center 42%;
}

.fleet-carousel-caption {
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 1.15rem 1.2rem;
  text-align: left;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4, 22, 40, 0.16), rgba(4, 22, 40, 0.8));
  backdrop-filter: blur(10px);
}

.fleet-carousel-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.fleet-carousel-caption p {
  margin-bottom: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
}

.fleet-carousel-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-spotlight-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.fleet-spotlight-card.is-featured {
  background:
    linear-gradient(180deg, rgba(124, 194, 235, 0.12), rgba(255, 255, 255, 0.96) 28%);
}

.fleet-spotlight-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.fleet-spotlight-body {
  padding: 1.75rem;
}

.fleet-spotlight-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: var(--navy-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-spotlight-card h3 {
  font-family: var(--font-display);
  color: var(--navy-900);
  margin-bottom: 0.85rem;
}

.fleet-spotlight-card p {
  color: var(--text-muted);
}

.fleet-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.fleet-spotlight-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--navy-800);
  font-weight: 600;
}

.fleet-spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 6px rgba(124, 194, 235, 0.18);
}

.fleet-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at top left, rgba(124, 194, 235, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.fleet-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-outline-dark {
  border: 1.5px solid rgba(8, 35, 61, 0.18);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.65);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: var(--navy-950);
  border-color: rgba(8, 35, 61, 0.28);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.testimonial-carousel {
  max-width: 860px;
  margin: 2rem auto 0;
}

.testimonial-card {
  padding: 3rem 2rem;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--navy-900);
}

.testimonial-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-card span,
.form-note {
  color: var(--text-muted);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(18, 69, 111, 0.32);
}

.carousel-indicators .active {
  background-color: var(--navy-700);
}

.contact-section {
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 194, 235, 0.18), transparent 66%);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy-800);
  font-weight: 700;
}

.contact-details a:hover,
.contact-details a:focus {
  color: var(--navy-950);
  transform: translateX(4px);
}

.contact-form {
  padding: 2rem;
  position: relative;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.form-control {
  border-radius: 16px;
  min-height: 3.35rem;
  border: 1px solid rgba(18, 69, 111, 0.16);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: rgba(247, 251, 255, 0.88);
}

.form-control:focus {
  border-color: rgba(124, 194, 235, 0.8);
  box-shadow: 0 0 0 0.3rem rgba(124, 194, 235, 0.16);
}

.form-select {
  background-position: right 1rem center;
}

textarea.form-control {
  min-height: 160px;
}

.form-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.btn.is-submitting {
  opacity: 0.8;
  pointer-events: none;
}

.btn.is-success {
  background: rgba(35, 133, 86, 0.12);
  color: #238556;
  box-shadow: none;
}

.btn.is-success:hover,
.btn.is-success:focus {
  color: #238556;
  transform: none;
  box-shadow: none;
}

.form-status.is-success {
  color: #238556;
}

.form-status.is-error {
  color: #c25151;
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(124, 194, 235, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.thank-you-panel {
  width: min(100%, 760px);
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 69, 111, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.thank-you-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--navy-900);
}

.thank-you-copy {
  margin: 1rem auto 2rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 2.5rem 0 1.4rem;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.84);
}

.social-links {
  display: flex;
  justify-content: flex-lg-end;
  gap: 0.85rem;
}

.social-links a,
.whatsapp-float {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.25rem;
}

.social-links a:hover,
.social-links a:focus {
  background: rgba(124, 194, 235, 0.18);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.4rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  color: var(--white);
  background: linear-gradient(135deg, #1db954, #26d96d);
  box-shadow: 0 16px 35px rgba(29, 185, 84, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: var(--white);
  transform: translateY(-4px) scale(1.02);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(4, 22, 40, 0.74);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  #mainNav .container {
    position: relative;
  }

  .navbar-brand,
  .navbar-toggler {
    position: relative;
    z-index: 1052;
  }

  .navbar-toggler {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(4, 22, 40, 0.16);
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .navbar-collapse {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    z-index: 1051;
    margin-top: 0;
    padding: 5.75rem 1rem 1rem;
    min-height: 100vh;
    background: var(--navy-950);
    backdrop-filter: none;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -16px, 0);
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      visibility 0s linear 0.28s;
  }

  .navbar-collapse.menu-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.22s ease,
      visibility 0s linear 0s;
  }

  .navbar-nav {
    width: 100%;
    min-height: calc(100vh - 6.75rem);
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    gap: 0.3rem;
    padding: 0.85rem;
    border: 0;
    border-radius: 0;
    background: var(--navy-950);
    box-shadow: none;
  }

  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
  }

  .navbar-nav .nav-item:last-child {
    margin-top: 0.7rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav .btn-book {
    width: 100%;
    justify-content: center;
    min-height: 3.25rem;
    border-radius: 16px;
    padding-block: 0.95rem;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .social-links {
    justify-content: flex-start;
  }

  .fleet-metrics {
    grid-template-columns: 1fr;
  }

  .fleet-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .fleet-boat-section {
    padding: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    max-width: 10ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 240px;
  }

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

  .fleet-meta {
    flex-direction: column;
  }

  .fleet-spotlight-topline {
    flex-direction: column;
  }

  .fleet-carousel-caption {
    position: static;
    margin: 1rem;
  }

  .fleet-page-carousel .carousel-item img {
    height: 360px;
  }

  .fleet-boat-carousel .carousel-item img {
    height: 300px;
  }
}

@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;
  }

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