/* ==========================================================================
   Design System & Reset (Premium Maritime Theme)
   ========================================================================== */

:root {
  /* Color Palette */
  --ocean-dark: #071d30;
  --ocean-medium: #0e2942;
  --ocean-blue: #1a5b8c;
  --ocean-light: #2c7bb5;
  --seafoam-mint: #e1f5fe;
  --seafoam-light: #f4fafc;
  --gold-accent: #d4af37;
  --gold-hover: #ffcf40;
  --text-dark: #1b2733;
  --text-light: #a4b3c1;
  --text-white: #ffffff;
  --bg-dark: #041220;
  --bg-light: #ffffff;
  --card-bg-light: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(7, 29, 48, 0.75);
  --border-light: rgba(26, 91, 140, 0.15);
  --border-glass: rgba(255, 255, 255, 0.18);
  
  /* Fonts */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-english: 'Inter', sans-serif;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --box-shadow-premium: 0 15px 35px rgba(4, 18, 32, 0.15);
  --box-shadow-glass: 0 8px 32px 0 rgba(4, 18, 32, 0.2);
}

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

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

section {
  scroll-margin-top: 135px; /* Offset for sticky header & LINE bar */
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  color: var(--ocean-blue);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background-color: rgba(212, 175, 55, 0.3);
  z-index: -1;
}

.section-title-wrapper {
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title-wrapper.text-center {
  text-align: center;
}

.accent-sub {
  font-family: var(--font-english);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title-wrapper h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--ocean-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title-wrapper p {
  color: #5a6e7f;
  font-size: 1.05rem;
  max-width: 600px;
}

.section-title-wrapper.text-center p {
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--ocean-blue);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--ocean-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 91, 140, 0.3);
}

.btn-secondary {
  background-color: var(--gold-accent);
  color: var(--ocean-dark);
}

.btn-secondary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.btn-line {
  background-color: #06C755;
  color: var(--text-white);
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 1.5rem;
}

.btn-line:hover {
  background-color: #05b04b;
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(7, 29, 48, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

/* LINE Announcement Bar at the very top of fixed header */
.top-announcement-bar {
  background-color: #06C755; /* LINE Official green */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  font-family: var(--font-primary);
  z-index: 101;
  position: relative;
}

.announcement-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--text-white) !important;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  flex-wrap: wrap;
  line-height: 1.4;
}

.announcement-link:hover {
  opacity: 0.92;
}

.announcement-link:hover .announcement-cta {
  transform: translateX(3px);
}

.badge-line {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.announcement-text {
  letter-spacing: 0.02em;
}

.announcement-cta {
  font-weight: 700;
  transition: transform var(--transition-smooth);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-white);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-english);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.desktop-nav ul {
  display: flex;
  gap: 2.2rem;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

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

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

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

.desktop-nav a.nav-highlight-line {
  color: #06C755 !important;
  font-weight: 700;
}

.desktop-nav a.nav-highlight-line::after {
  background-color: #06C755;
}

.mobile-nav a.drawer-highlight-line {
  color: #06C755 !important;
  font-weight: 700;
  border-left: 3px solid #06C755;
  padding-left: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.green {
  background-color: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.nav-book-btn {
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-trigger .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--ocean-dark);
  z-index: 1000;
  padding: 2rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  display: block;
}

.mobile-nav a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.drawer-actions {
  margin-top: auto;
  padding-bottom: 2rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: hero-zoom 20s infinite alternate;
  z-index: 1;
  filter: brightness(1.25); /* Brighten background images */
}

.hero-background.zoom-out-mode {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--bg-dark);
  transform: none;
  animation: none;
}

.hero-background.captain-mode {
  background-image: linear-gradient(to right, rgba(4, 18, 32, 0.6) 30%, rgba(4, 18, 32, 0.25) 60%, rgba(4, 18, 32, 0) 90%), var(--captain-img);
  background-size: 100% 100%, contain;
  background-position: center, right 10% center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--bg-dark);
  transform: none;
  animation: none;
  filter: brightness(1.2); /* Brighten captain mode image */
}

@media (max-width: 1024px) {
  .hero-background.captain-mode {
    background-image: linear-gradient(to bottom, rgba(4, 18, 32, 0.4) 0%, rgba(4, 18, 32, 0.15) 50%, rgba(7, 29, 48, 0.6) 100%), var(--captain-img);
    background-size: 100% 100%, cover;
    background-position: center, center;
    transform: scale(1.05);
    animation: hero-zoom 20s infinite alternate;
    filter: brightness(1.2);
  }
}

@media (max-width: 768px) {
  .hero-background.captain-mode {
    background-image: var(--captain-img);
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.05);
    animation: hero-zoom 20s infinite alternate;
    filter: brightness(1.2);
  }
}

@keyframes hero-zoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 18, 32, 0.4) 0%, rgba(4, 18, 32, 0.2) 50%, rgba(7, 29, 48, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  text-align: center;
  padding: 0 2rem;
  margin-top: 0; /* Reset since it's no longer the first section */
}

.seasonal-badge {
  font-family: var(--font-english);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(4, 18, 32, 0.9), 0 1px 3px rgba(4, 18, 32, 0.9);
}

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

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  text-shadow: 0 2px 6px rgba(4, 18, 32, 0.9), 0 1px 2px rgba(4, 18, 32, 0.9);
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.hero-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}

.scroll-text {
  font-family: var(--font-english);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
}

.scroll-arrow {
  animation: bounce-arrow 1.8s infinite;
}

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



/* ==========================================================================
   Recent Catches Section (Card Grid)
   ========================================================================== */

.catch-logs-section {
  padding: 6rem 2rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-light);
  color: var(--ocean-dark);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--ocean-blue);
  color: var(--text-white);
  border-color: var(--ocean-blue);
  box-shadow: 0 4px 12px rgba(26, 91, 140, 0.2);
}

.catch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 2.2rem;
}

.catch-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.catch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 29, 48, 0.12);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--ocean-dark);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.placeholder-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-card-img .emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.catch-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--ocean-blue);
  color: var(--text-white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.card-badge.bg-gold {
  background-color: var(--gold-accent);
  color: var(--ocean-dark);
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-date {
  font-family: var(--font-english);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.card-title {
  font-size: 1.15rem;
  color: var(--ocean-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.card-details {
  font-size: 0.88rem;
  color: #4a5c6e;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.card-footer-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.card-footer-tags .tag {
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.85rem;
}

.card-footer-tags .tag-sub {
  color: #6a7c8e;
  font-size: 0.75rem;
}

/* ==========================================================================
   Pricing & Simulator Section
   ========================================================================== */

.pricing-section {
  padding: 6rem 2rem;
  background-color: var(--seafoam-mint);
}

.simulator-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 992px) {
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pricing-plans-main {
  padding: 3rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-premium);
  border-radius: var(--border-radius-lg);
}

.pricing-plan-box {
  margin-bottom: 2rem;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.plan-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.pricing-plan-box h3 {
  font-size: 1.6rem;
  color: var(--ocean-dark);
  margin: 0;
}

.plan-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-value {
  font-size: clamp(1.6rem, 6.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ocean-blue);
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 1rem;
  color: #5a6e7f;
  font-weight: 600;
}

.plan-desc-text {
  font-size: 0.95rem;
  color: #4a5c6e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coupon-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--gold-accent);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius-sm);
  color: var(--ocean-dark);
  font-size: 0.9rem;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.gold-star {
  color: var(--gold-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.plan-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, var(--border-light) 0%, rgba(212, 175, 55, 0.3) 50%, var(--border-light) 100%);
  margin: 2.5rem 0;
}

/* Charter Price Table */
.charter-price-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(7, 29, 48, 0.03);
}

.charter-price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.charter-price-table th, 
.charter-price-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

.charter-price-table th {
  background-color: rgba(7, 29, 48, 0.04);
  color: var(--ocean-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--border-light);
}

.charter-price-table td {
  border-bottom: 1px solid var(--border-light);
  color: #333;
}

.charter-price-table tr:last-child td {
  border-bottom: none;
}

.charter-price-table tr:hover td {
  background-color: rgba(26, 91, 140, 0.02);
}

.charter-price-table .price-td {
  font-weight: 700;
  color: var(--ocean-blue);
  font-size: 1rem;
}

.charter-price-table .avg-td {
  color: #5a6e7f;
  font-weight: 500;
}

.charter-notice {
  font-size: 0.8rem;
  color: #6a7c8e;
  margin-top: 0.8rem;
}

/* Sidebar Column */
.pricing-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rental-guide-card, 
.coupon-guide-card {
  padding: 2.5rem;
}

.rental-guide-card h3, 
.coupon-guide-card h3 {
  font-size: 1.3rem;
  color: var(--ocean-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.rental-guide-card h3::after, 
.coupon-guide-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--gold-accent);
  border-radius: 5px;
}

.rental-item-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rental-guide-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.2rem;
}

.rental-guide-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rental-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rental-item-title strong {
  font-size: 0.95rem;
  color: var(--ocean-dark);
}

.option-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean-blue);
}

.option-price.free {
  color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.option-desc {
  font-size: 0.78rem;
  color: #6a7c8e;
  line-height: 1.5;
}

/* Coupons guide card */
.coupon-intro {
  font-size: 0.88rem;
  color: #4a5c6e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coupon-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.coupon-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.coupon-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.coupon-tag.red {
  color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}

.coupon-tag.green {
  color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
}

.coupon-tag.gold {
  color: var(--gold-accent);
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
}

.coupon-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ocean-dark);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.coupon-hint {
  font-size: 0.75rem;
  color: #6a7c8e;
  line-height: 1.5;
}

/* ==========================================================================
   Customer Reviews (お客様の声)
   ========================================================================== */

.customer-reviews-section {
  padding: 6rem 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 480px));
  justify-content: center;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3.5rem auto;
}

.review-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--box-shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(7, 29, 48, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--ocean-blue);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.review-user-info {
  display: flex;
  flex-direction: column;
}

.review-username {
  font-weight: 700;
  color: var(--ocean-dark);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold-accent);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.review-text {
  font-size: 0.92rem;
  color: #3b4c5d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #6a7c8e;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-source-icon {
  background-color: #4285F4;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  font-family: var(--font-english);
}

.review-cta-wrapper {
  text-align: center;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--ocean-dark);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow-premium);
  transition: var(--transition-smooth);
}

.btn-google-review:hover {
  background-color: var(--ocean-blue);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 91, 140, 0.3);
}

/* ==========================================================================
   Booking & Access Section
   ========================================================================== */

.booking-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, var(--seafoam-mint) 0%, var(--ocean-dark) 100%);
}

.booking-dashboard {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-premium);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-info-panel h2 {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  color: var(--ocean-dark);
  margin-bottom: 0.8rem;
}

.lead-text {
  font-size: 1.05rem;
  color: #4a5c6e;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 2.2rem;
  line-height: 1;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: #6a7c8e;
  margin-bottom: 0.3rem;
}

.phone-link {
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 900;
  color: var(--ocean-blue);
  font-family: var(--font-english);
  line-height: 1;
}

.phone-link:hover {
  color: var(--ocean-dark);
}

.access-info h3 {
  font-size: 1.1rem;
  color: var(--ocean-dark);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.4rem;
}

.access-info p {
  font-size: 0.88rem;
  color: #3b4c5d;
  margin-bottom: 0.8rem;
}

.access-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.access-info li {
  font-size: 0.82rem;
  color: #5a6e7f;
}

/* Map visual styled mockup */
.map-card-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-premium);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05), var(--box-shadow-premium);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-placeholder::before {
  /* Wave grid pattern inside map mockup */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(26, 91, 140, 0.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.map-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.map-graphic {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin {
  font-size: 3rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
  animation: bounce-pin 2s infinite;
}

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

.map-label {
  background-color: var(--ocean-dark);
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.map-caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ocean-blue);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  align-self: flex-start;
  margin-top: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 5rem 2rem 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto 4rem auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-area.light {
  color: var(--text-white);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background-color: var(--gold-accent);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links-col a {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-links-col a:hover {
  color: var(--gold-accent);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .simulator-result {
    position: static;
  }
  
  .tackle-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tackle-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  

  
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1250px) {
  /* Header Mobile Adaptations */
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: flex;
  }
  
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Hero Typography */
  .hero-content h1 {
    font-size: clamp(1.3rem, 7vw, 2.3rem);
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Tide Status info box */
  .status-card-group {
    grid-template-columns: 1fr;
  }
  
  /* Form grid counters */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Plan Selection Cards */
  .plan-options {
    grid-template-columns: 1fr;
  }
  
  /* Fish Concierge tabs */
  .fish-selector-tabs {
    grid-template-columns: 1fr 1fr;
  }
  

  
  .booking-dashboard {
    padding: 1.8rem 1.2rem;
  }
  
  .tide-dashboard {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .charter-price-table th, 
  .charter-price-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Hero Photo Controller
   ========================================================================== */
.hero-photo-controller {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  background: rgba(4, 18, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.photo-btn:hover {
  color: var(--text-white);
}

.photo-btn.active {
  background-color: var(--gold-accent);
  color: var(--ocean-dark);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   LINE Q&A Section (Beginner friendly chat mock)
   ========================================================================== */
.line-qa-section {
  padding: 6rem 2rem;
  background-color: var(--seafoam-light);
}

.line-qa-box {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-premium);
  border-radius: var(--border-radius-lg);
}

.line-qa-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.line-qa-info h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--ocean-dark);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.line-qa-desc {
  color: #4a5c6e;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.line-action-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-line-large {
  background-color: #06C755;
  color: var(--text-white);
  border-radius: 50px;
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.btn-line-large:hover {
  background-color: #05b04b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.line-icon-svg {
  flex-shrink: 0;
}

.line-id-text {
  font-size: 0.85rem;
  color: #8c9eaf;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 1rem;
}

/* LINE Chat Mockup */
.line-chat-mock {
  background-color: #7494C0; /* LINE blue-grey chat bg */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 480px;
}

.chat-header {
  background-color: #2b3647;
  color: var(--text-white);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
}

.chat-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.chat-body {
  padding: 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
}

.chat-bubble {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  position: relative;
}

.chat-bubble.user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-bubble.user p {
  background-color: #85e249; /* LINE green bubble */
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 15px 15px 2px 15px;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chat-bubble.captain {
  align-self: flex-start;
  flex-direction: row;
  gap: 0.6rem;
}

.captain-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--ocean-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.captain-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bubble-content {
  display: flex;
  flex-direction: column;
}

.chat-bubble.captain p {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 0.6rem 1rem;
  border-radius: 2px 15px 15px 15px;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chat-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

.chat-bubble.captain .chat-time {
  align-self: flex-start;
}

.chat-footer {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chat-input-placeholder {
  font-size: 0.85rem;
  color: var(--text-light);
}

.chat-send-btn {
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ==========================================================================
   Admin Photo Tool
   ========================================================================== */
.admin-photo-tool {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10000;
  font-family: var(--font-primary);
}

.admin-toggle-btn {
  background-color: var(--ocean-dark);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.admin-toggle-btn:hover {
  background-color: var(--ocean-blue);
  transform: scale(1.05);
}

.admin-panel {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  width: 320px;
  background-color: rgba(7, 29, 48, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: var(--text-white);
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: admin-fade-in 0.3s ease-out;
}

@keyframes admin-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-panel.open {
  display: flex;
}

.admin-panel h4 {
  font-size: 0.95rem;
  color: var(--gold-accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.4rem;
  margin-bottom: 0.2rem;
}

.admin-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

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

.admin-input-group label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
}

.admin-input-group-row {
  display: flex;
  gap: 0.5rem;
}

.admin-input-group input {
  flex-grow: 1;
  background-color: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  color: #fff;
  font-size: 0.78rem;
}

.admin-input-group input:focus {
  outline: none;
  border-color: var(--ocean-blue);
}

.admin-input-group button {
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  border-radius: 4px;
  cursor: pointer;
}

.admin-tips {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.4;
  background-color: rgba(255,255,255,0.05);
  padding: 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   Responsive Overrides for New Sections
   ========================================================================== */
@media (max-width: 1024px) {
  .line-qa-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .line-chat-mock {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Section padding optimizations for mobile */
  .catch-logs-section, 
  .pricing-section, 
  .customer-reviews-section, 
  .booking-section, 
  .main-footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .header-container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  /* Container / Panel / Card padding optimizations for mobile */
  .pricing-plans-main,
  .rental-guide-card, 
  .coupon-guide-card,
  .review-card {
    padding: 1.8rem 1.2rem;
  }

  .line-qa-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .line-qa-box {
    padding: 2rem 1.2rem;
  }
  
  .line-qa-info h2 {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }
  
  .booking-info-panel h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.6rem);
  }
  
  .btn-line-large {
    font-size: 0.95rem;
    padding: 1rem 1.8rem;
  }
  
  .hero-photo-controller {
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: none;
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 50px;
    bottom: 6rem;
  }
  .hero-photo-controller::-webkit-scrollbar {
    display: none;
  }
  .photo-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ==========================================================================
   Online Booking Form Styles
   ========================================================================== */
.booking-left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-form-panel {
  padding: 3rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-premium);
  border-radius: var(--border-radius-lg);
}

.booking-form-panel h3 {
  font-size: 1.5rem;
  color: var(--ocean-dark);
  margin-bottom: 0.5rem;
}

.form-desc-text {
  font-size: 0.88rem;
  color: #5a6e7f;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group-row.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ocean-dark);
  display: block;
}

.required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background-color: var(--seafoam-light);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--ocean-blue);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 91, 140, 0.1);
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5b8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.4rem;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ocean-blue);
  border-radius: 4px;
  accent-color: var(--ocean-blue);
  cursor: pointer;
}

/* Red/Yellow Status Dot Styles for admin configuration */
.status-dot.red {
  background-color: #e74c3c;
  box-shadow: 0 0 8px #e74c3c;
  animation: pulse-red 2s infinite;
}

.status-dot.yellow {
  background-color: #f1c40f;
  box-shadow: 0 0 8px #f1c40f;
  animation: pulse-yellow 2s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes pulse-yellow {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Adjustments for Booking Layout in Tablet/Mobile */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .booking-form-panel {
    padding: 2rem 1.5rem;
  }
  .form-group-row, .form-group-row.three-cols {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .checkbox-group {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ==========================================================================
   Catch Logs Search Bar
   ========================================================================== */
.catch-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
  background: rgba(26, 91, 140, 0.05);
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 12px rgba(26, 91, 140, 0.15);
  background-color: #fff;
}

.search-icon {
  font-size: 1.1rem;
  margin-right: 0.8rem;
  color: var(--text-light);
}

#catch-search-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
}

#catch-search-input::placeholder {
  color: var(--text-light);
}

.search-clear-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-clear-btn:hover {
  color: var(--text-dark);
}

/* ==========================================================================
   Catch Card Hover Indicator
   ========================================================================== */
.card-img-wrapper::after {
  content: '🔍 詳細・写真を見る';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 29, 48, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.catch-card:hover .card-img-wrapper::after {
  opacity: 1;
}

.catch-card {
  cursor: pointer;
}

/* ==========================================================================
   Homepage Catch Detail Modal
   ========================================================================== */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 18, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.catch-detail-modal-card {
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(4, 18, 32, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-wrapper.show .catch-detail-modal-card {
  transform: scale(1);
}

.catch-detail-modal-card .modal-header {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(7, 29, 48, 0.02);
}

.catch-detail-modal-card .modal-header h3 {
  font-size: 1.2rem;
  color: var(--ocean-dark);
  margin: 0;
}

.catch-detail-modal-card .close-modal-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.catch-detail-modal-card .close-modal-btn:hover {
  color: var(--ocean-dark);
  transform: scale(1.1);
}

.catch-detail-modal-card .modal-body {
  padding: 0;
  overflow-y: auto;
  flex-grow: 1;
}

.catch-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}

/* Gallery / Slider */
.catch-detail-gallery {
  position: relative;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  user-select: none;
}

.catch-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.catch-slider-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.catch-slider-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #000;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(7, 29, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-nav:hover {
  background-color: rgba(26, 91, 140, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
  left: 1rem;
}

.slider-nav.next {
  right: 1rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--gold-accent);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Detail Info */
.catch-detail-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: #fff;
}

.catch-detail-info .card-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: block;
}

.catch-modal-badge-wrapper {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.catch-modal-badge-wrapper .card-badge {
  position: static;
  display: inline-block;
  box-shadow: none;
  padding: 0.3rem 0.8rem;
}

.catch-modal-title {
  font-size: 1.5rem;
  color: var(--ocean-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.catch-modal-details {
  font-size: 0.95rem;
  color: #3b4c5d;
  line-height: 1.8;
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.catch-modal-tags {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: auto;
}

.catch-modal-tags .tag {
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.catch-modal-tags .tag-sub {
  color: #6a7c8e;
  font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .catch-detail-layout {
    grid-template-columns: 1fr;
  }
  .catch-detail-info {
    padding: 1.8rem;
  }
  .catch-detail-modal-card {
    max-height: 95vh;
  }
}

/* ==========================================================================
   Opening Splash Screen (Pattern A)
   ========================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #030a16;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}

.splash-video-bg.playing {
  opacity: 1;
}

.splash-cover {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--text-white);
  max-width: 600px;
  width: 90%;
  padding: 3.5rem 3rem;
  background: rgba(3, 10, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius-lg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.splash-cover.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.splash-logo {
  margin-bottom: 1.5rem;
  animation: float-logo 4s ease-in-out infinite alternate;
}

@keyframes float-logo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.splash-brand {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: var(--font-english);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.splash-title {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.splash-btn-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.splash-btn-group .btn {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #b8921d 100%) !important;
  color: #030a16 !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6c253 0%, #d4af37 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

.btn-play-skip {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 100;
  background: rgba(4, 18, 32, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn-play-skip:hover {
  background-color: var(--gold-accent);
  color: #030a16;
  border-color: var(--gold-accent);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transform: translateX(3px);
}

@media (max-width: 768px) {
  /* Announcement Bar adjustments for narrow viewports */
  .top-announcement-bar {
    padding: 0.4rem 0.6rem;
  }
  .announcement-link {
    font-size: 0.75rem;
    gap: 0.4rem;
  }
  .badge-line {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
  }
  
  /* Hero Badge adjustment */
  .seasonal-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.1em;
  }

  .splash-cover {
    padding: 2.5rem 1.8rem;
  }
  .splash-brand {
    font-size: 1.8rem;
  }
  .splash-title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .splash-btn-group {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .splash-btn-group .btn {
    width: 100%;
    text-align: center;
  }
  .btn-play-skip {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo-area svg {
    width: 32px !important;
    height: 32px !important;
  }
  .brand-name {
    font-size: 1.05rem !important;
  }
  .brand-sub {
    display: none !important;
  }
  .status-indicator {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.72rem !important;
    gap: 0.3rem !important;
  }
  .status-dot {
    width: 6px !important;
    height: 6px !important;
  }
  .header-container {
    padding: 0.8rem 0.8rem !important;
  }
  .header-actions {
    gap: 0.6rem !important;
  }
  .splash-cover {
    padding: 2.5rem 1.2rem !important;
  }
  .splash-btn-group .btn {
    padding: 0.8rem 1rem !important;
    font-size: 0.88rem !important;
  }
}

/* Header & Drawer Social Links Integration */
.header-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: 0.5rem;
}

.header-social-icon {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.header-social-icon:hover {
  color: var(--gold-accent);
  transform: translateY(-2px);
}

.drawer-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-social-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.drawer-social-link:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

@media (max-width: 992px) {
  .header-socials {
    display: none; /* Hide social icons in header on tablets and mobile screens */
  }
}

/* Cancel Policy Modal Styles */
.cancel-modal-card {
  width: 100%;
  max-width: 600px !important;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px -12px rgba(4, 18, 32, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-wrapper.show .cancel-modal-card {
  transform: scale(1);
}

.cancel-modal-card .modal-header {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(7, 29, 48, 0.02);
}

.cancel-modal-card .modal-header h3 {
  font-size: 1.2rem;
  color: var(--ocean-dark);
  margin: 0;
}

.cancel-modal-card .close-modal-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.cancel-modal-card .close-modal-btn:hover {
  color: var(--ocean-dark);
  transform: scale(1.1);
}

.cancel-modal-card .modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.cancel-policy-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.cancel-intro {
  margin-bottom: 1.5rem;
}

.cancel-policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.cancel-policy-table th, .cancel-policy-table td {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  text-align: left;
}

.cancel-policy-table th {
  background-color: rgba(7, 29, 48, 0.05);
  color: var(--ocean-dark);
  font-weight: 600;
}

.cancel-policy-table td strong {
  color: #e74c3c;
  font-size: 1.1rem;
}

.cancel-notes {
  background-color: rgba(231, 76, 60, 0.05);
  border-left: 4px solid #e74c3c;
  padding: 1rem;
  border-radius: 4px;
}

.cancel-notes p {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: #c0392b;
}

.cancel-notes p:last-child {
  margin-bottom: 0;
}

/* Catch Logs Announcement Font Size Adjustment */
#text-catch-announcement {
  font-size: clamp(1.4rem, 5vw, 3.15rem) !important;
  line-height: 1.4 !important;
  max-width: 900px !important;
  margin-top: 1rem !important;
}

/* Splash Screen Mobile Optimizations */
@media (max-width: 768px) {
  /* Prevent video from cropping left/right (keep entire 16:9 video frame visible) */
  .splash-video-bg {
    object-fit: contain !important;
    background-color: #030a16 !important;
  }
}

@media (max-width: 480px) {
  /* Make cover card more compact and scrollable on small phone viewports */
  .splash-cover {
    padding: 1.8rem 1rem !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    width: 92% !important;
  }
  
  .splash-logo {
    margin-bottom: 0.6rem !important;
  }
  
  .splash-logo svg {
    width: 48px !important;
    height: 48px !important;
  }
  
  .splash-brand {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .splash-title {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .splash-btn-group .btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

/* ==========================================================================
   Calendar Section
   ========================================================================== */
.calendar-section {
  padding: 6rem 2rem;
  background-color: var(--ocean-dark);
}

.calendar-card {
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.calendar-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 95%; /* Responsive aspect ratio for mobile viewports */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  background-color: #ffffff; /* White background for search visibility and contrast */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

/* Desktop sizing adjustments */
@media (min-width: 769px) {
  .calendar-card {
    padding: 2rem;
  }
  
  .calendar-iframe-wrapper {
    padding-bottom: 0;
    height: 650px; /* Fixed height for clean grid alignment on desktop */
  }
}

.calendar-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.calendar-notes-footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.8;
  text-align: center;
  line-height: 1.6;
}

