/* ================================================================
   fun-diving.css — Page-specific styles for /fun-diving
   Tour cards, pricing table, rentals, dive spots
   ================================================================ */

/* ---- Tour Deck ---- */
.tour-deck {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.tour-card-wrapper {
  display: flex;
  flex-direction: column;
}

.tour-card-wrapper:nth-child(2n) .tour-strip {
  border-left-color: var(--color-coral);
}

.tour-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 3rem 3rem 2rem;
  gap: 3rem;
  border-radius: 0;
  border-left: 3px solid var(--color-cyan);
  margin-bottom: 0;
}

.strip-num {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

.strip-title-group h3 {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 0.75rem;
}

.strip-badges {
  display: flex;
  gap: 0.5rem;
}

.strip-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  background: #00000008;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-body);
}

.strip-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 1.25rem;
}

.strip-content .strip-highlights {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hl-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cyan);
}

.tour-card-wrapper:nth-child(2n) .hl-tag {
  color: var(--color-coral);
}

.strip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-left: 3px solid var(--color-cyan);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #00000008;
}

.tour-card-wrapper:nth-child(2n) .strip-footer {
  border-left-color: var(--color-coral);
}

.strip-price {
  display: flex;
  flex-direction: column;
}

.strip-price .label {
  font-size: 0.7rem;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.strip-price .val {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-title);
}

.strip-price .val small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.btn-narrow {
  padding: 0.8rem 1.4rem;
  font-size: 0.8rem;
}

/* ---- Reviews ---- */
.reviews-split-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.review-editorial-card {
  padding: 3rem;
  border-radius: 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.review-rating-glowing {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.review-body-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-title);
  margin-bottom: 2rem;
}

.review-author-meta cite {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--color-text-title);
  margin-bottom: 0.2rem;
}

.review-author-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-index {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: #00000008;
}

/* ---- Dive Spots ---- */
.spots-area {
  margin-top: 3.5rem;
}

.spots-area:first-of-type {
  margin-top: 1rem;
}

.spots-area-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spots-area-en {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--color-cyan);
}

.spots-area-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-text-title);
}

.spots-area-count {
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.spot-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.spot-card h4 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-title);
}

.spot-stats {
  display: flex;
  gap: 0.75rem;
  margin: 1.1rem 0 1.25rem;
  flex-wrap: wrap;
}

.spot-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.9rem;
  background: rgba(8, 145, 178, 0.06);
  border: 1px solid rgba(8, 145, 178, 0.14);
  border-radius: 8px;
}

.spot-stat .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.spot-stat .val {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-title);
}

.spot-note {
  font-size: 0.78rem;
  color: var(--color-coral);
  margin-bottom: 0.6rem;
}

.spot-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--color-text-body);
}

/* ---- Fun Diving Info Box ---- */
.fun-diving-info-box {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--color-cyan);
}

.fun-diving-info-box p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-body);
}

/* ---- Private Diving Card ---- */
.priv-card {
  margin-top: 2.5rem;
  padding: 2.5rem 3rem;
  border-left: 3px solid var(--color-cyan);
}

.priv-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.priv-badge {
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  background: var(--color-cyan);
  color: #fff;
}

.priv-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-title);
}

.priv-price-tag {
  margin-left: auto;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-coral);
}

.priv-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text-body);
  margin-bottom: 1rem;
}

.priv-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .tour-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem;
  }
  .strip-footer {
    border-left: none;
    padding: 1.25rem 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 768px) {
  .tour-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .strip-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }
  .strip-footer .strip-price {
    align-items: center;
  }
  .strip-footer .neon-btn {
    width: 100%;
    text-align: center;
  }
  .spots-grid {
    grid-template-columns: 1fr;
  }
  .spot-card {
    padding: 1.75rem 1.5rem;
  }
  .reviews-split-slider {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .review-editorial-card {
    padding: 2rem 1.5rem;
  }
  .fun-diving-info-box {
    padding: 2rem 1.5rem;
  }
  .priv-card {
    padding: 2rem 1.5rem;
  }
  .priv-price-tag {
    margin-left: 0;
  }
}
