/* ═══════════════════════════════════════════
   DESIGN SYSTEM – Morski klimat
   ═══════════════════════════════════════════ */

:root {
  /* Colors */
  --color-navy: #0a1628;
  --color-navy-light: #0f1f38;
  --color-ocean: #1a4b8c;
  --color-teal: #2d8f9e;
  --color-teal-light: #3ab5c7;
  --color-gold: #c9a84c;
  --color-gold-light: #dbc06e;
  --color-bg: #f0f4f8;
  --color-bg-warm: #e8edf3;
  --color-text: #1a1a2e;
  --color-text-light: #c8d6e5;
  --color-text-muted: #5a6a7e;
  --color-white: #ffffff;
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-border: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(10, 22, 40, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

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

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

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

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  color: var(--color-navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.65) 80%,
    rgba(10, 22, 40, 0.9) 100%
  );
}

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

.hero-date {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--color-teal-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2.5s infinite;
}

.hero-scroll-indicator svg {
  width: 28px;
  height: 28px;
}

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

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

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

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  position: relative;
  padding: var(--space-2xl) 0;
}

.section--light {
  background: var(--color-bg);
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.section-label--light {
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.section-title--light {
  color: var(--color-white);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-desc--light {
  color: var(--color-text-light);
}

/* ═══════════════════════════════════════════
   WAVE SEPARATORS
   ═══════════════════════════════════════════ */

.wave-separator {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.wave-separator svg {
  width: 100%;
  height: 60px;
}

/* .wave-separator--flip uses the same base styles as .wave-separator */

/* ═══════════════════════════════════════════
   STATS GRID (O rejsie)
   ═══════════════════════════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.stat-icon svg {
  width: 44px;
  height: 44px;
  color: var(--color-teal);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   TIMELINE (Program)
   ═══════════════════════════════════════════ */

.timeline {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-ocean), var(--color-teal));
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-navy-light);
  z-index: 1;
}

.timeline-marker--highlight {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.timeline-day {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.timeline-marker--highlight .timeline-day {
  color: var(--color-navy);
}

.timeline-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-card:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 30px rgba(45, 143, 158, 0.15);
}

.timeline-card--highlight {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
}

.timeline-date {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--color-text-light);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.timeline-weekday {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  background: rgba(45, 143, 158, 0.2);
  color: var(--color-teal-light);
  border: 1px solid rgba(45, 143, 158, 0.25);
}

.tag--highlight {
  background: rgba(201, 168, 76, 0.2);
  color: var(--color-gold-light);
  border-color: rgba(201, 168, 76, 0.3);
}

.tag--optional {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════
   SHIP SHOWCASE
   ═══════════════════════════════════════════ */

.ship-showcase {
  margin-bottom: var(--space-xl);
}

.ship-showcase-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.2);
}

.ship-showcase-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ship-showcase-img:hover img {
  transform: scale(1.03);
}

.ship-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 22, 40, 0.75) 0%,
    rgba(10, 22, 40, 0) 50%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.ship-showcase-badge {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ship-showcase-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
}

.ship-showcase-detail {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   PHOTO FEATURE CARDS
   ═══════════════════════════════════════════ */

.photo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.photo-feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.photo-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(45, 143, 158, 0.2);
}

.photo-feature-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.photo-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-feature-card:hover .photo-feature-img img {
  transform: scale(1.08);
}

.photo-feature-text {
  padding: var(--space-md);
}

.photo-feature-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.photo-feature-text p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SHIP GALLERY
   ═══════════════════════════════════════════ */

.ship-gallery {
  margin-top: var(--space-sm);
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.85) 0%, transparent 100%);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   ACCORDION (Informacje praktyczne)
   ═══════════════════════════════════════════ */

.accordion-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-md) var(--space-md);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 0.75rem;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
}

.accordion-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
  opacity: 0.5;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content > * {
  padding: 0 var(--space-md);
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
}

.accordion-content > *:last-child {
  padding-bottom: var(--space-md);
}

.accordion-content > *:first-child {
  padding-top: 0.25rem;
}

.accordion-content ul {
  padding-left: calc(var(--space-md) + 1.2rem);
  padding-right: var(--space-md);
  list-style: disc;
}

.accordion-content ul li {
  margin-bottom: 0.3rem;
}

.accordion-content strong {
  color: var(--color-white);
}

.accordion-content em {
  color: var(--color-teal-light);
}

/* ═══════════════════════════════════════════
   INSURANCE CARD
   ═══════════════════════════════════════════ */

.insurance-card {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(45, 143, 158, 0.15);
}

.insurance-info {
  padding: var(--space-lg);
}

.insurance-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.insurance-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.bank-details {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-top: var(--space-sm);
}

.bank-details p {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--color-text);
}

.bank-account {
  font-family: 'Courier New', monospace;
  margin-top: var(--space-xs) !important;
  padding: 0.6rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--color-teal);
  font-size: 0.88rem !important;
}

.bank-title {
  margin-top: var(--space-xs) !important;
  color: var(--color-text-muted) !important;
}

/* ═══════════════════════════════════════════
   OPTIONAL TOURS
   ═══════════════════════════════════════════ */

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 750px;
  margin: 0 auto;
}

.optional-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.optional-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 143, 158, 0.15);
}

.optional-day {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.optional-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.optional-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.optional-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.coming-soon {
  text-align: center;
  color: var(--color-text-light);
  opacity: 0.5;
  font-style: italic;
  margin-top: var(--space-lg);
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════════
   CONTACT CARD
   ═══════════════════════════════════════════ */

.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(45, 143, 158, 0.1);
}

.contact-info {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-bg-warm);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.contact-cta {
  padding: var(--space-lg);
  text-align: center;
  background: linear-gradient(135deg, var(--color-navy), var(--color-ocean));
}

.contact-cta-text {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--color-navy);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-left p {
  color: var(--color-text-light);
  opacity: 0.5;
  font-size: 0.82rem;
}

.footer-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.footer-top svg {
  width: 20px;
  height: 20px;
}

.footer-top:hover {
  background: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   FADE-IN ANIMATION
   ═══════════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.35);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
  background: var(--color-bg);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

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

.modal-header {
  margin-bottom: var(--space-lg);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.modal-header p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--color-bg-warm);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(45, 143, 158, 0.15);
}

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

.form-submit {
  margin-top: var(--space-xs);
  width: 100%;
  justify-content: center;
}

/* Modal success */
.modal-success {
  text-align: center;
  padding: var(--space-lg) 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  color: var(--color-white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.modal-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.modal-success p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

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

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

  .timeline {
    padding-left: 45px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-marker {
    left: -45px;
    width: 36px;
    height: 36px;
  }

  .timeline-day {
    font-size: 0.9rem;
  }

  .timeline-card {
    padding: var(--space-sm) var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .photo-features {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .ship-showcase-img img {
    height: 250px;
  }

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

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-card {
    padding: var(--space-md) var(--space-sm);
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .contact-card {
    border-radius: var(--radius-md);
  }

  .insurance-card {
    border-radius: var(--radius-md);
  }
}

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

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

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

/* ═══════════════════════════════════════════
   INSURANCE TABLE
   ═══════════════════════════════════════════ */

.insurance-table-wrap {
  margin-bottom: var(--space-lg);
}

.insurance-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.insurance-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.insurance-table thead th {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  border-bottom: 3px solid var(--color-gold);
}

.insurance-table thead th:first-child {
  text-align: left;
  min-width: 200px;
}

.insurance-table thead th small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 0.25rem;
}

.insurance-table thead th.highlight-col {
  background: var(--color-ocean);
}

.insurance-table thead th.highlight-col-best {
  background: linear-gradient(135deg, #1a4b8c, #0f1f38);
  position: relative;
}

.insurance-table thead th.highlight-col-best::after {
  content: '★';
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--color-gold);
  font-size: 0.7rem;
}

.insurance-table tbody td {
  padding: 0.85rem 1.2rem;
  text-align: center;
  color: var(--color-text);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  transition: background var(--transition);
}

.insurance-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-navy);
}

.insurance-table tbody tr:nth-child(even) td {
  background: rgba(240, 244, 248, 0.6);
}

.insurance-table tbody tr:hover td {
  background: rgba(45, 143, 158, 0.06);
}

.insurance-table tbody td.highlight-col {
  background: rgba(26, 75, 140, 0.04);
  font-weight: 500;
}

.insurance-table tbody tr:nth-child(even) td.highlight-col {
  background: rgba(26, 75, 140, 0.08);
}

.insurance-table tbody td.highlight-col-best {
  background: rgba(201, 168, 76, 0.06);
  font-weight: 600;
  color: var(--color-navy);
}

.insurance-table tbody tr:nth-child(even) td.highlight-col-best {
  background: rgba(201, 168, 76, 0.1);
}

@media (max-width: 768px) {
  .insurance-table-scroll {
    margin: 0 calc(-1 * var(--space-md));
    border-radius: 0;
  }
  
  .insurance-table {
    font-size: 0.82rem;
  }

  .insurance-table thead th {
    padding: 0.8rem 0.7rem;
    font-size: 0.85rem;
  }

  .insurance-table tbody td {
    padding: 0.7rem 0.7rem;
  }
}

/* ═══════════════════════════════════════════
   OPTIONAL TRIPS – CTA BLOCK
   ═══════════════════════════════════════════ */

.optional-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-lg) var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.optional-cta-desc {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   SIGNUP MODAL
   ═══════════════════════════════════════════ */

.modal--signup {
  max-width: 560px;
}

.modal-header-icon {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.modal-header-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* Trip selector – radio card buttons */
.trip-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: 0.4rem;
}

.trip-option {
  cursor: pointer;
  display: block;
}

.trip-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.trip-option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: var(--space-md) var(--space-sm);
  border: 2px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius-md);
  background: rgba(240, 244, 248, 0.6);
  text-align: center;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.trip-option:hover .trip-option-box {
  border-color: var(--color-teal);
  background: rgba(45, 143, 158, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 143, 158, 0.15);
}

.trip-option.selected .trip-option-box,
.trip-option input[type="radio"]:checked + .trip-option-box {
  border-color: var(--color-teal);
  background: rgba(45, 143, 158, 0.1);
  box-shadow: 0 0 0 3px rgba(45, 143, 158, 0.2);
}

.trip-option-day {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
}

.trip-option-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
}

.trip-option-detail {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Select styling for signup form */
.modal-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6a7e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-form select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(45, 143, 158, 0.15);
}

@media (max-width: 480px) {
  .trip-selector {
    grid-template-columns: 1fr;
  }

  .optional-cta {
    padding: var(--space-md);
  }
}

