/* ================================================================
   LULU BOATS (PEARL) — Premium Yacht Charter, Abu Dhabi
   ================================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --dark:       #070d1c;
  --dark-2:     #0d1b30;
  --dark-3:     #122539;
  --dark-4:     #193044;
  --gold:       #c9a84c;
  --gold-light: #e0c470;
  --gold-dim:   rgba(201,168,76,0.12);
  --blue:       #1e90d4;
  --blue-light: #4ab4f0;
  --white:      #ffffff;
  --off-white:  #dce8f0;
  --muted:      #6b85a0;
  --border:     rgba(255,255,255,0.06);
  --border-gold:rgba(201,168,76,0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:      all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:     0 25px 60px rgba(0,0,0,0.5);
  --shadow-sm:  0 8px 30px rgba(0,0,0,0.3);
  --r:          6px;
  --r-lg:       12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-subtitle { margin: 0 auto; }

.gold-rule {
  width: 45px;
  height: 1.5px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.section-header .gold-rule { margin: 1.25rem auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--r);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.btn-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30,144,212,0.3);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(7,13,28,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  background: rgba(255,255,255,0.96);
  padding: 5px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: var(--trans);
}
.nav-logo:hover {
  background: #fff;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--trans);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book {
  background: var(--gold);
  color: var(--dark);
  padding: 0.7rem 1.6rem;
  border-radius: var(--r);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  flex-shrink: 0;
}
.nav-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--trans);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-book-m {
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 2.5rem;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-in-out alternate both;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Overlays */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,13,28,0.92) 0%,
    rgba(7,13,28,0.65) 55%,
    rgba(7,13,28,0.4) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.4s both;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.7s both;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.3px;
  max-width: 520px;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.25s both;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s both;
}
.scroll-track {
  width: 1px;
  height: 55px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--trans);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
  transform: scale(1.3);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem 0.5rem; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.18);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   ABOUT (HOMEPAGE TEASER)
   ================================================================ */
.about-teaser { padding: 9rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-imagery { position: relative; }
.about-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.about-accent-img {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 5px solid var(--dark);
  box-shadow: var(--shadow);
}
.about-years-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.badge-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}
.about-text-col .gold-rule { margin-left: 0; }
.about-text-col .section-tag { justify-content: flex-start; }
.about-text-col .section-tag::before { display: block; }
.about-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0 2.5rem;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--off-white);
}
.about-feat i { color: var(--gold); font-size: 0.8rem; }

/* ================================================================
   FLEET (HOMEPAGE)
   ================================================================ */
.fleet-teaser {
  padding: 9rem 0;
  background: var(--dark-2);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.boat-card {
  background: var(--dark-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  cursor: pointer;
}
.boat-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm), 0 0 40px rgba(201,168,76,0.08);
}
.boat-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.boat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.boat-card:hover .boat-img-wrap img { transform: scale(1.08); }
.boat-type-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.28rem 0.65rem;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.boat-price-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(7,13,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.boat-body { padding: 1.5rem; }
.boat-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.boat-specs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.boat-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--muted);
}
.boat-spec i { color: var(--gold); font-size: 0.72rem; }
.boat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.boat-book-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}
.boat-book-link:hover { gap: 0.75rem; }
.boat-footer-desc {
  font-size: 0.78rem;
  color: var(--muted);
}

.fleet-cta { text-align: center; }

/* ================================================================
   SERVICES (HOMEPAGE)
   ================================================================ */
.services-teaser { padding: 9rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--trans);
}
.svc-card:hover .svc-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.08) rotate(-5deg);
}
.svc-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.svc-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section {
  padding: 9rem 0;
  background: var(--dark-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--r-lg);
  transition: var(--trans);
}
.why-card:hover {
  background: var(--dark-3);
}
.why-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--trans);
}
.why-card:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--dark);
}
.why-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.why-body { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(7,13,28,0.82);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 auto 2.75rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #040912;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 5.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: inline-block;
  background: rgba(255,255,255,0.94);
  padding: 6px 16px;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.footer-logo img { height: 48px; display: block; }
.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 290px;
}
.footer-social { display: flex; gap: 0.65rem; }
.soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--trans);
}
.soc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-row {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
  align-items: flex-start;
}
.footer-contact-row i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-row a { color: var(--muted); transition: color 0.3s; }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: var(--muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  z-index: 998;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,13,28,0.8) 0%, rgba(7,13,28,0.6) 100%);
}
.ph-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding-top: 90px;
}
.ph-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ph-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.ph-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}
.ph-breadcrumb {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb .sep { color: var(--gold); }

/* ================================================================
   FLEET PAGE
   ================================================================ */
.fleet-page-wrap { padding: 6rem 0 8rem; }
.filter-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.filter-pill {
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
/* expanded boat card with gallery */
.boat-card-xl { background: var(--dark-2); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--trans); }
.boat-card-xl:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.bcx-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bcx-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.boat-card-xl:hover .bcx-img img { transform: scale(1.06); }
.bcx-badge-type {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--dark);
  padding: 0.3rem 0.7rem; border-radius: 3px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.bcx-body { padding: 1.75rem; }
.bcx-name { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.bcx-tagline { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }
.bcx-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.bcx-spec { text-align: center; }
.bcx-spec-icon { font-size: 1rem; color: var(--gold); margin-bottom: 0.35rem; display: block; }
.bcx-spec-val { font-size: 0.85rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 0.2rem; }
.bcx-spec-lbl { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; display: block; }
.bcx-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-page-wrap { padding: 6rem 0 8rem; }
.svc-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.svc-card-big {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
}
.svc-card-big:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.svc-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-card-big:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-big-body { padding: 2rem; }
.svc-big-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 1rem;
  transition: var(--trans);
}
.svc-card-big:hover .svc-big-icon { background: var(--gold); color: var(--dark); }
.svc-big-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.svc-big-text { font-size: 0.875rem; color: var(--muted); line-height: 1.8; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-page-intro { padding: 7rem 0; }
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.api-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); }
.api-text-col .gold-rule { margin-left: 0; }
.api-text-col .section-tag { justify-content: flex-start; }
.api-text-col .section-tag::before { display: block; }
.api-body { font-size: 0.95rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }
.about-values-section {
  padding: 7rem 0;
  background: var(--dark-2);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.val-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--trans);
}
.val-card:hover { border-color: var(--border-gold); transform: translateY(-5px); }
.val-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.25rem; }
.val-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.val-body { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

.team-section { padding: 7rem 0; }
.team-cta-wrap { text-align: center; margin-top: 4rem; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page-wrap { padding: 6rem 0 8rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-info-block { margin-bottom: 2.5rem; }
.ci-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.ci-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
}
.ci-lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.ci-val { font-size: 0.9rem; color: var(--off-white); line-height: 1.65; }
.ci-val a { color: var(--off-white); transition: color 0.3s; }
.ci-val a:hover { color: var(--gold); }
.contact-social-row { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.contact-map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map-wrap iframe {
  width: 100%; height: 280px; display: block;
  filter: grayscale(20%) brightness(0.9);
}

.contact-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.75rem;
}
.cf-title { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.cf-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2.25rem; }
.form-grp { margin-bottom: 1.25rem; }
.form-lbl { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-inp, .form-ta {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-inp::placeholder, .form-ta::placeholder { color: rgba(255,255,255,0.2); }
.form-inp:focus, .form-ta:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-ta { resize: vertical; min-height: 130px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ================================================================
   ANIMATIONS & KEYFRAMES
   ================================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* AOS overrides */
[data-aos="fade-up"] { transform: translateY(40px); opacity: 0; transition-property: opacity, transform !important; }
[data-aos="fade-up"].aos-animate { transform: translateY(0); opacity: 1; }
[data-aos="fade-left"] { transform: translateX(-40px); opacity: 0; transition-property: opacity, transform !important; }
[data-aos="fade-left"].aos-animate { transform: translateX(0); opacity: 1; }
[data-aos="fade-right"] { transform: translateX(40px); opacity: 0; transition-property: opacity, transform !important; }
[data-aos="fade-right"].aos-animate { transform: translateX(0); opacity: 1; }
[data-aos="zoom-in"] { transform: scale(0.92); opacity: 0; transition-property: opacity, transform !important; }
[data-aos="zoom-in"].aos-animate { transform: scale(1); opacity: 1; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3.5rem; }
  .about-accent-img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .hero-dots { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imagery { order: -1; }
  .about-accent-img { display: none; }
  .about-years-badge { width: 80px; height: 80px; top: 1rem; left: 0.5rem; }
  .badge-num { font-size: 1.6rem; }

  .fleet-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .fleet-full-grid, .services-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .bcx-specs { grid-template-columns: repeat(3, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
