/* ==========================================================================
   AMD FISHING KARANGANTU — DEDICATED MOBILE APP STYLESHEET (amd-mobile.css)
   Mobile-First / Native App Experience
   ========================================================================== */

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

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --primary-blue: #1a73e8;
  --primary-blue-hover: #1557b0;
  --primary-blue-light: #e8f0fe;
  --primary-blue-subtle: #f0f7ff;

  --navy-dark: #0f172a;
  --navy-slate: #1e293b;
  --navy-muted: #334155;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;

  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;

  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;

  --emerald-green: #16a34a;
  --emerald-light: #dcfce7;
  --amber-gold: #b45309;
  --amber-light: #fef3c7;
  --ocean-blue: #0284c7;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 8px;

  --bottom-bar-height: 74px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-body) !important;
  background-color: var(--bg-page) !important;
  color: var(--text-dark) !important;
  margin: 0;
  padding: 0;
  padding-bottom: calc(var(--bottom-bar-height) + var(--safe-area-bottom) + 20px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  user-select: none;
}

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

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

/* Container */
.mobile-app-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg-page);
  position: relative;
}

.mobile-pad {
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   1. STICKY TOP APP BAR
   ========================================================================== */
.mobile-top-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-brand-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.mobile-brand-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy-dark);
  letter-spacing: 0.05em;
}

.mobile-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--emerald-light);
  color: var(--emerald-green);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #bbf7d0;
}

.live-dot-pulse {
  width: 6px;
  height: 6px;
  background: var(--emerald-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.btn-icon-wa-top {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   1.1 LIVE MARINE WEATHER & SPOT CONDITION WIDGET (KARANGANTU)
   ========================================================================== */
.marine-weather-card {
  margin: 12px 16px 4px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.marine-weather-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.marine-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.marine-head-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #93c5fd;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.marine-strike-badge {
  background: rgba(22, 163, 74, 0.25);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.marine-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}

.marine-stat-col {
  text-align: center;
}

.marine-stat-val {
  font-size: 0.88rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.marine-stat-lbl {
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================================================
   2. INSTAGRAM-STYLE SPOT STORIES (ENHANCED GLOW)
   ========================================================================== */
.stories-scroll-wrap {
  padding: 12px 0 10px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-left: 16px;
}

.stories-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.stories-track {
  display: flex;
  gap: 12px;
  padding-left: 16px;
  padding-right: 16px;
  width: max-content;
}

.story-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 66px;
  transition: transform 0.15s ease;
}

.story-node:active {
  transform: scale(0.92);
}

.story-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #1a73e8, #0284c7, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.story-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.story-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 66px;
}

/* Fullscreen Story Viewer Modal */
.story-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #000000;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.story-viewer-modal.show {
  display: flex;
}

.story-progress-segments {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 4px;
  z-index: 3015;
}

.story-seg-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.story-seg-fill {
  width: 0%;
  height: 100%;
  background: #ffffff;
}

.story-tap-zone-left {
  position: absolute;
  top: 60px;
  bottom: 120px;
  left: 0;
  width: 35%;
  z-index: 3008;
  cursor: pointer;
}

.story-tap-zone-right {
  position: absolute;
  top: 60px;
  bottom: 120px;
  right: 0;
  width: 65%;
  z-index: 3008;
  cursor: pointer;
}

.story-viewer-head {
  position: absolute;
  top: 24px;
  left: 16px;
  right: 16px;
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.story-viewer-avatar-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-viewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  object-fit: cover;
}

.btn-story-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.story-viewer-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3001;
}

video.story-viewer-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3001;
  pointer-events: none;
  background: #000000;
}

iframe.story-viewer-media {
  border: none;
  width: 100%;
  height: 100%;
  pointer-events: none !important;
  user-select: none;
  transform: scale(1.35);
  transform-origin: center center;
  z-index: 3001;
}

.story-viewer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 40%, rgba(0,0,0,0.85) 85%);
  z-index: 3002;
  pointer-events: none;
}

.story-viewer-footer {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  z-index: 3010;
  color: #ffffff;
}

.story-viewer-tag {
  display: inline-block;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.story-viewer-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 6px;
  line-height: 1.2;
}

.story-viewer-desc {
  font-size: 0.84rem;
  color: #f1f5f9 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-story-book-action {
  width: 100%;
  background: #ffffff;
  color: #0f172a !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   3. MOBILE HERO SLIDER (IMAGE CAROUSEL)
   ========================================================================== */
.mobile-hero-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 14px 16px 14px;
  background: var(--navy-dark);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.mobile-hero-slider {
  position: relative;
  width: 100%;
  height: 245px;
}

.mobile-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(1.03);
}

.mobile-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.mobile-hero-bg {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.mobile-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.88) 85%);
}

.mobile-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 16px;
  color: #ffffff;
}

.mobile-hero-tag {
  display: inline-block;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

.mobile-hero-title {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 4px;
}

.mobile-hero-sub {
  font-size: 0.76rem;
  color: #e2e8f0;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-hero-btn {
  background: var(--primary-blue);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.4);
}

.mobile-hero-dots {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 16px;
  border-radius: var(--radius-pill);
  background: #ffffff;
}

/* ==========================================================================
   4. 4-BUTTON QUICK ACTION GRID
   ========================================================================== */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px 18px;
}

.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.quick-action-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease;
}

.quick-action-item:active .quick-action-icon-box {
  transform: scale(0.92);
}

.quick-action-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: center;
}

/* ==========================================================================
   5. SECTION HEADERS & BADGES (MOBILE)
   ========================================================================== */
.mobile-sec-header {
  padding: 10px 16px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.mobile-sec-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 4px;
}

.mobile-sec-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.2;
}

.mobile-sec-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
}

/* ==========================================================================
   6. SNAP-SCROLL PACKAGE CARDS
   ========================================================================== */
.pkg-snap-container {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 16px 14px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pkg-snap-container::-webkit-scrollbar {
  display: none;
}

.pkg-mobile-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.pkg-mobile-media {
  position: relative;
  height: 140px;
  width: 100%;
}

.pkg-mobile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-mobile-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--navy-dark);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pkg-mobile-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.pkg-mobile-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-mobile-loc {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.pkg-mobile-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.pkg-mobile-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-mobile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.pkg-chip-tag {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--navy-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

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

.pkg-price-prefix {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pkg-price-val {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy-dark);
}

.btn-mobile-book {
  background: var(--primary-blue);
  color: #ffffff !important;
  border: none;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* ==========================================================================
   7. BENTO FLEET & SPECS MOBILE
   ========================================================================== */
.mobile-bento-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  margin: 0 16px 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.mobile-bento-img-box {
  position: relative;
  height: 180px;
  width: 100%;
}

.mobile-bento-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
}

.mobile-bento-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  color: #ffffff;
}

.mobile-bento-grid-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 14px;
}

.bento-chip-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.bento-chip-val {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.bento-chip-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Special highlight chips */
.bento-chip-starlink {
  background: #e8f0fe;
  border-color: #93c5fd;
}
.bento-chip-starlink .bento-chip-val {
  color: #1a73e8;
}

.bento-chip-solar {
  background: #fef3c7;
  border-color: #fcd34d;
}
.bento-chip-solar .bento-chip-val {
  color: #b45309;
}

/* ==========================================================================
   8. MOBILE SCHEDULE & TOUCH DATE MATRIX
   ========================================================================== */
.mobile-cal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  margin: 0 16px 20px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.mobile-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-cal-month {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy-dark);
}

.mobile-cal-nav {
  display: flex;
  gap: 6px;
}

.btn-cal-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--navy-dark);
  cursor: pointer;
}

.mobile-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.mobile-dates-matrix {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.mob-date-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-dark);
  cursor: pointer;
  position: relative;
  background: var(--bg-page);
  transition: all 0.15s ease;
}

.mob-date-cell.empty {
  background: transparent;
  pointer-events: none;
}

.mob-date-cell.past {
  opacity: 0.35;
  pointer-events: none;
}

.mob-date-cell.available {
  background: #ffffff;
  border-color: var(--border-light);
}

.mob-date-cell.available::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--emerald-green);
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}

.mob-date-cell.booked {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.mob-date-cell.booked::after {
  content: '';
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}

.mob-date-cell.selected {
  background: var(--navy-dark) !important;
  color: #ffffff !important;
  border-color: var(--navy-dark) !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}

.mob-date-cell.selected::after {
  background: #ffffff !important;
}

.mobile-selected-agenda-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary-blue-subtle);
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agenda-selected-date {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--navy-dark);
}

.agenda-selected-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-green);
}

/* ==========================================================================
   9. MOBILE REVIEWS
   ========================================================================== */
.mobile-reviews-wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-reviews-wrap::-webkit-scrollbar {
  display: none;
}

.mobile-review-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.review-stars-mobile {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.review-text-mobile {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 12px;
}

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

.author-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name-mobile {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.author-role-mobile {
  font-size: 0.68rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   10. MOBILE FOOTER (WITH GENEROUS BOTTOM CLEARANCE FOR BOTTOM NAV)
   ========================================================================== */
.mobile-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 28px 16px calc(var(--bottom-bar-height) + var(--safe-area-bottom) + 36px);
  text-align: center;
}

.mobile-footer-brand {
  margin-bottom: 10px;
}

.mobile-footer-p {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.mobile-desktop-link {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--bg-subtle);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.mobile-copy-text {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. FIXED BOTTOM APP BAR (THUMB ZONE)
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 480px;
  margin: 0 auto;
  height: calc(var(--bottom-bar-height) + var(--safe-area-bottom));
  padding-bottom: var(--safe-area-bottom);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.08);
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.bottom-bar-item i {
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 2px;
}

.bottom-bar-item span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bottom-bar-item.active {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.bottom-bar-fab-btn {
  background: var(--primary-blue);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease;
}

.bottom-bar-fab-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   12. SLIDING NATIVE BOTTOM SHEET BOOKING ENGINE
   ========================================================================== */
.bottom-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bottom-sheet-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  z-index: 2001;
  background: #ffffff;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.bottom-sheet-panel.show {
  transform: translateY(0);
}

.sheet-drag-handle-bar {
  width: 42px;
  height: 4px;
  background: #cbd5e1;
  border-radius: var(--radius-xs);
  margin: 10px auto 6px;
}

.sheet-head {
  padding: 10px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.sheet-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy-dark);
}

.sheet-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--navy-dark);
}

/* Stepper Bar in Sheet */
.sheet-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
}

.sheet-step-node {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cbd5e1;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.sheet-step-node.active {
  background: var(--primary-blue);
  color: #ffffff;
}

.sheet-step-node.done {
  background: var(--emerald-green);
  color: #ffffff;
}

.sheet-body {
  padding: 18px 20px;
  overflow-y: auto;
  flex: 1;
}

.sheet-pkg-option {
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.15s ease;
}

.sheet-pkg-option.selected {
  border-color: var(--primary-blue);
  background: var(--primary-blue-subtle);
}

.sheet-pkg-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.sheet-pkg-meta {
  font-size: 0.74rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 2px;
}

.sheet-pkg-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary-blue);
}

.sheet-summary-box {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.sheet-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 4px 0;
}

.sheet-footer {
  padding: 14px 20px calc(14px + var(--safe-area-bottom));
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.btn-sheet-back {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}

.btn-sheet-next {
  background: var(--primary-blue);
  color: #ffffff !important;
  border: none;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.4);
  margin-left: auto;
}
