/* ============================================
   LADY RINA - Luxury Yacht Charter
   Sessa Marine C48 - Cannes, French Riviera
   ============================================ */

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

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dark: #a88a30;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-100: #f0ede8;
  --gray-200: #d8d4cc;
  --gray-300: #b0a99e;
  --gray-500: #6b6560;
  --gray-700: #3d3832;
  --sea-blue: #1a6b8a;
  --sea-light: #2a9bc0;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.18);
  --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 8px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switch button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-body);
}

.lang-switch button.active,
.lang-switch button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #132240 50%, #1a3a5c 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(10, 22, 40, 0.2) 40%,
    rgba(10, 22, 40, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-gray {
  background: var(--off-white);
}

/* --- Yacht Section --- */
.yacht-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.yacht-images {
  position: relative;
  margin-bottom: 32px;
}

/* --- Gallery Preview Grid (Airbnb style) --- */
.gallery-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 340px;
}

.gallery-main {
  grid-row: 1 / -1;
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb {
  cursor: pointer;
  overflow: hidden;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, brightness 0.3s ease;
}

.gallery-preview img:hover {
  transform: scale(1.05);
  brightness: 1.05;
}

.gallery-show-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.gallery-show-all:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Photo Lightbox --- */
.photo-lightbox {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.photo-lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 10001;
  opacity: 0.8;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px;
  cursor: pointer;
}

.lightbox-image-wrap {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

/* Lightbox responsive */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 70px 16px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-image-wrap img {
    max-height: 60vh;
  }
}

.yacht-info h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.yacht-name-sub {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.yacht-description {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.spec-item {
  text-align: center;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.spec-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--gold);
}
.spec-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.spec-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}

.spec-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- Features/Equipment --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* --- Destinations --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.3) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.destination-duration {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  width: fit-content;
}

.destination-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.destination-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.destination-price small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-weight: 400;
}

/* --- Time Slots --- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.slot-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.slot-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.02));
  position: relative;
}

.slot-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.slot-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.slot-card h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.slot-time {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.slot-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.slot-price small {
  font-size: 0.8rem;
  color: var(--gray-300);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
}

/* --- Itinerary Section --- */
.itinerary-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.itinerary-tab {
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-500);
}

.itinerary-tab.active,
.itinerary-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201, 168, 76, 0.08);
}

.itinerary-content {
  display: none;
}

.itinerary-content.active {
  display: block;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--off-white);
  z-index: 1;
}

.timeline-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}

.timeline-item p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Services Included --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Reviews --- */
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

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

.review-date {
  font-size: 0.8rem;
  color: var(--gray-300);
}

.review-summary {
  text-align: center;
  margin-bottom: 48px;
}

.review-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
}

.review-score-label {
  font-size: 1rem;
  color: var(--gray-500);
}

/* --- CTA Banner --- */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

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

/* ============================================
   DESTINATION PAGES
   ============================================ */

/* Hero */
.dest-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
}

.dest-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 48px;
  max-width: 800px;
}

.dest-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.dest-hero-content h1 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 12px;
}

.dest-hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Quick Info Bar */
.dest-quick-info {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
  position: sticky;
  top: 80px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.dest-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-info-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.dest-info-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.dest-info-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.dest-info-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* Layout */
.dest-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.dest-content {
  min-width: 0;
}

.dest-section {
  margin-bottom: 48px;
}

.dest-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.dest-section > p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Included / Not Included */
.dest-included-grid,
.dest-notincluded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dest-included-item,
.dest-notincluded-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.dest-included-item {
  background: #f0faf0;
}

.dest-notincluded-item {
  background: #fef5f0;
}

.dest-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dest-cross {
  color: var(--danger);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Info Box */
.dest-info-box {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
}

.dest-info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.dest-info-row:last-child {
  margin-bottom: 0;
}

.dest-info-row .dest-info-label {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dest-info-row p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sidebar Price Card */
.dest-sidebar {
  position: sticky;
  top: 160px;
}

.dest-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.dest-price-amount {
  text-align: center;
  margin-bottom: 8px;
}

.dest-price-amount span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.dest-price-amount strong {
  font-size: 2.4rem;
  font-family: var(--font-heading);
  color: var(--navy);
}

.dest-price-detail {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.dest-book-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}

.dest-price-extras {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.dest-price-extras strong {
  color: var(--navy);
}

.dest-price-extras p {
  color: var(--gray-500);
  margin-bottom: 4px;
}

.dest-fuel-note {
  font-size: 0.8rem !important;
  color: var(--gray-300) !important;
  font-style: italic;
  margin-top: 6px;
}

.dest-price-rating {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.dest-price-rating span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.dest-price-rating small {
  color: var(--gray-300);
  font-weight: 400;
}

/* Other destinations grid (2 cols) */
.destinations-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* ============================================
   BOOKING PAGE
   ============================================ */

.page-header {
  background: var(--navy);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 60px 0;
  align-items: start;
}

.booking-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
  background: var(--gray-100);
  transition: var(--transition);
}

.step.active {
  background: var(--navy);
  color: var(--white);
}

.step.completed {
  background: var(--gold);
  color: var(--navy);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.1);
}

.booking-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.booking-section h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-section h3 .icon {
  font-size: 1.3rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}
.booking-section h3 .icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

/* Calendar */
.calendar {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
}

.calendar-header h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.calendar-nav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.calendar-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 12px 8px;
  background: var(--off-white);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px;
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  font-family: var(--font-body);
  color: var(--gray-700);
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(201, 168, 76, 0.1);
  color: var(--navy);
}

.calendar-day.selected {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.calendar-day.today {
  border: 2px solid var(--gold);
}

.calendar-day.disabled {
  color: var(--gray-200);
  cursor: not-allowed;
}

.calendar-day.booked {
  color: var(--gray-200);
  cursor: not-allowed;
  position: relative;
}

.calendar-day.booked::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 2px;
  background: var(--danger);
  top: 50%;
}

.calendar-day.partially-booked {
  position: relative;
}

.calendar-day.partially-booked::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
}

.calendar-day.empty {
  cursor: default;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  padding: 12px 16px;
  background: var(--off-white);
  font-size: 0.75rem;
  color: var(--gray-500);
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.available { background: var(--success); }
.legend-dot.partial { background: var(--warning); }
.legend-dot.booked { background: var(--danger); }

/* Time Slots Selection */
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.time-slot {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--white);
}

.time-slot:hover:not(.unavailable) {
  border-color: var(--gold);
}

.time-slot.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

.time-slot h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.time-slot .time {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.time-slot .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Destination Selection */
.destination-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.destination-option {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: center;
}

.destination-option:hover {
  border-color: var(--gold);
}

.destination-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.destination-option img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.destination-option-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.destination-option-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.destination-option .dest-price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Form Inputs */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--danger);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
  color: var(--gray-300);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6560' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 4px;
}

/* Guest Counter */
.guest-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guest-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  color: var(--navy);
}

.guest-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.guest-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-count {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 30px;
  text-align: center;
}

/* Booking Summary Sidebar */
.booking-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.summary-header {
  background: var(--navy);
  padding: 24px;
  color: var(--white);
}

.summary-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.summary-body {
  padding: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--gray-500);
}

.summary-value {
  font-weight: 600;
  color: var(--navy);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 12px;
  border-top: 2px solid var(--navy);
}

.summary-total .label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.summary-total .amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.summary-actions {
  padding: 0 24px 24px;
}

.summary-actions .btn {
  width: 100%;
  justify-content: center;
}

.summary-note {
  padding: 0 24px 24px;
  font-size: 0.8rem;
  color: var(--gray-300);
  text-align: center;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--navy);
  padding: 24px;
  color: var(--white);
}

.admin-sidebar .logo {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.admin-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.admin-nav a.active {
  border-left: 3px solid var(--gold);
}

.admin-main {
  background: var(--off-white);
  padding: 32px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-header h1 {
  font-size: 1.8rem;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.admin-card-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.admin-card-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.admin-card-sub {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 4px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.admin-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-panel-header h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.admin-panel-body {
  padding: 24px;
}

/* Booking Table */
.booking-table {
  width: 100%;
  border-collapse: collapse;
}

.booking-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-100);
}

.booking-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.booking-table tr:hover {
  background: var(--off-white);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.confirmed {
  background: rgba(46, 204, 113, 0.1);
  color: var(--success);
}

.status-badge.pending {
  background: rgba(243, 156, 18, 0.1);
  color: var(--warning);
}

.status-badge.cancelled {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger);
}

/* Admin Calendar */
.admin-calendar {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  grid-column: 1 / -1;
}

/* ============================================
   PAYMENT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--navy);
}

.modal-body {
  padding: 32px;
}

.modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */
.confirmation {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.confirmation h2 {
  margin-bottom: 12px;
}

.confirmation p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.confirmation-details {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: left;
  margin-bottom: 32px;
}

.confirmation-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.confirmation-details .detail-row:last-child {
  border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .yacht-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

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

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    padding: 16px 24px;
  }

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

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

  .reviews-carousel {
    grid-template-columns: 1fr 1fr;
  }

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

  .dest-layout {
    grid-template-columns: 1fr;
  }

  .dest-sidebar {
    position: static;
  }

  .dest-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .destinations-grid-2 {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

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

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
  }

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

  .destinations-grid-2 {
    grid-template-columns: 1fr !important;
  }

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

  .dest-hero-tagline {
    font-size: 1rem;
  }

  .dest-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dest-included-grid,
  .dest-notincluded-grid {
    grid-template-columns: 1fr;
  }

  .dest-section h2 {
    font-size: 1.4rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .yacht-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .time-slots {
    grid-template-columns: 1fr;
  }

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

  .booking-steps {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .admin-cards {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .itinerary-tabs {
    gap: 8px;
  }

  .itinerary-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

  .spec-item {
    padding: 12px 8px;
  }

  .spec-value {
    font-size: 1.1rem;
  }

  .booking-section {
    padding: 24px 16px;
  }

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

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Loading Spinner --- */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

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

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.warning {
  border-left-color: var(--warning);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- Hotel Info Banner --- */
.hotel-info-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.hotel-info-banner .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--sea-blue);
  display: inline-flex;
  align-items: center;
}
.hotel-info-banner .icon svg {
  width: 18px;
  height: 18px;
}

/* Lucide Icons - Global */
.social-links a svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  vertical-align: middle;
  margin-right: 4px;
}
.dest-info-label svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
.admin-nav a span svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.gallery-show-all svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  vertical-align: middle;
}
.confirmation-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.5;
}

/* ============================================
   CONCIERGE PAGE
   ============================================ */
.concierge-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--sea-blue) 100%);
}

.concierge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
  padding: 48px 40px;
}

.concierge-header {
  text-align: center;
  margin-bottom: 32px;
}

.concierge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  margin-bottom: 20px;
}

.concierge-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.concierge-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.concierge-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Tabs */
.concierge-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 32px;
}

.concierge-tab {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.concierge-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.concierge-tab:hover:not(.active) {
  color: var(--navy);
}

/* Form */
.concierge-form .form-group {
  margin-bottom: 20px;
}

.concierge-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.input-icon {
  position: relative;
}

.input-icon svg,
.input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  pointer-events: none;
}

.input-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.input-icon .form-input {
  padding-left: 42px;
}

.concierge-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.concierge-submit svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.concierge-forgot {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
}

.concierge-forgot a {
  color: var(--sea-blue);
  font-weight: 500;
}

.concierge-forgot a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Success */
.concierge-success {
  text-align: center;
  padding: 20px 0;
}

.concierge-success-icon {
  color: var(--success);
  margin-bottom: 16px;
}

.concierge-success-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
}

.concierge-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.concierge-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .concierge-card {
    padding: 32px 24px;
  }
  .concierge-header h1 {
    font-size: 1.5rem;
  }
  .concierge-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LEGAL PAGES (CGU, Mentions légales)
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 12px 0 16px 24px;
  list-style: disc;
}

.legal-section ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.legal-section strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 24px 0 60px;
  }
  .legal-section h2 {
    font-size: 1.2rem;
  }
}
