/**
 * AMD Fishing — Pelabuhan Karangantu, Serang Banten
 * Typography: Outfit (Headings) + Plus Jakarta Sans (Body)
 * High-Contrast, Modern Nautical-Angler Design System
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   1. RESET & BASE VARIABLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-blue: #1a73e8;
  --primary-blue-hover: #1557b0;
  --primary-blue-light: #e8f0fe;
  --ocean-cyan: #0284c7;
  --ocean-emerald: #137333;
  --dark-ink: #0b1120;
  --dark-surface: #0f172a;
  
  --text-dark: #0f172a;
  --text-body: #1e293b;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --border-light: #dadce0;
  --border-subtle: #f1f3f4;
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-hero: 44px;
  --radius-pill: 9999px;
  
  --shadow-subtle: 0 1px 3px rgba(60,64,67,0.08), 0 1px 2px rgba(60,64,67,0.12);
  --shadow-card: 0 4px 16px rgba(60,64,67,0.08);
  --shadow-hover: 0 8px 24px rgba(60,64,67,0.15);
  --shadow-blue: 0 4px 14px rgba(26,115,232,0.35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body) !important;
  background-color: var(--bg-page) !important;
  color: var(--text-dark) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 82px;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Master wide wrapper */
.layout-wrapper {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
  padding: 0 8px;
}

/* ==========================================================================
   2. NAVBAR (TRUE FIXED TOP WITH GLASSMORPHISM & BLUR)
   ========================================================================== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-navbar.scrolled {
  padding: 11px 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

#navMobileMenu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1049;
  background: #ffffff;
  border-bottom: 1.5px solid #cbd5e1;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-fishing-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.18rem;
  color: #0f172a;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-link {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-menu-link:hover,
.nav-menu-link.active {
  color: var(--text-dark);
}

.btn-book-top {
  background: #0f172a;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-book-top i {
  color: #ffffff !important;
  font-size: 1rem !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.btn-book-top:hover {
  background: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* ==========================================================================
   3. HERO SECTION (PRESERVED)
   ========================================================================== */
.hero-section-wrap {
  width: 100%;
  padding: 16px 0 20px;
}

.hero-card-container {
  position: relative;
  width: 100%;
  min-height: 640px;
  border-radius: var(--radius-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #0f172a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.hero-slider-track-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(0%);
}

.hero-slide-pane {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  height: 100%;
  position: relative;
}

.hero-slide-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-nav-arrow:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(9, 13, 22, 0.82) 0%,
    rgba(9, 13, 22, 0.55) 48%,
    rgba(9, 13, 22, 0.18) 85%,
    rgba(9, 13, 22, 0.02) 100%
  );
  z-index: 2;
}

/* Hero Inner Content */
.hero-content-box {
  position: relative;
  z-index: 3;
  padding: 70px 40px 70px 60px;
  width: 100%;
  max-width: 820px;
}

.hero-stepper-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Left Stepper Indicator */
.hero-stepper-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  flex-shrink: 0;
}

.step-circle-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-circle-node.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.45);
}

.step-connector-line {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.45);
}

/* Hero Typography */
.hero-tagline {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  margin-bottom: 34px;
}

.hero-btn-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-blue {
  background: var(--primary-blue);
  color: #ffffff !important;
  font-size: 0.96rem;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.btn-hero-blue i {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.btn-hero-blue:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(26, 115, 232, 0.45);
}

.btn-hero-circle-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all 0.2s ease;
}

.btn-hero-circle-play i {
  color: #ffffff !important;
  font-size: 1.45rem !important;
  display: inline-block;
  line-height: 1;
  margin-left: 2px;
}

.btn-hero-circle-play:hover {
  transform: scale(1.08);
  background: var(--primary-blue-hover);
}

/* --------------------------------------------------------------------------
   BOTTOM-RIGHT DOCKED SHAPE WITH INVERTED RADII
   -------------------------------------------------------------------------- */
.hero-docked-widget {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: var(--bg-page);
  padding: 24px 32px 24px 36px;
  border-top-left-radius: 40px;
  box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.08);
}

/* Inverted radius top-left */
.hero-docked-widget::before {
  content: '';
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border-bottom-right-radius: 40px;
  box-shadow: 20px 20px 0 0 var(--bg-page);
  pointer-events: none;
}

/* Inverted radius bottom-left */
.hero-docked-widget::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-bottom-right-radius: 40px;
  box-shadow: 20px 20px 0 0 var(--bg-page);
  pointer-events: none;
}

.docked-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 14px;
}

.docked-widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.docked-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 800;
  transition: all 0.2s ease;
}

.hero-docked-widget:hover .docked-arrow-circle {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateX(3px);
}

.docked-widget-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stacked-avatars {
  display: flex;
  align-items: center;
}

.stacked-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stacked-avatar-img:first-child {
  margin-left: 0;
}

.docked-text-meta h6 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--text-dark);
}

.docked-text-meta p {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .hero-docked-widget {
    position: relative;
    border-radius: 0 0 var(--radius-hero) var(--radius-hero);
    width: 100%;
    box-shadow: none;
    border-top: 1px solid var(--border-light);
  }
  .hero-docked-widget::before,
  .hero-docked-widget::after {
    display: none;
  }
  .hero-card-container {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero-content-box {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   4. BRAND & ACCREDITATION STRIP
   ========================================================================== */
.brand-strip-modern {
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.partner-logo-item {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-logo-item i {
  font-size: 1.2rem;
}

/* ==========================================================================
   4.1 LIVE MARINE WEATHER BAR (DESKTOP)
   ========================================================================== */
.marine-bar-desktop {
  margin-top: -1px;
  background: #ffffff;
  border-bottom: 1.5px solid var(--border-light);
  padding: 14px 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.marine-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.marine-bar-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marine-bar-divider {
  width: 1px;
  height: 24px;
  background: var(--border-light);
}

.live-dot-pulse-desktop {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulse-desktop 1.8s infinite;
}

@keyframes pulse-desktop {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* ==========================================================================
   5. LUXURY PACKAGES & DESTINATIONS
   ========================================================================== */
.section-modern-packages {
  padding: 80px 0 90px;
}

.section-headline-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--primary-blue-light);
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  border: 1px solid rgba(3, 105, 161, 0.2);
}

.section-title-large {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}

.category-filter-nav {
  display: inline-flex;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
}

.filter-btn-pill {
  border: none;
  background: transparent;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn-pill.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.package-card-modern {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.pkg-media-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #0f172a;
}

.pkg-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.package-card-modern:hover .pkg-media-box img {
  transform: scale(1.08);
}

.pkg-badge-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pkg-rating-top {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.pkg-details-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-meta-location {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.pkg-title-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.pkg-desc-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.pkg-features-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.feature-tag-chip {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

.pkg-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.pkg-price-unit {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 700;
}

.pkg-price-amount {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.btn-book-action {
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: var(--primary-blue) !important;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.4);
  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.btn-book-action i {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff !important;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-book-action:hover {
  background: var(--primary-blue-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.5);
}

.btn-book-action:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   6. BENTO LUXURY FLEET SHOWCASE
   ========================================================================== */
.section-bento-fleet {
  padding: 80px 0 100px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.bento-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card-main {
  grid-column: span 7;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 440px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.bento-card-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.bento-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.1) 0%, rgba(9, 13, 22, 0.9) 100%);
  z-index: 2;
}

.bento-main-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.bento-card-stat {
  grid-column: span 5;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-pills-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.spec-pill-item {
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.spec-pill-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
}

.spec-pill-lbl {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 700;
  margin-top: 2px;
}

.bento-card-small-1, .bento-card-small-2, .bento-card-small-3 {
  grid-column: span 4;
  border-radius: var(--radius-md);
  padding: 26px;
}

.bento-card-small-1 {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
}

.bento-card-small-2 {
  background: var(--primary-blue);
  color: #ffffff;
}

.bento-card-small-3 {
  background: #0f172a;
  color: #ffffff;
}

@media (max-width: 991px) {
  .bento-card-main, .bento-card-stat,
  .bento-card-small-1, .bento-card-small-2, .bento-card-small-3 {
    grid-column: span 12;
  }
}

/* ==========================================================================
   7. ULTRA-COMPACT MODERN SPLIT CALENDAR
   ========================================================================== */
.section-compact-calendar {
  padding: 70px 0 90px;
}

.compact-cal-container {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 460px 1fr;
}

@media (max-width: 991px) {
  .compact-cal-container {
    grid-template-columns: 1fr;
  }
}

/* Left: Compact Date Matrix */
.compact-cal-left-pane {
  padding: 28px 30px;
  border-right: 1.5px solid var(--border-light);
  background: #ffffff;
}

.compact-cal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.compact-month-title {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0;
}

.compact-nav-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-mini-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-mini-nav:hover {
  background: #f1f3f4;
  border-color: #dadce0;
}

.btn-mini-today {
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 4px;
}

.btn-mini-today:hover {
  background: #f1f3f4;
}

/* Compact Days Header */
.compact-days-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.compact-day-col-name {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
}

/* Compact Dates Grid */
.compact-dates-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.compact-date-cell {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.compact-date-cell:hover:not(.is-disabled) {
  background: #f1f3f4;
}

.compact-date-cell.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.compact-date-cell.is-selected {
  background: var(--primary-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.4);
}

.compact-date-cell.is-today:not(.is-selected) {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 900;
}

.compact-cell-number {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.compact-date-cell.is-selected .compact-cell-number {
  color: #ffffff !important;
}

.compact-cell-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
}

.compact-cell-dot.green { background: #188038; }
.compact-cell-dot.red   { background: #d93025; }

.compact-date-cell.is-selected .compact-cell-dot {
  background: #ffffff !important;
}

.compact-legend-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.76rem;
  font-weight: 700;
}

.compact-legend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
}

.compact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.compact-dot.green { background: #188038; }
.compact-dot.red { background: #d93025; }

/* Right: Live Interactive Departure Detail Card */
.compact-cal-right-pane {
  padding: 32px 36px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compact-agenda-header {
  margin-bottom: 20px;
}

.compact-selected-date-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.compact-selected-date-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.compact-status-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-subtle);
}

.compact-status-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.status-pill-available {
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-pill-reserved {
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.compact-ship-info {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.55;
}

.compact-quick-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.quick-pkg-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-pkg-btn:hover {
  border-color: #9aa0a6;
}

.quick-pkg-btn.active {
  border-color: var(--primary-blue);
  background: var(--primary-blue-light);
}

.quick-pkg-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.quick-pkg-price {
  font-size: 0.74rem;
  color: var(--primary-blue);
  font-weight: 800;
}

.btn-compact-reserve {
  width: 100%;
  background: var(--primary-blue);
  color: #ffffff !important;
  font-size: 0.94rem;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-compact-reserve:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-1px);
}

.btn-compact-reserve:disabled {
  background: #dadce0;
  color: #80868b !important;
  box-shadow: none;
  cursor: not-allowed;
}

/* ==========================================================================
   8. TESTIMONIALS (SPOTLIGHT CARD)
   ========================================================================== */
.section-modern-testimonials {
  padding: 40px 0 100px;
}

.review-card-modern {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.review-card-modern.spotlight-card {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.review-stars-row {
  display: flex;
  gap: 4px;
  font-size: 1.05rem;
  color: #f59e0b;
  margin-bottom: 18px;
}

.review-card-modern.spotlight-card .review-stars-row {
  color: #ffffff;
}

.review-quote-text {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 26px;
}

.review-card-modern.spotlight-card .review-quote-text {
  color: #ffffff;
}

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

.review-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
}

.review-author-name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.review-card-modern.spotlight-card .review-author-name {
  color: #ffffff;
}

.review-author-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.review-card-modern.spotlight-card .review-author-tag {
  color: #e8f0fe;
}

/* ==========================================================================
   9. MODERN 5-COLUMN FOOTER
   ========================================================================== */
.site-footer-modern {
  padding: 70px 0 36px;
  background: #ffffff;
  border-top: 1.5px solid var(--border-light);
}

.footer-brand-header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-header .brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-header .brand-fishing-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: #0f172a;
  letter-spacing: 0.06em;
  line-height: 1;
}

.footer-brand-p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f4;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.footer-social-circle:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.footer-group-heading {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.footer-links-column {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-column a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links-column a:hover {
  color: var(--primary-blue);
}

.footer-bottom-copyright {
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 45px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 55px;
}

/* ==========================================================================
   10. MODAL STYLES (CLEAN & CONSISTENT SEAMLESS ARCHITECTURE)
   ========================================================================== */
.modal-content-custom {
  background: #ffffff !important;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.modal-header-custom {
  background: #ffffff;
  color: var(--text-dark);
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-header-custom h5 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
}

.modal-header-custom span {
  color: #64748b;
  font-weight: 600;
}

.btn-modal-close-custom {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #0f172a;
  transition: all 0.2s ease;
}

.btn-modal-close-custom:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  transform: scale(1.06);
}

.btn-modal-close-custom svg {
  display: block;
}

.step-indicator-bar {
  background: #ffffff;
  padding: 12px 28px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
}

.step-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.step-bubble.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
}

.step-bubble.done {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.modal-body {
  background: #ffffff !important;
  padding: 28px !important;
}

.booking-pkg-card {
  background: #ffffff;
  padding: 16px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.booking-pkg-card:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.booking-pkg-card.selected {
  border-color: var(--primary-blue);
  background: #f0f7ff;
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.12);
}

.modal-summary-box {
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

.modal-footer {
  background: #ffffff !important;
  padding: 18px 28px 22px !important;
  border-top: 1px solid var(--border-subtle) !important;
}

.form-label {
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 6px;
}

.form-control, .form-select {
  background-color: #ffffff !important;
  border: 1.5px solid var(--border-light) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.18) !important;
}
