/* ==================================
   Elite Travel — Global Stylesheet
   ================================== */

@font-face {
  font-family: 'The Seasons';
  src: url('../fonts/The Seasons Font/DEMO-theseasons-reg (non-commercial).otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-black: #003866;
  --color-white: #ffffff;
  --color-gold: #5BD9CA;
  --color-gold-hover: #4BC4B6;
  --color-gray: #888888;
  --color-light-gray: #eaeaea;

  --font-heading: "The Seasons", "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --z-header: 1000;
  --z-menu: 2000;
  --z-modal: 3000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Directional Variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}
.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
}
.btn-primary:hover {
  background-color: var(--color-gold-hover);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: var(--z-header);
  transition: var(--transition-smooth);
  background: transparent;
}
.header.scrolled {
  background: rgba(0, 56, 102, 0.95);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}
.header.scrolled .logo {
  color: var(--color-white);
}
.header.scrolled .hamburger-line {
  background-color: var(--color-white);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* For subpages without full-height hero, header needs dark bg immediately */
.header-dark {
  background: rgba(0, 56, 102, 0.95);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}
.header-dark .logo {
  color: var(--color-white);
}
.header-dark .hamburger-line {
  background-color: var(--color-white);
}

/* ========== Desktop Navigation ========== */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
  .desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .desktop-nav a {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-white);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
  }
  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
  }
  .desktop-nav a:hover {
    color: var(--color-gold);
  }
  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    width: 100%;
  }
  .desktop-nav a.active {
    color: var(--color-gold);
  }

  /* Booking button — pushed to far right & highlighted */
  .nav-booking-item {
    margin-left: auto;
  }
  .desktop-nav a.nav-booking-btn {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
  }
  .desktop-nav a.nav-booking-btn::after {
    display: none;
  }
  .desktop-nav a.nav-booking-btn:hover {
    background: var(--color-gold-hover);
    color: var(--color-black);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(91, 217, 202, 0.4);
  }

  /* Hide hamburger on desktop */
  .hamburger {
    display: none !important;
  }
}

/* Booking button in mobile menu */
.menu-booking-btn {
  display: inline-block;
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 18px !important;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 12px;
  transition: var(--transition-smooth);
}
.menu-booking-btn:hover {
  background: var(--color-gold-hover) !important;
  box-shadow: 0 4px 15px rgba(91, 217, 202, 0.4);
}

/* Mobile Social Icons in header */
.header-mobile-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color 0.2s ease;
}
.header-mobile-social a svg {
  width: 22px;
  height: 22px;
}
.header-mobile-social a:hover {
  color: var(--color-gold);
}
@media (min-width: 992px) {
  .header-mobile-social {
    display: none;
  }
}

/* Hamburger (visible on mobile < 992px) */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: calc(var(--z-menu) + 1);
}
.hamburger-line {
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Slide-in Menu Panel (from right) */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.menu-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Close Button */
.menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 2;
}
.menu-close-btn:hover {
  color: #007B8C;
}

/* Menu Nav */
.menu-nav {
  list-style: none;
  text-align: left;
  flex: 1;
}
.menu-nav li {
  margin: 0;
  padding: 0;
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.menu-overlay.is-open .menu-nav li {
  transform: translateX(0);
  opacity: 1;
}
.menu-overlay.is-open .menu-nav li:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.is-open .menu-nav li:nth-child(2) { transition-delay: 0.1s; }
.menu-overlay.is-open .menu-nav li:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.is-open .menu-nav li:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay.is-open .menu-nav li:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.is-open .menu-nav li:nth-child(6) { transition-delay: 0.3s; }
.menu-overlay.is-open .menu-nav li:nth-child(7) { transition-delay: 0.35s; }
.menu-overlay.is-open .menu-nav li:nth-child(8) { transition-delay: 0.4s; }
.menu-nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #003866;
  text-decoration: none;
  display: block;
  padding: 14px 0;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.menu-nav a:hover {
  color: #007B8C;
}
.menu-nav a.active {
  color: #007B8C;
}

/* Social Icons at bottom of menu */
.menu-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,56,102,0.1);
}
.menu-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003866;
  transition: color 0.2s ease;
}
.menu-social-icons a svg {
  width: 28px;
  height: 28px;
}
.menu-social-icons a:hover {
  color: #007B8C;
}

/* ========== Hero (Homepage) ========== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 5;
}
.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 24px;
}
.hero-quote {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ========== Page Hero (Subpages) ========== */
.page-hero {
  height: 40vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-black);
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 5;
}
.page-hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  padding-top: 60px;
}
.page-hero-content h1 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 12px;
}
.page-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Layout & Sections ========== */
.section-padding {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

/* ========== Yacht Cards ========== */
.yacht-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}
.yacht-card {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}
.yacht-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.yacht-img-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.yacht-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.yacht-card:hover .yacht-img-wrap img {
  transform: scale(1.05);
}
.yacht-info {
  padding: 32px 24px;
}
.yacht-name {
  font-size: 24px;
  margin-bottom: 8px;
}
.yacht-marina {
  color: var(--color-gray);
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.yacht-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  padding: 16px 0;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.yacht-actions {
  display: flex;
  gap: 16px;
}
.yacht-actions button,
.yacht-actions a {
  flex: 1;
  padding: 12px 0;
}

/* ========== Tabs & Destinations ========== */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-gray);
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
  transition: var(--transition-smooth);
}
.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}
.tab-btn.active {
  color: var(--color-black);
}
.tab-btn.active::after {
  width: 100%;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destinations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.island-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.island-item {
  background: var(--color-white);
  padding: 24px;
  border: 1px solid var(--color-light-gray);
}
.island-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.island-item p {
  font-size: 14px;
  color: var(--color-gray);
}
.map-container iframe {
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(30%);
  transition: filter 0.4s;
}
.map-container iframe:hover {
  filter: grayscale(0%);
}

/* ========== Why Choose Us ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--color-white);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--color-white);
  padding: 40px 32px;
  border: 1px solid var(--color-light-gray);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 4px;
}

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-card {
  background: var(--color-white);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
}
.pricing-card.featured .pricing-badge {
  display: block;
}
.pricing-badge {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-black);
  padding: 6px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-gold);
  margin: 20px 0;
}
.pricing-price span {
  font-size: 16px;
  color: var(--color-gray);
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light-gray);
  font-size: 14px;
  color: var(--color-text);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 217, 202, 0.1);
  border-radius: 50%;
}
.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--color-gray);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-light-gray);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-white);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ========== Social Icons ========== */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border-radius: 50%;
}
.social-link:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(91, 217, 202, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--color-gold-hover);
  transform: translateY(-3px);
}

/* ========== Modal ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--color-white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.modal-overlay.is-open .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-black);
}

/* ========== Footer ========== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: var(--color-gold);
  margin-bottom: 24px;
  font-size: 20px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a:hover {
  color: var(--color-gold);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--color-gray);
}
.footer-legal-links {
  display: flex;
  gap: 8px;
}
.footer-legal-links a {
  color: var(--color-gray);
  font-size: 13px;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--color-gold);
}
.footer-legal-links a + a::before {
  content: "·";
  margin-right: 8px;
  color: var(--color-gray);
}

/* (Dream Lifestyle CSS consolidated below at line ~3570) */

/* ========== Great Yacht Section ========== */
.great-yacht-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  overflow: hidden;
  padding: 30px 0;
  /* Matches Wix spacing */
}
.great-yacht-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 680px;
}
.great-yacht-left {
  flex: 1;
  padding: 60px 48px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.great-yacht-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.great-heading-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.1;
}
.great-heading-indent-0 {
  font-size: 72px;
  padding-left: 0;
}
.great-heading-indent-1 {
  font-size: 54px;
  padding-left: 40px;
}
.great-heading-indent-2 {
  font-size: 48px;
  padding-left: 120px;
}
.great-heading-large {
  font-size: 84px;
  line-height: 1.05;
  margin-top: 4px;
}
.great-heading-teal {
  color: #007B8C;
}
.great-yacht-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.75);
  line-height: 1.75;
  margin-bottom: 12px;
}
.great-yacht-body p:last-child {
  margin-bottom: 0;
}
.teal-highlight {
  color: #007B8C;
  font-weight: 500;
}
.great-yacht-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.great-yacht-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% 51%;
  max-width: none;
}

/* Great Yacht Responsive */
@media (max-width: 1024px) {
  .great-yacht-left {
    padding: 40px 32px;
  }
  .great-heading-indent-0 { font-size: 58px; }
  .great-heading-indent-1 { font-size: 44px; padding-left: 24px; }
  .great-heading-indent-2 { font-size: 38px; padding-left: 80px; }
  .great-heading-large { font-size: 66px; }
}
@media (max-width: 768px) {
  .great-yacht-inner {
    flex-direction: column;
    min-height: auto;
  }
  .great-yacht-left {
    padding: 40px 24px;
    order: 1;
  }
  .great-yacht-right {
    min-height: 350px;
    order: 0;
  }
  .great-heading-indent-0 { font-size: 48px; }
  .great-heading-indent-1 { font-size: 36px; padding-left: 16px; }
  .great-heading-indent-2 { font-size: 32px; padding-left: 56px; }
  .great-heading-large { font-size: 52px; }
  .great-yacht-heading {
    margin-bottom: 28px;
  }
}

/* ========== Every Detail Section ========== */
.detail-diff-section {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  overflow: hidden;
  padding: 6px 0 30px;
  /* Matches Wix spacing — less padding top */
}
.detail-diff-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 560px;
}
.detail-diff-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.detail-diff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  max-width: none;
}
.detail-diff-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.detail-diff-heading {
  display: flex;
  flex-direction: column;
}
.detail-heading-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.1;
}
.detail-indent-1 {
  font-size: 64px;
  padding-left: 40px;
}
.detail-indent-2 {
  font-size: 64px;
  padding-left: 80px;
}
.detail-heading-large {
  font-size: 90px;
  line-height: 1.05;
  margin-top: 4px;
}
.detail-heading-teal {
  color: #007B8C;
}

/* Every Detail Responsive */
@media (max-width: 1024px) {
  .detail-indent-1 { font-size: 50px; padding-left: 24px; }
  .detail-indent-2 { font-size: 50px; padding-left: 56px; }
  .detail-heading-large { font-size: 70px; }
  .detail-diff-text { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .detail-diff-inner {
    flex-direction: column;
    min-height: auto;
  }
  .detail-diff-image {
    min-height: 300px;
  }
  .detail-diff-text {
    padding: 40px 24px;
  }
  .detail-indent-1 { font-size: 40px; padding-left: 16px; }
  .detail-indent-2 { font-size: 40px; padding-left: 40px; }
  .detail-heading-large { font-size: 56px; }
}

/* ========== Fleet Filters ========== */
.filter-btn {
  background: transparent;
  border: 1px solid var(--color-light-gray);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text);
}
.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.filter-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}
@media (max-width: 768px) {
  .hero-quote {
    font-size: 32px;
  }
  .page-hero-content h1 {
    font-size: 28px;
  }
  .destinations-layout {
    grid-template-columns: 1fr;
  }
  .island-grid {
    grid-template-columns: 1fr;
  }
  .header.scrolled .logo,
  .logo {
    color: var(--color-white) !important;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .yacht-grid {
    grid-template-columns: 1fr;
  }
  .map-container iframe {
    height: 300px;
  }
}

/* ========== Our Team Page ========== */

/* --- Hero --- */
.ourteam-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.ourteam-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 58%;
}
.ourteam-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 36, 60, 0.25) 0%, rgba(0, 56, 102, 0.35) 100%);
}
.ourteam-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 24px 8% 24px 40%;
}
.ourteam-hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* --- Founder Section --- */
.founder-section {
  background: #ffffff;
  padding: 80px 0;
}
.founder-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.founder-text {
  flex: 1.2;
}
.founder-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.founder-heading-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.1;
}
.founder-heading-sm {
  font-size: 36px;
  padding-left: 20px;
}
.founder-heading-lg {
  font-size: 64px;
}
.founder-heading-md {
  font-size: 42px;
  padding-left: 40px;
}
.founder-heading-indent {
  padding-left: 80px;
}
.founder-heading-teal {
  color: #007B8C;
}
.founder-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.founder-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-quote-italic {
  font-style: italic;
}
.founder-signature {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-signature strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}
.founder-signature span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.65);
}
.founder-portrait {
  flex: 0.8;
  position: relative;
}
.founder-portrait img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* --- Mission Banner --- */
.mission-banner {
  background: linear-gradient(135deg, #00243C 0%, #003866 50%, #004A7C 100%);
  padding: 80px 0;
}
.mission-banner-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.mission-heading {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mission-heading-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  font-size: 56px;
}
.mission-heading-lg {
  font-size: 72px;
}
.mission-heading-teal {
  color: #5CC8C8;
  font-size: 60px;
}
.mission-body {
  flex: 1;
}
.mission-body-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.mission-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-body p:last-child {
  margin-bottom: 0;
}
.mission-link {
  color: #5CC8C8;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
.mission-link:hover {
  color: #7DDFDF;
}

/* --- Team Info Section (Crew + Diving) --- */
.team-info-section {
  background: #ffffff;
  padding: 60px 0;
}
.team-info-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.team-info-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.team-info-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.team-info-text {
  flex: 1;
}
.team-info-heading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 20px;
}
.team-info-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.team-info-text p:last-child {
  margin-bottom: 0;
}
.teal-link {
  color: #007B8C;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.teal-link:hover {
  color: #00A3B4;
}

/* --- Collaborations Section --- */
.collab-section {
  background: #eef5f3;
  padding: 60px 0 80px;
}
.collab-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.collab-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.collab-heading-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}
.collab-heading-dark {
  font-size: 52px;
  color: var(--color-black);
}
.collab-heading-teal {
  font-size: 64px;
  color: #007B8C;
}
.collab-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.collab-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.collab-logo:hover {
  opacity: 1;
}
.collab-logo img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* --- Our Team Page Responsive --- */
@media (max-width: 1024px) {
  .ourteam-hero-quote {
    font-size: 48px;
  }
  .founder-inner {
    gap: 40px;
    padding: 0 32px;
  }
  .founder-heading-lg { font-size: 52px; }
  .founder-heading-md { font-size: 34px; }
  .mission-banner-inner {
    gap: 40px;
    padding: 0 32px;
  }
  .mission-heading-line { font-size: 44px; }
  .mission-heading-lg { font-size: 56px; }
  .mission-heading-teal { font-size: 48px; }
  .team-info-inner {
    gap: 32px;
    padding: 0 32px;
  }
  .collab-heading-dark { font-size: 42px; }
  .collab-heading-teal { font-size: 52px; }
}

@media (max-width: 768px) {
  .ourteam-hero {
    height: 320px;
  }
  .ourteam-hero-quote {
    font-size: 32px;
  }
  .founder-section {
    padding: 48px 0;
  }
  .founder-inner {
    flex-direction: column;
    padding: 0 24px;
  }
  .founder-text {
    display: contents;
  }
  .founder-heading {
    order: 1;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .founder-heading-sm { font-size: 28px; }
  .founder-heading-lg { font-size: 44px; }
  .founder-heading-md { font-size: 30px; }
  .founder-heading-indent { padding-left: 0; }
  .founder-portrait {
    order: 2;
    max-width: 100%;
  }
  .founder-subtitle {
    order: 3;
  }
  .founder-body {
    order: 4;
  }
  .founder-signature {
    order: 5;
  }
  .mission-banner {
    padding: 48px 0;
  }
  .mission-banner-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
  .mission-heading-line { font-size: 36px; }
  .mission-heading-lg { font-size: 44px; }
  .mission-heading-teal { font-size: 40px; }
  .team-info-section {
    padding: 40px 0;
  }
  .team-info-inner {
    flex-direction: column;
    padding: 0 24px;
  }
  .collab-section {
    padding: 48px 0 60px;
  }
  .collab-inner {
    padding: 0 24px;
  }
  .collab-heading-dark { font-size: 32px; }
  .collab-heading-teal { font-size: 40px; }
  .collab-logos {
    gap: 24px;
  }
  .collab-logo img {
    max-height: 44px;
  }
}

/* ========== Private Charter Page ========== */

/* --- Charter Hero --- */
.charter-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.charter-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.charter-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 24, 48, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%);
}
.charter-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 48px;
}
.charter-hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  text-align: center;
}

/* --- Charter Category Sections --- */
.charter-category {
  background: #ffffff;
  padding: 72px 0 40px;
}
.charter-category-alt {
  background: #f5f9fc;
}
.charter-category-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.charter-category-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.charter-cat-line {
  display: block; /* Ensure they stack exactly */
  font-family: 'The Seasons', serif;
  font-style: normal; /* The Seasons uses normal for this */
  font-weight: 400;
  font-size: 55px; /* Exact Wix size for both */
  line-height: 55px; /* Tight stack, exactly 55px */
}
.charter-cat-teal {
  color: #007B8C; /* Teal */
}
.charter-cat-dark {
  color: #003866; /* Dark Blue */
}
.charter-category-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 960px;
}
.charter-category-desc strong {
  font-weight: 500;
  color: var(--color-black);
}
.charter-category-footer {
  margin-top: 8px;
}
.charter-features {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 28px;
  max-width: 960px;
}
.charter-features li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 8px;
}
.charter-features li strong {
  font-weight: 500;
  color: var(--color-black);
}

/* Charter yacht grid (3 cols) */
.charter-yacht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 24px;
}

/* Book Now button */
.charter-book-wrap {
  text-align: center;
  padding: 24px 0 16px;
}
.charter-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 56px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 56, 102, 0.25);
}
.charter-book-btn:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 56, 102, 0.35);
}

/* --- Destinations Section --- */
.charter-destinations {
  background: #f0f4f8;
  padding: 72px 0 60px;
}
.charter-destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.charter-dest-layout {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}
.charter-dest-text {
  flex: 1;
}
.charter-dest-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}
.charter-dest-line {
  display: block; /* Stack lines securely */
  font-family: 'The Seasons', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 53.6px; /* Exact size for Discover, Phuket, Destinations */
  line-height: 53.6px; /* Tight stack */
  color: #003866; /* Dark Blue */
}
.charter-dest-phuket {
  margin-left: 25px; /* Offset right */
}
.charter-dest-remarkable {
  font-size: 74.2px; /* Emphasized size */
  line-height: 74.2px;
  color: #007B8C; /* Teal */
  margin-left: -17px; /* Pull left */
  margin-top: -8px; /* Slight visual tweak to offset the larger line-height padding */
}
.charter-dest-destinations {
  margin-left: -16px; /* Align mostly with Remarkable */
}
.charter-dest-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.75);
  line-height: 1.75;
  margin-bottom: 14px;
}
.charter-dest-map {
  flex: 1;
  max-width: 480px;
}
.charter-dest-map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- Destination Accordion --- */
.dest-accordion {
  margin-bottom: 16px;
}
.dest-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dest-accordion-header:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
}
.dest-toggle {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.dest-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 8px;
}
.dest-accordion-body.open {
  max-height: 1200px;
  padding: 24px 8px;
}

/* --- Destination Cards Grid --- */
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.dest-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.05);
}
.dest-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  margin: 14px 12px 4px;
}
.dest-stats {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(0, 56, 102, 0.6);
  margin: 0 12px 2px;
}
.dest-avail {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #007B8C;
  font-weight: 500;
  margin: 0 12px 14px;
}

/* --- Private Charter Responsive --- */
@media (max-width: 1024px) {
  .charter-hero-quote { font-size: 48px; }
  .charter-cat-line { line-height: 1; }
  .charter-cat-teal { font-size: 42px; }
  .charter-cat-dark { font-size: 42px; }
  .charter-yacht-grid { grid-template-columns: repeat(2, 1fr); }
  .charter-dest-layout { gap: 32px; }
  .charter-dest-line { line-height: 1; font-size: 42px; }
  .charter-dest-phuket { margin-left: 20px; }
  .charter-dest-remarkable { font-size: 58px; line-height: 58px; margin-left: -12px; margin-top: -6px; }
  .charter-dest-destinations { margin-left: -12px; }
  .dest-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .charter-hero { height: 380px; }
  .charter-hero-quote { font-size: 32px; }
  .charter-hero-content { padding: 0 20px 32px; }
  .charter-category { padding: 48px 0 24px; }
  .charter-category-inner { padding: 0 24px; }
  .charter-cat-line { line-height: 1; }
  .charter-cat-teal { font-size: 36px; }
  .charter-cat-dark { font-size: 36px; }
  .charter-yacht-grid { grid-template-columns: 1fr; gap: 20px; }
  .charter-book-btn { padding: 14px 40px; font-size: 15px; }
  .charter-destinations { padding: 48px 0 40px; }
  .charter-destinations-inner { padding: 0 24px; }
  .charter-dest-layout { flex-direction: column; gap: 24px; }
  .charter-dest-map { max-width: 100%; }
  .charter-dest-line { line-height: 1; font-size: 32px; }
  .charter-dest-phuket { margin-left: 14px; }
  .charter-dest-remarkable { font-size: 44px; line-height: 44px; margin-left: -8px; margin-top: -4px; }
  .charter-dest-destinations { margin-left: -8px; }
  .dest-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dest-card-img { height: 120px; }
  .dest-card h4 { font-size: 13px; }
}

/* ========== Private Dive Page ========== */

/* --- Dive Hero --- */
.dive-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.dive-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.dive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,24,48,0.45) 0%, rgba(0,0,0,0.05) 60%);
}
.dive-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
.dive-hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* --- Dive Intro (Partnership) --- */
.dive-intro {
  background: #f5f9fc;
  padding: 72px 0;
}
.dive-intro-inner {
  max-width: 1264px; /* Match Wix 1264px main container */
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 40px; /* Closer to Wix gap */
  align-items: center; /* Center vertically with image */
}
.dive-intro-text {
  flex: 1;
}
.dive-intro-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  align-items: center; /* Center align like Wix */
  text-align: center;
}
.dive-heading-line {
  font-family: 'The Seasons', serif; /* Closest to 'The Seasons' */
  line-height: 1.05;
  margin-bottom: 4px;
}
.dive-heading-teal {
  color: #007B8C;
}
.dive-heading-dark {
  color: #003866; /* Exact dark blue from Wix */
}
.dive-heading-base {
  font-size: 54px; /* Matches 53.7px from Wix */
  font-weight: 400;
  font-style: normal;
}
.dive-heading-script {
  font-family: 'The Seasons', serif;
  font-size: 74px; /* Matches 74.2px from Wix */
  font-weight: 400;
  font-style: italic;
}
.dive-ampersand {
  font-family: 'Times New Roman', Times, serif; /* 'Times' italic ampersand is the classic looped style shown in the reference */
  font-style: italic;
  font-weight: 400; 
  font-size: 84px; /* Slightly larger to match the scale of the reference script */
  line-height: 1;
}
.dive-intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,56,102,0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.dive-link {
  color: #007B8C;
  text-decoration: underline;
}
.dive-features-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.dive-features-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(0,56,102,0.8);
  line-height: 1.75;
  margin-bottom: 4px;
}
.dive-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--color-black);
}
.dive-intro-image {
  flex: 1; /* 50/50 split with text column */
  max-width: 632px; /* Match Wix column width */
}
.dive-intro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* Desktop/mobile image switching */
.dive-intro-image--mobile { display: none; }
.dive-intro-image--desktop { display: block; }

/* Intro Image Slider */
.dive-intro-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.dive-intro-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.dive-intro-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 8px;
  box-shadow: none !important;
}
.dive-intro-slide.active {
  opacity: 1;
}
.dive-intro-prev,
.dive-intro-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  color: #003866;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.dive-intro-prev:hover,
.dive-intro-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.dive-intro-prev { left: 10px; }
.dive-intro-next { right: 10px; }
.dive-intro-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dive-intro-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.dive-intro-dot.active {
  background: #fff;
}
.dive-img-caption {
  font-size: 12px;
  color: rgba(0,56,102,0.6);
  margin-top: 12px;
  line-height: 1.5;
}

/* --- 30 Years Experience --- */
.dive-experience {
  background: #fff;
  padding: 72px 0;
  text-align: center;
}
.dive-experience-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.dive-experience-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.dive-exp-line {
  display: block; /* Force stacking */
  font-family: 'The Seasons', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 53.6px; /* Exact size from Wix */
  line-height: 53.6px; /* Tight line height */
}
.dive-exp-dark {
  color: #003866; /* Dark Blue */
}
.dive-exp-teal {
  color: #007B8C; /* Teal */
}
.dive-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.dive-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
}
.dive-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
}
.dive-slide.active {
  opacity: 1;
}
.dive-slider-prev,
.dive-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  color: #003866;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.dive-slider-prev:hover,
.dive-slider-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.dive-slider-prev { left: 12px; }
.dive-slider-next { right: 12px; }
.dive-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dive-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.dive-slider-dot.active {
  background: #fff;
}
.dive-slider-img {
  width: 100%;
  max-width: 640px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.dive-equipment-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(0,56,102,0.7);
  margin-bottom: 20px;
}
.dive-partner-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.dive-partner-logos img {
  height: 48px;
  object-fit: contain;
}

/* --- Pricing / Equipment --- */
.dive-pricing {
  background: #f5f9fc;
  padding: 72px 0 48px;
}
.dive-pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.dive-pricing-text {
  flex: 1;
}
.dive-pricing-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.dive-pricing-dark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
.dive-pricing-teal {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: #007B8C;
  line-height: 1.15;
}

/* --- Diving Responsive Mixins --- */
@media (max-width: 1024px) {
  .dive-exp-line {
    font-size: 46px;
    line-height: 46px; /* Tight proportion */
  }
}

@media (max-width: 768px) {
  .dive-exp-line {
    font-size: 36px;
    line-height: 38px; /* Slightly looser on mobile for readability */
  }
}
.dive-pricing-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,56,102,0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.dive-price-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.dive-price-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(0,56,102,0.8);
  line-height: 1.75;
  margin-bottom: 4px;
}
.dive-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  color: rgba(0,56,102,0.6) !important;
}

/* Pricing Grid (2x2 + 1) */
.dive-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 320px;
  flex-shrink: 0;
}
.dive-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: none;
  border-radius: 8px;
  text-align: center;
  background: #f0f0f0;
}
.dive-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}
.dive-price-small {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(0,56,102,0.5);
  margin-bottom: 4px;
}
.dive-price-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,56,102,0.5);
  margin-top: 4px;
}
.dive-price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
}

.dive-cta-wrap {
  text-align: center;
  padding: 32px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.dive-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 48px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,56,102,0.25);
}
.dive-cta-btn:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,56,102,0.35);
}

/* --- Top 5 Dive Sites --- */
.dive-sites {
  background: #fff;
  padding: 72px 0 60px;
}
.dive-sites-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.dive-sites-layout {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}
.dive-sites-text {
  flex: 1;
}
.dive-sites-heading {
  display: flex;
  align-items: flex-start; /* Align TOP and 5 at the top */
  margin-bottom: 32px;
  gap: 12px;
}
.dive-heading-text-left {
  display: flex;
  flex-direction: column;
}
.dive-sites-top {
  font-family: 'The Seasons', serif;
  font-size: 74px; /* Exact Wix size */
  font-weight: 400;
  font-style: italic;
  color: #007B8C; /* Teal */
  line-height: 1;
  margin-bottom: -10px; /* Pull Dive Sites closer to TOP to match Wix tight stacking */
  margin-left: 20px; /* Slight indent for TOP relative to Dive Sites to match Wix offset */
}
.dive-sites-num {
  font-family: 'The Seasons', serif;
  font-size: 173px; /* Exact Wix size */
  font-weight: 400;
  font-style: normal;
  color: #007B8C; /* Teal */
  line-height: 0.75; /* Tight line height to align tops */
  margin-top: 10px; /* Push down slightly to align perfectly with top text */
}
.dive-sites-dark {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Exact Wix size */
  font-weight: 400;
  color: #003866; /* Exact Dark Blue */
  line-height: 1.05;
}
.dive-sites-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,56,102,0.8);
  line-height: 1.75;
}
.dive-teal { color: #007B8C; }
.dive-sites-map {
  flex-shrink: 0;
  width: 340px;
}
.dive-map-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: #003866;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
}
.dive-sites-map img {
  width: 100%;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Dive Site Cards --- */
.dive-site-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dive-site-card {
  display: flex;
  gap: 24px;
  background: #f5f9fc;
  border: 1px solid rgba(0,56,102,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.dive-site-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.dive-site-img {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
.dive-site-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dive-site-card:hover .dive-site-img img {
  transform: scale(1.05);
}
.dive-site-info {
  padding: 24px 28px 24px 0;
  flex: 1;
}
.dive-site-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}
.dive-site-meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 12px !important;
}
.dive-site-info p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0,56,102,0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* --- Dive Page Responsive --- */
@media (max-width: 1024px) {
  .dive-hero-quote { font-size: 44px; }
  .dive-intro-inner { gap: 32px; }
  .dive-heading-base { font-size: 44px; }
  .dive-heading-script { font-size: 60px; }
  .dive-heading-dark { font-size: 40px; }
  .dive-intro-image { max-width: 50%; }
  .dive-exp-italic { font-size: 42px; }
  .dive-pricing-inner { gap: 32px; }
  .dive-sites-layout { gap: 32px; }
  .dive-sites-heading { justify-content: center; }
  .dive-sites-top { font-size: 56px; margin-left: 0; }
  .dive-sites-num { font-size: 130px; margin-top: 0; }
  .dive-sites-dark { font-size: 42px; }
}

@media (max-width: 768px) {
  .dive-hero { height: 380px; }
  .dive-hero-content { padding: 0 24px; }
  .dive-hero-quote { font-size: 32px; }
  .dive-intro { padding: 48px 0; }
  .dive-intro-inner { flex-direction: column; padding: 0 24px; align-items: center; }
  .dive-intro-image { max-width: 100%; width: 100%; }
  .dive-intro-image--mobile { display: block; max-width: 100%; width: 100%; margin-bottom: 24px; }
  .dive-intro-image--desktop { display: none; }

  .dive-heading-base { font-size: 36px; }
  .dive-heading-script { font-size: 48px; }
  .dive-experience { padding: 48px 0; }
  .dive-experience-inner { padding: 0 24px; }
  .dive-exp-italic { font-size: 32px; }
  .dive-pricing { padding: 48px 0 32px; }
  .dive-pricing-inner { flex-direction: column; padding: 0 24px; }
  .dive-pricing-grid { width: 100%; }
  .dive-cta-wrap { padding: 24px 24px 0; }
  .dive-cta-btn { padding: 14px 36px; font-size: 15px; }
  .dive-sites { padding: 48px 0 40px; }
  .dive-sites-inner { padding: 0 24px; }
  .dive-sites-layout { flex-direction: column; gap: 24px; }
  .dive-sites-map { width: 100%; }
  .dive-sites-heading { flex-direction: column-reverse; align-items: center; text-align: center; gap: 0; }
  .dive-heading-top-wrap { margin-left: 0; margin-bottom: 0; }
  .dive-heading-main-wrap { flex-direction: column; align-items: center; gap: 10px; }
  .dive-heading-text-right { padding-bottom: 0; }
  .dive-sites-top { font-size: 42px; }
  .dive-sites-num { font-size: 100px; line-height: 1; margin: 10px 0; }
  .dive-sites-dark { font-size: 34px; }
  .dive-site-card { flex-direction: column-reverse; }
  .dive-site-img { width: 100%; height: 220px; }
  .dive-site-info { padding: 20px; }
}

/* ========== Fractional Ownerships Page ========== */

/* --- Dream Section --- */
.fo-dream-section {
  background: #f5f9fc;
  padding: 80px 0;
}
.fo-dream-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.fo-dream-text {
  flex: 1;
}
.fo-dream-right {
  flex: 0 0 420px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.fo-dream-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fo-dream-heading {
  display: flex;
  flex-direction: column;
  align-items: center; /* Base centering, we offset from here */
  text-align: center;
  margin-bottom: 40px;
}
.fo-head-make {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Matches Wix */
  font-weight: 400;
  color: #003866; /* Dark Blue */
  line-height: 1;
  margin-left: 20px; /* Offset relative to center */
}
.fo-head-yourdream {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Matches Wix */
  font-weight: 400;
  color: #003866; /* Dark Blue */
  line-height: 1;
  margin-left: -50px; /* Shift left */
}
.fo-head-notjust {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Matches Wix */
  font-weight: 400;
  color: #007B8C; /* Teal */
  line-height: 1;
  margin-right: -20px; /* Shift right */
  margin-top: -1px; /* Overlap */
}
.fo-head-adream {
  font-family: 'The Seasons', serif;
  font-style: italic;
  font-size: 74px; /* Matches Wix */
  font-weight: 400;
  color: #007B8C; /* Teal */
  line-height: 1;
  margin-left: 20px; /* Shift right */
  margin-top: -1px; /* Overlap */
}

/* --- Promo Card Slider --- */
.fo-promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
/* Desktop/mobile slider switching */
.fo-promo-slider--mobile { display: none; }
.fo-promo-slider--desktop { display: block; }

.fo-promo-track {
  display: flex;
  transition: transform 0.5s ease;
}
.fo-promo-slide {
  min-width: 100%;
}
.fo-promo-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.fo-promo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.fo-promo-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.fo-promo-prev {
  left: 12px;
}
.fo-promo-next {
  right: 12px;
}
.fo-promo-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.fo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.fo-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* --- Content Body (inside dream-text) --- */
.fo-content-body {
  margin-top: 40px;
}
.fo-content-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
}
.fo-content-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.5;
}
.fo-content-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fo-bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 28px;
}
.fo-bullet-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 4px;
}
.fo-section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-black);
  margin: 32px 0 16px;
}
.fo-cost-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 56, 102, 0.7);
  margin-bottom: 8px;
}
.fo-option-label {
  color: #007B8C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fo-option-name {
  font-weight: 500;
  color: var(--color-black);
}

/* --- WhatsApp Button --- */
.fo-whatsapp-wrap {
  margin-top: 40px;
}
.fo-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 56, 102, 0.25);
}
.fo-whatsapp-btn:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 56, 102, 0.35);
}
.fo-whatsapp-btn svg {
  flex-shrink: 0;
}

/* --- Fractional Ownerships Responsive --- */
@media (max-width: 1024px) {
  .fo-dream-inner { gap: 40px; padding: 0 32px; }
  .fo-head-make { font-size: 44px; margin-left: 16px; }
  .fo-head-yourdream { font-size: 44px; margin-left: -40px; }
  .fo-head-notjust { font-size: 44px; margin-right: -16px; margin-top: -1px; }
  .fo-head-adream { font-size: 60px; margin-left: 16px; margin-top: -1px; }
  .fo-dream-right { flex: 0 0 360px; }
}

@media (max-width: 768px) {
  .fo-dream-section { padding: 48px 0; }
  .fo-dream-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
  .fo-head-make { font-size: 36px; margin-left: 12px; }
  .fo-head-yourdream { font-size: 36px; margin-left: -24px; }
  .fo-head-notjust { font-size: 36px; margin-right: -12px; margin-top: -1px; }
  .fo-head-adream { font-size: 48px; margin-left: 12px; margin-top: -1px; }
  .fo-dream-right { flex: 0 0 auto; width: 100%; max-width: 400px; position: static; }
  .fo-content-title { font-size: 16px; }
  .fo-content-subtitle { font-size: 15px; }
  .fo-whatsapp-btn { padding: 14px 32px; font-size: 15px; }
  .fo-promo-slider--mobile { display: block; margin-bottom: 24px; }
  .fo-promo-slider--desktop { display: none; }
  .fo-dream-right { flex: 0 0 auto; width: 100%; max-width: 100%; position: static; }
}

/* ========== Memberships Page ========== */

/* --- Membership Section (shared) --- */
.mb-section {
  background: #f5f9fc;
  padding: 40px 0;
}
.mb-section:nth-child(even) {
  background: #ffffff;
}
.mb-section-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.mb-section-inner.mb-reverse {
  flex-direction: row-reverse;
}
.mb-text-col {
  flex: 1;
}
.mb-image-col {
  flex: 1;
}
.mb-image-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- Big Headings Typography (Playfair & Inter) --- */
.mb-big-heading {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center everything */
  text-align: center;
  margin-bottom: 40px;
}
.mb-heading-top-row {
  display: flex;
  align-items: baseline; /* Align bottom of numbers and text */
  margin-left: -60px; /* Offset left visually */
  gap: 12px;
}
.mb-heading-num {
  font-family: 'The Seasons', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 74px; /* Exact Wix size */
  color: #003866; /* Dark Blue */
  line-height: 1;
}
.mb-heading-sm {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Exact Wix size */
  font-weight: 400;
  color: #003866;
  line-height: 1;
}
.mb-heading-overlap {
  font-family: 'The Seasons', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 74px; /* Exact Wix size */
  color: #007B8C; /* Teal */
  line-height: 1;
  margin-top: -12px; /* Overlap "365" and "days of" */
  position: relative;
  z-index: 2;
}
.mb-hyphen {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
}
.mb-heading-yachting {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Exact Wix size */
  font-weight: 400;
  color: #003866;
  line-height: 1;
  margin-left: 100px; /* Offset right like Wix */
  margin-top: -6px; /* Tight stacking */
}
.mb-heading-line {
  display: block;
  font-family: 'The Seasons', serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.05;
}
.mb-heading-dark {
  color: var(--color-black);
}
.mb-heading-teal {
  color: #007B8C;
}
.mb-heading-lg {
  font-size: 64px;
}
.mb-heading-xl {
  font-size: 76px;
}
.mb-heading-indent {
  padding-left: 90px;
}

/* --- Exclusive "5" styling --- */
.mb-exclusive-heading {
  flex-direction: row !important; /* Override column flex */
  align-items: flex-end !important; /* Align bottom to the 5 */
  justify-content: flex-end; /* Push to right like original */
  text-align: right;
  gap: 6px; /* 6px horizontal gap over to the 5 */
}
.mb-exclusive-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Right align the text block itself */
  margin-bottom: 24px; /* Lift text slightly relative to 5 */
}
.mb-exclusive-top {
  font-family: 'The Seasons', serif;
  font-size: 54px; /* Exact Wix size */
  font-weight: 400;
  color: #003866; /* Dark Blue */
  line-height: 1;
}
.mb-exclusive-mid {
  font-family: 'The Seasons', serif;
  font-style: italic;
  font-size: 74px; /* Exact Wix size */
  font-weight: 400;
  color: #007B8C; /* Teal */
  line-height: 1;
  margin-right: -29px; /* Shift "Members of" 29px left relative to "Exclusive Only" */
  margin-top: 1px; /* 1px gap */
}
.mb-num-5 {
  font-family: 'The Seasons', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 234px; /* Exact Wix size */
  color: #007B8C; /* Teal */
  line-height: 0.75; /* Tight to remove extra spacing */
  margin-left: 24px; /* Shift "5" further to the right */
}

/* --- Body Text --- */
.mb-body {
  max-width: 580px;
}
.mb-body-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 16px;
}
.mb-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mb-body p strong {
  font-weight: 600;
  color: var(--color-black);
}
.mb-bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.mb-bullet-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.8);
  line-height: 1.75;
  margin-bottom: 4px;
}
.mb-bullet-list li strong {
  font-weight: 600;
  color: #007B8C;
}

/* --- CTA Section --- */
.mb-cta-section {
  background: #f5f9fc;
  padding: 48px 0 80px;
}
.mb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.mb-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 56px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 56, 102, 0.25);
  min-width: 300px;
}
.mb-cta-btn:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 56, 102, 0.35);
}
.mb-cta-btn svg {
  flex-shrink: 0;
}

/* --- Memberships Responsive --- */
@media (max-width: 1024px) {
  .mb-section-inner { gap: 40px; padding: 0 32px; }
  .mb-heading-num { font-size: 60px; }
  .mb-heading-sm { font-size: 42px; }
  .mb-heading-overlap { font-size: 60px; margin-top: -8px; }
  .mb-heading-yachting { font-size: 42px; margin-left: 60px; margin-top: -4px; }
  .mb-heading-top-row { margin-left: -40px; gap: 8px; }
  .mb-heading-md { font-size: 42px; }
  .mb-heading-lg { font-size: 52px; }
  .mb-heading-xl { font-size: 60px; }
  .mb-exclusive-top { font-size: 42px; }
  .mb-exclusive-mid { font-size: 56px; margin-right: -14px; }
  .mb-num-5 { font-size: 180px; }
  .mb-cta-inner { gap: 32px; padding: 0 32px; }
  .mb-cta-btn { padding: 16px 40px; min-width: 260px; }
}

@media (max-width: 768px) {
  .mb-section { padding: 48px 0; }
  .mb-section-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
  .mb-section-inner.mb-reverse {
    flex-direction: column;
  }
  .mb-heading-num { font-size: 48px; }
  .mb-heading-sm { font-size: 32px; }
  .mb-heading-overlap { font-size: 48px; margin-top: -6px; }
  .mb-heading-yachting { font-size: 32px; margin-left: 40px; margin-top: -2px; }
  .mb-heading-top-row { margin-left: -20px; gap: 6px; }
  .mb-heading-md { font-size: 34px; }
  .mb-heading-lg { font-size: 42px; }
  .mb-heading-xl { font-size: 48px; }
  .mb-heading-indent { padding-left: 24px; }
  .mb-exclusive-heading { flex-direction: row !important; align-items: flex-end !important; justify-content: center; gap: 4px; }
  .mb-exclusive-left { align-items: flex-end; margin-bottom: 16px; }
  .mb-exclusive-top { font-size: 28px; }
  .mb-exclusive-mid { font-size: 38px; margin-right: -16px; }
  .mb-num-5 { font-size: 110px; line-height: 0.85; margin-left: 12px; }
  .mb-body { max-width: 100%; }
  .mb-cta-section { padding: 32px 0 48px; }
  .mb-cta-inner {
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
  }
  .mb-cta-btn { width: 100%; min-width: unset; padding: 16px 32px; }
}

/* ========== Contact Page ========== */

/* --- Hero Icons --- */
.ct-hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}
.ct-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.ct-icon-circle svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Contact Section --- */
.ct-section {
  background: #f5f9fc;
  padding: 60px 0 80px;
}
.ct-section-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* --- Form Column --- */
.ct-form-col {
  flex: 1.2;
}
.ct-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--color-black);
  margin-bottom: 32px;
}
.ct-field {
  margin-bottom: 24px;
}
.ct-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 56, 102, 0.7);
  margin-bottom: 8px;
}
.ct-field input,
.ct-field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-black);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 56, 102, 0.25);
  padding: 12px 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.ct-field input:focus,
.ct-field textarea:focus {
  border-bottom-color: #007B8C;
}
.ct-field textarea {
  border: 1px solid rgba(0, 56, 102, 0.25);
  border-radius: 4px;
  padding: 12px;
  resize: vertical;
  min-height: 120px;
}
.ct-field textarea:focus {
  border-color: #007B8C;
}
.ct-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #003866 0%, #004A7C 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.ct-submit-btn:hover {
  background: linear-gradient(135deg, #004A7C 0%, #005A9E 100%);
}

/* --- Info Column --- */
.ct-info-col {
  flex: 0.8;
  padding-top: 8px;
}
.ct-info-block {
  margin-bottom: 32px;
}
.ct-info-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.ct-info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 56, 102, 0.75);
  line-height: 1.7;
}
.ct-info-block p a {
  color: rgba(0, 56, 102, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ct-info-block p a:hover {
  color: #007B8C;
  text-decoration: underline;
}

/* --- Social Icons --- */
.ct-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ct-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-black);
  transition: color 0.2s ease, transform 0.2s ease;
}
.ct-social-icons a:hover {
  color: #007B8C;
  transform: scale(1.1);
}
.ct-social-icons a svg {
  width: 28px;
  height: 28px;
}

/* --- Contact Responsive --- */
@media (max-width: 768px) {
  .ct-hero-icons { gap: 16px; }
  .ct-icon-circle { width: 72px; height: 72px; }
  .ct-icon-circle svg { width: 28px; height: 28px; }
  .ct-section { padding: 40px 0 48px; }
  .ct-section-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
    align-items: center;
    text-align: center;
  }
  .ct-form-col { width: 100%; }
  .ct-form-title { font-size: 28px; text-align: center; }
  .ct-field label { text-align: center; }
  .ct-info-col { width: 100%; text-align: center; }
  .ct-info-heading { font-size: 22px; text-align: center; }
  .ct-social-icons { justify-content: center; }
}

/* ============================================================
   PURSUE YOUR DREAM LIFESTYLE-YACHTING SECTION
   (Matching Wix original layout 1:1)
   ============================================================ */
.dream-lifestyle-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 35px 0 30px;
  /* Matches Wix vertical padding */
}
.dream-lifestyle-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 556px;
  display: flex;
  align-items: stretch;
}
/* Image fills entire section background */
.dream-lifestyle-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.dream-lifestyle-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
/* Overlay text — bottom-left on the image (Wix positioning) */
.dream-lifestyle-overlay-text {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}
.dream-text-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.15;
  color: var(--color-black);
  display: block;
  letter-spacing: 0.5px;
}
.dream-text-large {
  font-size: 76px;
  line-height: 1.05;
  font-weight: 400;
}
.dream-highlight {
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
/* Right column — transparent container with padding */
.dream-lifestyle-info {
  position: relative;
  margin-left: auto;
  width: 44%;
  display: flex;
  align-items: center;
  z-index: 3;
  padding: 30px 20px;
  /* No background — transparent so image shows around the card */
}
/* The actual glassmorphism card */
.dream-info-inner {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 40px rgba(0, 56, 102, 0.08);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dream-info-heading {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 24px;
  line-height: 1.4;
}
.dream-info-body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-black);
  margin-bottom: 18px;
  opacity: 0.85;
}
.dream-info-body p:last-child {
  margin-bottom: 0;
}
.dream-info-body strong {
  font-weight: 500;
  opacity: 1;
}

/* (Great Yacht & Detail Diff CSS consolidated above at ~line 1091) */

/* ============================================================
   RESPONSIVE — Dream Lifestyle Section
   ============================================================ */
@media (max-width: 1024px) {
  .dream-lifestyle-inner { min-height: 480px; }
  .dream-lifestyle-overlay-text { bottom: 40px; left: 40px; }
  .dream-text-line { font-size: 40px; }
  .dream-text-large { font-size: 60px; }
  .dream-lifestyle-info { width: 48%; }
  .dream-info-inner { padding: 36px 28px; }
  .dream-info-heading { font-size: 16px; }
  .dream-info-body p { font-size: 13px; }
}

@media (max-width: 768px) {
  /* Dream section: stack vertically like Wix mobile */
  .dream-lifestyle-inner {
    flex-direction: column;
    min-height: auto;
  }
  .dream-lifestyle-image {
    position: relative;
    width: 100%;
    height: 420px;
    z-index: 1;
  }
  .dream-lifestyle-overlay-text {
    top: 24px;
    left: 20px;
    bottom: auto;
  }
  .dream-text-line { font-size: 30px; }
  .dream-text-large { font-size: 44px; }
  .dream-lifestyle-info {
    width: 100%;
    margin-left: 0;
    margin-top: -80px;
    position: relative;
    z-index: 3;
    padding: 0 16px;
  }
  .dream-info-inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px 12px 0 0;
    border: none;
    box-shadow: 0 -4px 20px rgba(0, 56, 102, 0.06);
    padding: 28px 24px 32px;
  }
  .dream-info-heading { font-size: 16px; margin-bottom: 16px; }
  .dream-info-body p { font-size: 13px; line-height: 1.75; margin-bottom: 14px; }
}

@media (max-width: 480px) {
  .dream-lifestyle-image { height: 340px; }
  .dream-lifestyle-overlay-text { top: 18px; left: 16px; }
  .dream-text-line { font-size: 24px; }
  .dream-text-large { font-size: 36px; }
  .dream-lifestyle-info { margin-top: -60px; }
  .dream-info-inner { padding: 22px 18px 28px; }
}

