/* ============================================
   PUGLIA YACHT CHARTER — Design System
   Minimal luxury Mediterranean
   ============================================ */

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

/* ---------- Tokens ---------- */
:root {
  --white: #FAF8F5;
  --white-pure: #ffffff;
  --sand: #E8DFD3;
  --sand-light: #F3EDE5;
  --navy: #1B2A4A;
  --navy-dark: #0F1A30;
  --navy-light: #2A3E66;
  --gold: #C5A572;
  --gold-light: #D4BA8E;
  --gold-dark: #A8894F;
  --text-dark: #1B2A4A;
  --text-body: #3D4A5C;
  --text-light: #6B7A8D;
  --overlay: rgba(15, 26, 48, 0.55);
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

.section-subtitle {
  max-width: 620px;
  margin: 0.8rem auto 0;
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
}

/* ---------- Container ---------- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Section ---------- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Slight shadow by default */
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: var(--white-pure);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white-pure);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white-pure);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-pure);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-navy {
  background: var(--navy);
  color: var(--white-pure);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: #25D366;
  color: var(--white-pure);
}

.btn-wa:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 26, 48, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white-pure);
  letter-spacing: 0.02em;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  overflow: visible;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.lang-switch button {
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-switch button.active {
  background: var(--gold);
  color: var(--white-pure);
}

.nav-wa-btn {
  background: #25D366;
  color: var(--white-pure) !important;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-wa-btn:hover {
  background: #1EBE5A;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.nav-wa-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white-pure);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 48, 0.35) 0%, rgba(15, 26, 48, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  color: var(--white-pure);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-location {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  background: var(--white);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.exp-card {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(232, 223, 211, 0.5);
  position: relative;
  z-index: 1;
}

.exp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.exp-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white-pure);
  fill: none;
  stroke-width: 1.8;
}

.exp-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.exp-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.exp-hostess {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  color: var(--text-body);
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background: var(--sand-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

/* ============================================
   YACHT
   ============================================ */
.yacht {
  background: var(--sand-light);
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.spec-item {
  text-align: center;
  padding: 1.4rem 1rem;
  background: var(--white-pure);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.spec-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.spec-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(15, 26, 48, 0.15);
}

/* ---------- Yacht Pricing ---------- */
.yacht-pricing {
  margin-top: 3rem;
  text-align: center;
}

.yacht-pricing h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.yacht-pricing .pricing-note {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pricing-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem 2.5rem;
  min-width: 220px;
  flex: 0 1 280px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pricing-card .duration {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.pricing-card .price-from {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.pricing-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.pricing-card .price-vat {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.pricing-includes {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.pricing-includes span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-body);
  background: var(--sand-light);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}

.pricing-includes span svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 600px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white-pure);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ITINERARIES
   ============================================ */
.itineraries {
  background: var(--white);
}

.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.itin-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(232, 223, 211, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.itin-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.itin-card-img {
  height: 180px;
  overflow: hidden;
}

.itin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.itin-card:hover .itin-card-img img {
  transform: scale(1.06);
}

.itin-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.itin-card-body>div:last-child {
  margin-top: auto !important;
}

.itin-card-body h3 {
  margin-bottom: 0.3rem;
}

.itin-duration {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.itin-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.btn-price {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.4em;
}

.itin-best {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.itin-best svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  background: var(--navy-dark);
  color: var(--white-pure);
}

.packages .section-header h2 {
  color: var(--white-pure);
}

.packages .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pkg-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pkg-card-img {
  height: 220px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}

.pkg-card-body {
  padding: 2rem;
}

.pkg-card-body h3 {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.pkg-card-body .pkg-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-style: italic;
}

.pkg-card-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pkg-card-body .btn {
  width: 100%;
  justify-content: center;
}

.pkg-micro {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ============================================
   INCLUDED / EXTRAS
   ============================================ */
.included {
  background: var(--white);
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.incl-col h3 {
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.incl-col .incl-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.incl-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
}

.incl-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.incl-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   AVAILABILITY
   ============================================ */
.availability {
  background: var(--sand-light);
}

.avail-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white-pure);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.avail-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--sand-light);
}

.reviews-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  cursor: grab;
}

.reviews-marquee:active {
  cursor: grabbing;
}

.reviews-marquee .reviews-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  user-select: none;
}

.review-card {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 223, 211, 0.5);
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.google-icon,
.samboat-icon,
.cb-icon {
  flex-shrink: 0;
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: 0.88rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-photos {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.review-photos img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.review-footer {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--sand);
}

.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.review-badge {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-badge img.review-platform-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
}

.review-badge svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--sand-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.active .faq-icon svg {
  stroke: var(--white-pure);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 1.3rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white-pure);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item p {
  font-size: 0.92rem;
}

.contact-info-item a {
  color: var(--gold);
  font-weight: 500;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
}

.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.gdpr-check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
}

.gdpr-check label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-signals {
  padding: 4rem 0;
  background: var(--sand-light);
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trust-logo-item:hover {
  opacity: 1;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--navy);
}

.trust-stat span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.trust-stat span:first-of-type {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================
   STICKY CONTACT BUTTONS (iMessage + WhatsApp)
   ============================================ */
.sticky-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}

.imsg-sticky,
.wa-sticky {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-pure);
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.85rem;
}

.wa-sticky {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.imsg-sticky {
  background: #007AFF;
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.35);
}

.wa-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.imsg-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(0, 122, 255, 0.45);
}

.imsg-sticky svg,
.wa-sticky svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.imsg-sticky-text,
.wa-sticky-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.imsg-sticky-micro,
.wa-sticky-micro {
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
  display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 48, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .trust-badges {
    gap: 1rem;
  }

  .exp-grid,
  .incl-grid,
  .itin-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0.5rem 4vw 0.5rem 4vw;
    scroll-padding-left: 4vw;
  }

  .exp-grid::-webkit-scrollbar,
  .incl-grid::-webkit-scrollbar,
  .itin-grid::-webkit-scrollbar {
    display: none;
  }

  .exp-card {
    width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 8px 28px rgba(27, 42, 74, 0.13);
    border-radius: var(--radius);
  }

  .exp-card,
  .exp-card:hover {
    transform: none !important;
    transition: none !important;
  }

  .yacht-specs {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .itin-card {
    width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 8px 28px rgba(27, 42, 74, 0.13);
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: auto;
  }

  .itin-card,
  .itin-card:hover {
    transform: none !important;
    transition: none !important;
  }

  .itin-card:hover .itin-card-img img {
    transform: none !important;
  }

  .itin-card-img {
    height: 140px;
  }

  .itin-card-body {
    padding: 1rem 1.2rem;
  }

  .itin-card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.85rem;
  }

  .itin-card-body .btn {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }

  .incl-col {
    width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 8px 28px rgba(27, 42, 74, 0.13);
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }

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

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

  .review-card {
    width: 280px;
    min-width: 280px;
  }

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

  .sticky-btns {
    bottom: 1.2rem;
    right: 1.2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .imsg-sticky,
  .wa-sticky {
    padding: 1.1rem;
    border-radius: 50%;
  }

  .wa-sticky {
    animation: wa-pulse 2s ease-in-out infinite;
  }

  .imsg-sticky svg,
  .wa-sticky svg {
    width: 28px;
    height: 28px;
  }

  .imsg-sticky-text,
  .wa-sticky-text {
    display: none;
  }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .yacht-specs {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fleet carousel dot indicators */
.fleet-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 0.75rem;
}
.fleet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11,26,58,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.fleet-dot.active {
  background: #0b1a3a;
  transform: scale(1.4);
}
@media (max-width: 900px) {
  .fleet-dots { display: flex; }
}

/* ============================================
   MOBILE FIXES — Android / small screens
   ============================================ */
@media (max-width: 768px) {
  /* --- Promo strip: hide on mobile to prevent overlap --- */
  #book-direct-strip {
    display: none !important;
  }

  /* --- Header: compact and clear on mobile --- */
  .site-header {
    padding: 0.8rem 0;
  }

  .site-header.scrolled {
    padding: 0.5rem 0;
  }

  .nav-brand {
    font-size: 1.05rem;
    max-width: 200px;
    line-height: 1.2;
  }

  /* --- Hero: properly sized for small screens --- */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 1.2rem;
    margin-top: -2rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-bottom: 0.3rem;
  }

  .hero-location {
    font-size: 1rem;
    margin-bottom: 1rem;
    white-space: normal;
  }

  .hero-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
  }

  /* --- 24/7 badge --- */
  .hero-live-badge {
    font-size: 0.7rem;
    margin-top: 1rem;
  }

  .trust-badges {
    padding: 0 0.5rem;
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .trust-badges span {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  /* --- Contact form: prevent cutoff --- */
  .contact-form {
    padding: 1.2rem;
    margin: 0 -0.5rem;
    border-radius: var(--radius);
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .contact-info {
    padding: 0 0.2rem;
  }

  .contact-map {
    height: 160px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
  }

  /* --- Sticky buttons: smaller, less intrusive --- */
  .sticky-btns {
    bottom: 0.8rem;
    right: 0.8rem;
    gap: 0.4rem;
  }

  .imsg-sticky,
  .wa-sticky {
    padding: 0.85rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .imsg-sticky svg,
  .wa-sticky svg {
    width: 24px;
    height: 24px;
  }

  /* --- Section spacing tighter on mobile --- */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  /* Extra small devices */
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-location {
    font-size: 0.9rem;
  }

  .hero-content p {
    font-size: 0.82rem;
  }

  .nav-brand {
    font-size: 0.95rem;
  }
}

/* ============================================
   SEO content modules
   ============================================ */
.seo-guide,
.seo-yacht-guide,
.cluster-section {
  background: var(--white-pure);
}

.seo-guide .fade-in,
.seo-yacht-guide .fade-in,
.cluster-section .fade-in {
  opacity: 1;
  transform: none;
}

.seo-guide {
  padding: 3.5rem 0;
}

.seo-eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.seo-guide-grid,
.seo-yacht-grid,
.cluster-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.seo-answer-card,
.seo-guide-card,
.cluster-card {
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 8px;
  padding: 1.15rem;
}

.seo-answer-card h3,
.seo-guide-card h3,
.cluster-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.seo-answer-card p,
.seo-guide-card p,
.cluster-card p {
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.seo-comparison,
.seo-alt-links,
.seo-faq,
.cluster-feature {
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.seo-comparison-header,
.cluster-feature-header {
  background: var(--navy);
  color: var(--white-pure);
  padding: 1.2rem;
}

.seo-comparison-header h3,
.cluster-feature-header h2 {
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.seo-comparison-header p,
.cluster-feature-header p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.seo-table-wrap {
  overflow-x: auto;
}

.seo-comparison table {
  border-collapse: collapse;
  font-size: 0.95rem;
  width: 100%;
}

.seo-comparison th,
.seo-comparison td {
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.seo-comparison th {
  background: var(--sand-light);
  color: var(--navy);
  font-weight: 700;
}

.seo-yacht-guide {
  padding: 4rem 0 3rem;
}

.seo-yacht-intro {
  margin: 0 auto 2rem;
  max-width: 820px;
  text-align: center;
}

.seo-yacht-intro p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 0.9rem;
}

.seo-route-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.seo-route-list li {
  border-left: 3px solid var(--gold);
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 0.85rem;
}

.seo-alt-links {
  background: var(--sand-light);
  margin-top: 1.25rem;
  padding: 1.2rem;
}

.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.seo-link-grid a {
  background: var(--white-pure);
  border: 1px solid rgba(27, 42, 74, 0.14);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 0.85rem;
}

.seo-link-grid a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.seo-faq {
  background: var(--white-pure);
  margin-top: 1.25rem;
}

.seo-faq details {
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  padding: 1rem 1.2rem;
}

.seo-faq details:last-child {
  border-bottom: 0;
}

.seo-faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.seo-faq p {
  color: var(--text-body);
  line-height: 1.7;
  margin: 0.75rem 0 0;
}

.seo-updated {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 1rem;
}

.cluster-landing-hero {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: var(--white-pure);
  display: flex;
  min-height: 74vh;
  padding: 9rem 0 4rem;
  position: relative;
}

.cluster-landing-hero::before {
  background: rgba(15, 26, 48, 0.58);
  content: "";
  inset: 0;
  position: absolute;
}

.cluster-landing-hero .container {
  position: relative;
  z-index: 1;
}

.cluster-landing-hero h1 {
  color: var(--white-pure);
  max-width: 780px;
}

.cluster-landing-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 720px;
}

.cluster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.cluster-section {
  padding: 4rem 0;
}

.cluster-section.alt {
  background: var(--sand-light);
}

.cluster-text {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 auto 2rem;
  max-width: 840px;
}

.cluster-card .cluster-meta {
  color: var(--gold-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.cluster-card a {
  color: var(--navy);
  display: inline-block;
  font-weight: 700;
  margin-top: 0.85rem;
}

@media (max-width: 768px) {
  .seo-guide,
  .seo-yacht-guide,
  .cluster-section {
    padding: 2.75rem 0;
  }

  .cluster-landing-hero {
    min-height: 72svh;
    padding: 7rem 0 3rem;
  }

  .seo-link-grid a {
    width: 100%;
  }
}
