/* ============================================================
   XPAND YACHTS — Shared Stylesheet
   Brand: Dark Navy #07101C | Gold #C4A35A | Blue #006090
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --dark:       #07101C;
  --dark-2:     #0D1F33;
  --gold:       #C4A35A;
  --gold-light: #E2C98A;
  --brand:      #006090;
  --mid:        #7A8AA0;
  --light-bg:   #EEF3F8;
  --white:      #FFFFFF;
  --font:       'Montserrat', -apple-system, Helvetica, Arial, sans-serif;
  --serif:      'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid rgba(196,163,90,0.25);
}
.nav-logo img {
  height: 50px; width: auto; object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.70);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 8px 22px; border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── NAV DROPDOWN ────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--dark); border: 1px solid rgba(196,163,90,0.25);
  min-width: 220px; padding: 8px 0; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 20px; font-size: 10px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.70); text-transform: uppercase; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(196,163,90,0.08); }
.nav-dropdown-divider { border-top: 1px solid rgba(196,163,90,0.15); margin: 6px 0; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,16,28,0.60) 0%,
    rgba(7,16,28,0.45) 50%,
    rgba(7,16,28,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 24px;
  margin-bottom: 80px;
}
.hero-logo {
  height: 100px; width: auto; margin: 60px auto 28px;
}
.hero-rule {
  width: 140px; height: 1px;
  background: var(--gold); opacity: 0.65;
  margin: 0 auto 22px;
}
.hero-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.30em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800; color: var(--white); line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 14px;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  display: inline-block;
  background: rgba(0,0,0,0.30);
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  padding: 7px 20px; border-radius: 2px;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 16px 40px;
  border-radius: 2px; transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.hero-scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 8px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  pointer-events: none;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(196,163,90,0.60), transparent);
}

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-hero {
  position: relative; height: 320px; margin-top: 64px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 40px;
}
.page-hero-content .gold-label { margin-bottom: 8px; }
.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  color: var(--white); line-height: 1.05;
}

/* ── GOLD LABEL ──────────────────────────────────────────── */
.gold-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.gold-label::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.55;
}
.mid-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--mid);
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.mid-label::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--mid); opacity: 0.55;
}

/* ── WAVE DIVIDER ────────────────────────────────────────── */
.wave-wrap { position: relative; height: 0; }
.wave-wrap svg {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 52px;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 80px 64px; }
.section-narrow { padding: 80px 64px; max-width: 900px; margin: 0 auto; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light-bg); }
.container { max-width: 1160px; margin: 0 auto; }

/* ── HEADING BLOCKS ──────────────────────────────────────── */
.heading-block { margin-bottom: 40px; }
.heading-block .sub { font-size: 16px; font-weight: 300; color: var(--dark); margin-bottom: 4px; }
.heading-block h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark);
  line-height: 1.1; margin-bottom: 16px;
}
.heading-block h2 span { color: var(--brand); }
.heading-block p { font-size: 15px; color: var(--mid); line-height: 1.75; max-width: 620px; }
.heading-block.center { text-align: center; }
.heading-block.center p { margin: 0 auto; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  display: grid; background: var(--light-bg);
  border-top: 1px solid rgba(196,163,90,0.30);
  border-bottom: 1px solid rgba(196,163,90,0.30);
  margin: 32px 0;
}
.stats-bar-4 { grid-template-columns: repeat(4,1fr); }
.stats-bar-3 { grid-template-columns: repeat(3,1fr); }
.stat-item {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 22px; font-weight: 800; color: var(--brand);
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: var(--mid); text-transform: uppercase; }

/* ── FEATURE GRID ────────────────────────────────────────── */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px; margin: 28px 0; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--dark); font-weight: 700; margin-top: 2px;
}
.feature-title { font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-desc { font-size: 12.5px; color: var(--mid); line-height: 1.65; }

/* ── PHOTO STRIP ─────────────────────────────────────────── */
.photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.photo-strip-item { position: relative; height: 190px; overflow: hidden; }
.photo-strip-item img { height: 100%; transition: transform 0.4s; }
.photo-strip-item:hover img { transform: scale(1.04); }
.photo-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(196,163,90,0.88); padding: 6px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark); text-align: center;
}

/* ── TWO-COL LAYOUT ──────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse .col-img { order: -1; }
.col-img { height: 440px; overflow: hidden; border-radius: 2px; }
.col-img img { height: 100%; width: 100%; object-fit: cover; object-position: center center; transform: scale(1.12); }

/* ── FLEET CARDS ─────────────────────────────────────────── */
.fleet-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.fleet-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }
.fleet-card-img { height: 240px; overflow: hidden; position: relative; }
.fleet-card-img img { height: 100%; transition: transform 0.4s; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.04); }
.fleet-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 12px;
}
.fleet-card-badge.silver { background: var(--mid); color: var(--white); }
.fleet-card-body { padding: 24px 28px 28px; }
.fleet-card-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.fleet-card-body p { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.fleet-card-stats { display: flex; gap: 20px; margin-bottom: 20px; }
.fc-stat { text-align: center; }
.fc-stat strong { display: block; font-size: 16px; font-weight: 800; color: var(--brand); }
.fc-stat span { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; color: var(--mid); text-transform: uppercase; }
.card-link {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(196,163,90,0.40);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.card-link:hover { border-color: var(--gold); }

/* ── LIFESTYLE GRID ──────────────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 6px;
}
.lifestyle-grid .cell { overflow: hidden; position: relative; }
.lifestyle-grid .cell img { height: 100%; transition: transform 0.5s; }
.lifestyle-grid .cell:hover img { transform: scale(1.05); }
.lifestyle-grid .cell-wide { grid-column: span 2; }
.lifestyle-grid .cell-tall { grid-row: span 2; }

/* ── EXCURSION LIST ──────────────────────────────────────── */
.excursion-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 48px; margin: 28px 0; }
.exc-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.exc-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.exc-item span { font-size: 13.5px; color: var(--dark); }

/* ── CHECKLIST ───────────────────────────────────────────── */
.checklist-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.checklist h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 20px; }
.checklist.inc h3 { color: var(--gold); }
.checklist.exc h3 { color: var(--mid); }
.check-item { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.check-icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; margin-top: 1px;
}
.check-icon.yes { background: var(--gold); color: var(--dark); }
.check-icon.no  { background: var(--light-bg); color: var(--mid); }
.check-item span { font-size: 13.5px; color: var(--dark); line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.10); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand); }
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--gold);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px; color: var(--mid); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--dark); padding: 80px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,163,90,0.08) 0%, transparent 70%);
}
.cta-banner .gold-label { justify-content: center; margin-bottom: 16px; }
.cta-banner .gold-label::after { display: none; }
.cta-banner h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 15px; color: var(--mid); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 16px 44px; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; border: 1px solid rgba(196,163,90,0.45);
  color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 15px 40px; border-radius: 2px;
  margin-left: 16px; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT CARD ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card {
  background: #E4EBF2; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(196,163,90,0.40);
}
.contact-card-header {
  background: var(--dark); padding: 24px 28px;
  border-bottom: 2px solid var(--gold);
}
.contact-card-header h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.contact-card-header .role { font-size: 12px; color: var(--gold); }
.contact-card-body { padding: 24px 28px; }
.contact-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 13.5px; }
.contact-row:last-child { border-bottom: none; }
.contact-row .label { font-weight: 700; color: var(--mid); min-width: 80px; }
.contact-row .value { color: var(--dark); }
.company-blurb { padding: 16px 0; }
.company-blurb p { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.company-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.cstat strong { display: block; font-size: 22px; font-weight: 800; color: var(--brand); }
.cstat span { font-size: 11px; color: var(--mid); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 48px 64px 32px;
  border-top: 1px solid rgba(196,163,90,0.20);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.40); line-height: 1.7; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.30); }
.footer-bottom p a { color: rgba(196,163,90,0.70); }

/* ── DESTINATION CARDS ───────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dest-card { position: relative; height: 280px; overflow: hidden; border-radius: 2px; cursor: pointer; }
.dest-card img { height: 100%; transition: transform 0.5s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,28,0.80) 0%, rgba(7,16,28,0.10) 60%);
  display: flex; align-items: flex-end; padding: 22px;
}
.dest-name { font-size: 18px; font-weight: 800; color: var(--white); }
.dest-country { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard {
  background: var(--light-bg); padding: 28px 24px; border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.tcard p { font-size: 13.5px; color: var(--mid); line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.tcard strong { font-size: 12px; font-weight: 700; color: var(--dark); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* ── CAROUSEL (fleet + destinations) ────────────────────── */
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 8px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--white); border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; text-decoration: none; color: inherit;
}
.carousel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }
.carousel-card-img {
  height: 210px; overflow: hidden; position: relative;
  background: var(--dark);
}
.carousel-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  transition: transform 0.4s;
}
.carousel-card:hover .carousel-card-img img { transform: scale(1.05); }
.carousel-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.carousel-card-badge.croatia { background: var(--gold); color: var(--dark); }
.carousel-card-badge.turkey  { background: var(--brand); color: var(--white); }
.carousel-card-body { padding: 18px 20px 22px; }
.carousel-card-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.carousel-card-body p { font-size: 12.5px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.carousel-mini-stats { display: flex; gap: 16px; }
.cms { text-align: center; }
.cms strong { display: block; font-size: 15px; font-weight: 800; color: var(--brand); }
.cms span { font-size: 9px; font-weight: 700; letter-spacing: 0.10em; color: var(--mid); text-transform: uppercase; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark); z-index: 10;
  transition: background 0.2s, color 0.2s;
}
.carousel-arrow:hover { background: var(--gold); color: var(--dark); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

/* ── DESTINATION CAROUSEL ────────────────────────────────── */
.dest-carousel-card {
  flex: 0 0 220px; scroll-snap-align: start;
  position: relative; height: 260px; overflow: hidden;
  border-radius: 4px; cursor: default;
}
.dest-carousel-card img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.dest-carousel-card:hover img { transform: scale(1.06); }
.dest-carousel-card .dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,28,0.82) 0%, rgba(7,16,28,0.10) 60%);
  display: flex; align-items: flex-end; padding: 18px;
}
.dest-carousel-card .dest-name { font-size: 16px; font-weight: 800; color: var(--white); }
.dest-carousel-card .dest-country { font-size: 9px; font-weight: 700; letter-spacing: 0.20em; color: var(--gold); text-transform: uppercase; margin-bottom: 2px; }

/* ── LOCATION CHOOSER ────────────────────────────────────── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.location-card {
  position: relative; height: 340px; overflow: hidden;
  border-radius: 4px; cursor: pointer; text-decoration: none;
}
.location-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s; }
.location-card:hover img { transform: scale(1.05); }
.location-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,28,0.88) 0%, rgba(7,16,28,0.25) 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 32px 24px; text-align: center;
  transition: background 0.3s;
}
.location-card:hover .location-card-overlay { background: linear-gradient(to top, rgba(7,16,28,0.92) 0%, rgba(7,16,28,0.35) 60%); }
.location-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.location-card-title { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 10px; }
.location-card-sub { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 18px; }
.location-card-btn {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 24px; border-radius: 2px;
}

/* ── YACHT GALLERY ───────────────────────────────────────── */
.yacht-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 40px;
}
.yacht-gallery img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 2px;
  cursor: pointer; transition: transform 0.3s, opacity 0.3s;
}
.yacht-gallery img:hover { transform: scale(1.02); opacity: 0.92; }

/* ── UTILITY ─────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-gold { color: var(--gold); }
.text-mid  { color: var(--mid);  }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .two-col, .fleet-cards, .checklist-cols,
  .contact-grid, .lifestyle-grid, .footer-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .excursion-cols { grid-template-columns: 1fr; }
  .page-hero-content { padding: 0 24px 32px; }
  .lifestyle-grid { grid-template-rows: auto; }
  .lifestyle-grid .cell-wide, .lifestyle-grid .cell-tall { grid-column: auto; grid-row: auto; }
  .yacht-gallery { grid-template-columns: repeat(2, 1fr); }
}
