/**
 * TiberCruise.com – Main Stylesheet
 * Colors: Primary #1C5D7A | CTA #E8813A | Text #333 | Light BG #f8f9fa
 * Prefix: tc-
 */

/* ============================================================================
   RESET & BASE
   ============================================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0; padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6; color: #333; background: #fff;
}

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

a { color: #1C5D7A; text-decoration: none; transition: color 0.25s; }
a:hover { color: #E8813A; }

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin-top: 0; line-height: 1.3; }

/* ============================================================================
   LAYOUT UTILITIES
   ============================================================================ */

.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tc-section {
  padding: 72px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1C5D7A;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 0;
}

.tc-section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 48px;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.tc-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.tc-btn-primary {
  background: #E8813A;
  color: #fff;
  border-color: #E8813A;
}
.tc-btn-primary:hover {
  background: #d4722e;
  border-color: #d4722e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,129,58,0.4);
}

.tc-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.tc-btn-secondary:hover {
  background: #fff;
  color: #1C5D7A;
}

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

.tc-btn-large { padding: 18px 40px; font-size: 1.1rem; }

.tc-btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.tc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 14px 0;
}

.tc-nav .tc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tc-nav-left { display: flex; align-items: center; }

.tc-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.tc-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.tc-logo:hover img { opacity: 0.8; }

.tc-nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tc-nav-right a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.tc-nav-right a:hover { background: #f0f7fb; color: #1C5D7A; }

@media (max-width: 600px) {
  .tc-nav-right { gap: 4px; }
  .tc-nav-right a { font-size: 0.8rem; padding: 3px 5px; }
}

/* ============================================================================
   HERO
   ============================================================================ */

.tc-hero {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.tc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(28,93,122,0.45) 100%);
}

.tc-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 700px;
}

.tc-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tc-hero-subtext {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.93;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.tc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .tc-hero { min-height: 480px; }
  .tc-hero-ctas { flex-direction: column; }
  .tc-hero-ctas .tc-btn { width: 100%; justify-content: center; }
}

/* ============================================================================
   TRUST BAR
   ============================================================================ */

.tc-trust-bar {
  background: #1C5D7A;
  color: #fff;
  padding: 18px 20px;
}

.tc-trust-bar .tc-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

.tc-trust-icon { font-size: 1.1rem; color: #fff; }

@media (max-width: 600px) {
  .tc-trust-bar .tc-container { gap: 20px; }
  .tc-trust-item { font-size: 0.85rem; }
}

/* ============================================================================
   FEATURE SECTION (Main product highlight)
   ============================================================================ */

.tc-feature-section { background: #f8f9fa; padding: 48px 20px; }

.tc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tc-feature-image img {
  border-radius: 12px;
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.tc-feature-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 12px;
}

.tc-feature-content h3 {
  font-size: 1.1rem;
  color: #1C5D7A;
  margin: 14px 0 6px;
}

.tc-price-badge {
  display: inline-block;
  background: #E8813A;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.tc-usps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.tc-usps li {
  padding: 3px 0 3px 24px;
  position: relative;
  color: #444;
}
.tc-usps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E8813A;
  font-weight: 700;
}

.tc-feature-content .tc-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f0f7fb;
  border-left: 4px solid #1C5D7A;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 8px 0 14px;
}
.tc-schedule-column strong { color: #1C5D7A; font-size: 0.95rem; display: block; margin-bottom: 4px; }
.tc-schedule-column p { margin: 0; font-size: 0.9rem; color: #555; }

@media (max-width: 768px) {
  .tc-feature { grid-template-columns: 1fr; }
  .tc-feature-image img { height: 240px; }
  .tc-feature-content .tc-schedule { grid-template-columns: 1fr; }
}

/* ============================================================================
   TOUR CARDS GRID
   ============================================================================ */

.tc-tours-overview { background: #fff; }

.tc-tour-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tc-tour-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tc-tour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.tc-tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tc-tour-card h3 {
  font-size: 1.05rem;
  color: #1C5D7A;
  margin: 14px 16px 8px;
}

.tc-tour-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0 16px 12px;
  flex: 1;
}

.tc-tour-badge {
  display: inline-block;
  background: #E8813A;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  margin: 14px 16px 0;
  border-radius: 3px;
  width: fit-content;
}

.tc-tour-price {
  font-size: 1rem;
  font-weight: 600;
  color: #1C5D7A;
  margin: 0 16px 12px;
}

.tc-tour-card .tc-btn-full {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
  display: block;
}

.tc-link-more {
  display: block;
  font-size: 0.875rem;
  color: #1C5D7A;
  margin-top: 8px;
  font-weight: 500;
  text-align: left;
}
.tc-link-more:hover { color: #E8813A; }

/* Link inside tour cards — sits between description and price */
.tc-link-card {
  display: inline-block;
  font-size: 0.8rem;
  color: #1C5D7A;
  font-weight: 500;
  margin: 8px 16px 4px;
  opacity: 0.8;
}
.tc-link-card:hover { color: #E8813A; opacity: 1; }

@media (max-width: 960px) {
  .tc-tour-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tc-tour-cards { grid-template-columns: 1fr; }
}

/* ============================================================================
   LANDMARKS GRID
   ============================================================================ */

.tc-landmarks { background: #f8f9fa; }

.tc-landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tc-landmark {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #e8edf0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tc-landmark-icon { font-size: 2.4rem; margin-bottom: 12px; }

.tc-landmark h3 {
  font-size: 1.05rem;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-landmark p { font-size: 0.9rem; color: #555; margin: 0; }

@media (max-width: 768px) {
  .tc-landmarks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tc-landmarks-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   BOOKING WIDGET
   ============================================================================ */

.tc-booking-widget { background: #1C5D7A; }

.tc-booking-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.tc-booking-box h2 {
  font-size: 1.6rem;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-booking-box > p {
  color: #666;
  margin-bottom: 24px;
}

.tc-booking-price {
  margin-bottom: 16px;
}

.tc-price-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.tc-price-ab {
  font-size: 0.65em;
  font-weight: 400;
  color: #999;
  vertical-align: middle;
}

.tc-price-big {
  font-size: 2.2rem;
  font-weight: 700;
  color: #E8813A;
}

.tc-booking-trust {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.tc-trust-check {
  font-size: 0.75rem;
  color: #1C5D7A;
  font-weight: 600;
  background: #f0f7fb;
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .tc-booking-trust { flex-wrap: wrap; gap: 6px 8px; }
}

.tc-payment-badge {
  display: block;
  margin: 12px auto 0;
  max-width: 220px;
  height: auto;
  opacity: 0.7;
}

@media (max-width: 540px) {
  .tc-booking-box { padding: 32px 20px; }
  .tc-price-big { font-size: 1.8rem; }
}

/* ============================================================================
   REVIEWS
   ============================================================================ */

.tc-reviews { background: #fff; padding: 56px 20px; }

.tc-reviews-rating {
  text-align: center;
  margin-bottom: 40px;
}

.tc-rating-stars {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.tc-reviews-count { color: #666; font-size: 0.95rem; }

.tc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-review-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #E8813A;
}

.tc-review-stars { font-size: 1.1rem; margin-bottom: 10px; }

.tc-review-text {
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  margin: 0 0 14px 0;
  line-height: 1.6;
}

.tc-review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1C5D7A;
  margin: 0;
}

.tc-review-date {
  font-weight: 400;
  color: #888;
  font-size: 0.8rem;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .tc-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.tc-how-it-works { background: #f8f9fa; }

.tc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tc-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tc-step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #E8813A;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(232,129,58,0.35);
}

.tc-step-content h3 { font-size: 1.05rem; color: #1C5D7A; margin-bottom: 6px; }
.tc-step-content p { font-size: 0.9rem; color: #555; margin: 0; }

@media (max-width: 768px) {
  .tc-steps { grid-template-columns: 1fr; }
}

/* ============================================================================
   FAQ
   ============================================================================ */

.tc-faq { background: #fff; padding: 56px 20px; }

.tc-faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.tc-faq-item {
  border-bottom: 1px solid #e0e8ed;
}
.tc-faq-item:first-child { border-top: 1px solid #e0e8ed; }

.tc-faq-question {
  width: 100%;
  background: none;
  text-align: left;
  padding: 20px 44px 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1C5D7A;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: block;
  border: none;
  line-height: 1.4;
  font-family: inherit;
  transition: color 0.2s;
}
.tc-faq-question:hover { color: #E8813A; }
.tc-faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #E8813A;
  transition: transform 0.25s;
  line-height: 1;
}
.tc-faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.tc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.tc-faq-answer.open {
  max-height: 400px;
  padding-bottom: 18px;
}
.tc-faq-answer p { margin: 0; color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ============================================================================
   FINAL CTA
   ============================================================================ */

.tc-cta-final {
  background: linear-gradient(135deg, #0f3d52 0%, #1C5D7A 50%, #E8813A 150%);
  color: #fff;
  text-align: center;
  padding: 88px 20px;
  position: relative;
  overflow: hidden;
}
.tc-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.tc-cta-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tc-cta-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.tc-cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.tc-cta-final > .tc-container > p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.tc-btn-cta-hero {
  display: inline-block;
  background: #E8813A;
  color: #fff;
  padding: 20px 48px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(232,129,58,0.5);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
}
.tc-btn-cta-hero:hover {
  background: #d4722e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,129,58,0.6);
}

.tc-cta-sub {
  margin: 20px auto 0;
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 500px;
}

@media (max-width: 480px) {
  .tc-cta-final { padding: 60px 16px; }
  .tc-btn-cta-hero { padding: 16px 32px; font-size: 1rem; width: 100%; display: block; }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.tc-footer { background: #0f3d52; color: #cdd8de; padding: 48px 0 0; }

.tc-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.tc-footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.tc-footer-section p { font-size: 0.9rem; color: #aab8bf; line-height: 1.6; margin: 0; }

.tc-footer-section h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tc-footer-list { padding: 0; margin: 0; }
.tc-footer-list li { margin-bottom: 8px; }
.tc-footer-list a { color: #aab8bf; font-size: 0.9rem; }
.tc-footer-list a:hover { color: #E8813A; }

.tc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: space-between;
}

.tc-footer-bottom p { margin: 0; font-size: 0.85rem; color: #aab8bf; }

.tc-footer-links {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.tc-footer-links a { color: #aab8bf; font-size: 0.85rem; }
.tc-footer-links a:hover { color: #E8813A; }

.tc-footer-disclaimer {
  width: 100%;
  font-size: 0.8rem !important;
  color: #7a8f97 !important;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tc-footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tc-footer-main { grid-template-columns: 1fr; }
  .tc-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
   LIVE PRICE / RATING SPANS
   ============================================================================ */

.tc-price-live {
  font-weight: 700;
  transition: opacity 0.3s;
}
.tc-price-live.loading { opacity: 0.4; }

.tc-rating-live { font-weight: 700; }

/* ============================================================================
   STICKY MOBILE BAR
   ============================================================================ */

.tc-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1C5D7A;
  color: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.tc-mobile-sticky-bar.visible {
  transform: translateY(0);
}

.tc-msb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.tc-msb-text { font-size: 0.95rem; font-weight: 500; }

@media (max-width: 767px) {
  .tc-mobile-sticky-bar { display: block; }
}

/* ============================================================================
   DESKTOP SLIDEOUT WIDGET
   ============================================================================ */

.tc-desktop-slideout-widget {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  flex-direction: row-reverse; /* Tab rechts, Panel expandiert nach links */
  align-items: stretch;
}
.tc-desktop-slideout-widget.visible { display: flex; }

.tc-dsw-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: #E8813A;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 10px;
  cursor: pointer;
  border-radius: 6px 0 0 6px;
  transition: background 0.2s;
}
.tc-dsw-tab:hover { background: #d4722e; }

.tc-dsw-panel {
  background: #fff;
  padding: 0;
  border-radius: 0 0 0 6px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  width: 0;
  overflow: hidden;
  transition: width 0.35s ease, padding 0.35s ease;
  min-width: 0;
}
.tc-dsw-panel.open { width: 280px; padding: 24px; }

.tc-dsw-panel h3 { font-size: 1rem; color: #1C5D7A; margin: 0 0 8px; white-space: nowrap; }
.tc-dsw-panel p { font-size: 0.9rem; color: #555; margin: 0 0 16px; white-space: nowrap; }
.tc-dsw-panel .tc-btn { white-space: nowrap; }

@media (max-width: 767px) {
  .tc-desktop-slideout-widget { display: none !important; }
}

/* ============================================================================
   PRICE BADGE (Product details pages)
   ============================================================================ */

.tc-price-big {
  font-size: 2rem;
  font-weight: 700;
  color: #E8813A;
}

/* ============================================================================
   MISC
   ============================================================================ */

.tc-year { font-variant-numeric: tabular-nums; }

/* Badge (generic) */
.tc-badge {
  display: inline-block;
  background: #E8813A;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================================
   RESPONSIVE — global adjustments
   ============================================================================ */

@media (max-width: 480px) {
  .tc-section { padding: 48px 16px; }
  .tc-booking-widget { padding: 48px 16px; }
  .tc-cta-final { padding: 56px 16px; }
}

/* ============================================================================
   SUBPAGE: HEADER / NAV
   ============================================================================ */

.tc-header {
  background: #fff;
  border-bottom: 1px solid #e0e8ed;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.tc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tc-nav-main {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tc-nav-main a {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.tc-nav-main a:hover { background: #f0f7fb; color: #1C5D7A; }
.tc-nav-main a.tc-active { background: #1C5D7A; color: #fff; }

.tc-header-lang { display: flex; align-items: center; }

.tc-lang-select {
  border: 1px solid #d0dde5;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 0.85rem;
  color: #444;
  background: #fff;
  cursor: pointer;
}
.tc-lang-select:focus { outline: 2px solid #1C5D7A; }

@media (max-width: 640px) {
  .tc-nav-main { gap: 2px; }
  .tc-nav-main a { font-size: 0.8rem; padding: 5px 8px; }
}

/* ============================================================================
   SUBPAGE: BREADCRUMB
   ============================================================================ */

.tc-breadcrumb {
  background: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 1px solid #e8edf0;
  font-size: 0.85rem;
  color: #888;
}
.tc-breadcrumb .tc-container { display: flex; gap: 8px; align-items: center; }
.tc-breadcrumb a { color: #1C5D7A; }
.tc-breadcrumb a:hover { color: #E8813A; }
.tc-breadcrumb span { color: #999; }

/* ============================================================================
   SUBPAGE: HERO EXTRAS
   ============================================================================ */

.tc-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tc-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 600px;
}

.tc-hero-cta { margin-bottom: 20px; }

.tc-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tc-meta-item {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================================
   SUBPAGE: TRUST BAR (tc-trust-items variant)
   ============================================================================ */

.tc-trust-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ============================================================================
   SUBPAGE: SPLIT SECTION (main + sidebar)
   ============================================================================ */

.tc-split-section {
  padding: 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-split-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.tc-split-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #1C5D7A;
  margin-bottom: 16px;
}

.tc-split-text p { color: #444; margin-bottom: 16px; line-height: 1.8; }

.tc-highlight-box {
  background: #f0f7fb;
  border-left: 4px solid #1C5D7A;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.tc-highlight-box h3 {
  font-size: 1rem;
  color: #1C5D7A;
  margin-bottom: 12px;
}

.tc-feature-list {
  list-style: none;
  padding: 0; margin: 0;
}
.tc-feature-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid rgba(28,93,122,0.1);
}
.tc-feature-list li:last-child { border-bottom: none; }

/* Sidebar booking widget */
.tc-split-sidebar { position: sticky; top: 80px; }

.tc-booking-widget-sidebar {
  background: #fff;
  border: 1px solid #e0e8ed;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tc-booking-widget-sidebar h3 {
  font-size: 1.1rem;
  color: #1C5D7A;
  margin-bottom: 16px;
}

.tc-widget-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f6;
  font-size: 0.9rem;
}

.tc-widget-label { color: #888; }
.tc-widget-value { font-weight: 600; color: #1C5D7A; }

.tc-widget-btn {
  width: 100%;
  display: block;
  margin-top: 16px;
  text-align: center;
}

.tc-widget-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin: 10px 0 0;
}

/* Secondary button on light backgrounds — scoped to containers with white/light bg */
.tc-tour-card .tc-btn-secondary,
.tc-related-tours .tc-btn-secondary,
.tc-tour-card-content .tc-btn-secondary,
.tc-booking-widget-sidebar .tc-btn-secondary,
.tc-split-sidebar .tc-btn-secondary,
.tc-feature-content .tc-btn-secondary {
  background: transparent;
  color: #1C5D7A;
  border: 2px solid #1C5D7A;
}
.tc-tour-card .tc-btn-secondary:hover,
.tc-related-tours .tc-btn-secondary:hover,
.tc-tour-card-content .tc-btn-secondary:hover,
.tc-booking-widget-sidebar .tc-btn-secondary:hover,
.tc-split-sidebar .tc-btn-secondary:hover,
.tc-feature-content .tc-btn-secondary:hover {
  background: #1C5D7A;
  color: #fff;
}

@media (max-width: 860px) {
  .tc-split-content { grid-template-columns: 1fr; }
  .tc-split-sidebar { position: static; }
  .tc-booking-widget-sidebar { max-width: 480px; }
}

/* ============================================================================
   SUBPAGE: SCHEDULE
   ============================================================================ */

.tc-schedule {
  background: #f8f9fa;
  padding: 64px 20px;
}

.tc-schedule .tc-container { max-width: 1200px; margin: 0 auto; }

.tc-schedule h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-schedule-intro { color: #666; margin-bottom: 32px; }

.tc-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tc-schedule-stop {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e0e8ed;
}

.tc-schedule-stop h3 {
  font-size: 1.1rem;
  color: #1C5D7A;
  margin-bottom: 6px;
}

.tc-stop-description { font-size: 0.9rem; color: #777; margin-bottom: 16px; }

.tc-departure-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-time {
  background: #1C5D7A;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tc-schedule-note {
  margin-top: 24px;
  background: #fff3cd;
  border-left: 4px solid #E8813A;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 640px) {
  .tc-schedule-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: HIGHLIGHTS GRID
   ============================================================================ */

.tc-highlights {
  padding: 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-highlights h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-intro-text { color: #666; margin-bottom: 32px; }

.tc-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-highlight-card {
  background: #fff;
  border: 1px solid #e0e8ed;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tc-highlight-card h3 {
  font-size: 1rem;
  color: #1C5D7A;
  margin-bottom: 10px;
}

.tc-highlight-card p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.7; }

@media (max-width: 768px) {
  .tc-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tc-highlights-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: WHAT'S INCLUDED
   ============================================================================ */

.tc-whats-included {
  background: #f8f9fa;
  padding: 64px 20px;
}

.tc-whats-included .tc-container { max-width: 1200px; margin: 0 auto; }

.tc-whats-included h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 32px;
}

.tc-inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tc-inclusion-column {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e0e8ed;
}

.tc-inclusion-column h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.tc-inclusion-column:first-child h3 { color: #2a8a2a; }
.tc-inclusion-column:last-child h3 { color: #c0392b; }

.tc-inclusion-list {
  list-style: none;
  padding: 0; margin: 0;
}

.tc-inclusion-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f0f4f6;
}
.tc-inclusion-list li:last-child { border-bottom: none; }

.tc-inclusion-column:first-child .tc-inclusion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a8a2a;
  font-weight: 700;
}

.tc-inclusion-column:last-child .tc-inclusion-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

@media (max-width: 640px) {
  .tc-inclusion-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: PRACTICAL INFO
   ============================================================================ */

.tc-practical {
  padding: 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-practical h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 32px;
}

.tc-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-practical-item {
  border-left: 3px solid #1C5D7A;
  padding: 0 0 0 16px;
}

.tc-practical-item h3 {
  font-size: 0.95rem;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-practical-item p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.7; }

@media (max-width: 768px) {
  .tc-practical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tc-practical-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: FULL-WIDTH BOOKING WIDGET
   ============================================================================ */

.tc-booking-widget {
  background: #1C5D7A;
  padding: 56px 20px;
}

.tc-widget-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.tc-widget-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}

.tc-widget-left p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.tc-widget-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tc-trust-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tc-price-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  min-width: 240px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.tc-price-display {
  font-size: 2.4rem;
  font-weight: 700;
  color: #E8813A;
  margin: 8px 0 20px;
}

.tc-widget-fine-print {
  font-size: 0.8rem;
  color: #999;
  margin: 12px 0 0;
}

@media (max-width: 768px) {
  .tc-widget-inner { grid-template-columns: 1fr; }
  .tc-price-box { max-width: 320px; }
}

/* ============================================================================
   SUBPAGE: REVIEWS
   ============================================================================ */

.tc-rating-summary {
  text-align: center;
  margin-bottom: 32px;
}

.tc-stars { font-size: 1.3rem; }
.tc-rating-value { font-size: 1.1rem; font-weight: 600; color: #1C5D7A; margin-left: 8px; }
.tc-review-count { color: #666; font-size: 0.95rem; margin: 4px 0 0; }

.tc-review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tc-review-cards { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: RELATED TOURS
   ============================================================================ */

.tc-related-tours {
  background: #f8f9fa;
  padding: 64px 20px;
}

.tc-related-tours .tc-container { max-width: 1200px; margin: 0 auto; }

.tc-related-tours h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-tour-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.tc-tour-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0;
}

.tc-tour-card-content {
  padding: 20px;
}

.tc-tour-card-content h3 { font-size: 1.05rem; color: #1C5D7A; margin-bottom: 8px; }
.tc-tour-card-content p { font-size: 0.9rem; color: #555; margin-bottom: 14px; }

.tc-tour-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 14px;
}

/* ============================================================================
   SUBPAGE: CLOSING CTA
   ============================================================================ */

.tc-closing-cta {
  background: linear-gradient(135deg, #0f3d52 0%, #1C5D7A 100%);
  color: #fff;
  text-align: center;
  padding: 72px 20px;
}

.tc-closing-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
}

.tc-closing-cta p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================================================
   SUBPAGE: FOOTER VARIANTS
   ============================================================================ */

.tc-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.tc-footer-column h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 14px;
}

.tc-footer-column ul { padding: 0; margin: 0; }
.tc-footer-column li { margin-bottom: 8px; }
.tc-footer-column a { color: #aab8bf; font-size: 0.875rem; }
.tc-footer-column a:hover { color: #E8813A; }

.tc-affiliate-note {
  font-size: 0.8rem;
  color: #7a8f97;
  margin: 8px 0 0;
}

@media (max-width: 768px) {
  .tc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tc-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUBPAGE: STICKY MOBILE BAR (tc-sticky-mobile-bar)
   ============================================================================ */

.tc-sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1C5D7A;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.tc-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  gap: 12px;
}

.tc-sticky-price { color: #fff; font-size: 0.95rem; font-weight: 500; }

.tc-sticky-btn { white-space: nowrap; }

@media (max-width: 767px) {
  .tc-sticky-mobile-bar { display: block; }
}

/* ============================================================================
   SUNSET-APERITIVO: INCLUSION HIGHLIGHTS (icon cards)
   ============================================================================ */

.tc-whats-included-highlight {
  padding: 64px 0;
  background: #f8fafb;
}

.tc-whats-included-highlight h2 {
  text-align: center;
  margin-bottom: 8px;
  color: #1C5D7A;
}

.tc-inclusion-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tc-inclusion-highlight-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}

.tc-inclusion-highlight-item:hover {
  box-shadow: 0 6px 24px rgba(28,93,122,0.12);
}

.tc-inclusion-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.tc-inclusion-highlight-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-inclusion-highlight-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tc-inclusion-highlight-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tc-inclusion-highlight-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUNSET-APERITIVO: ROMANCE USP / OCCASIONS GRID
   ============================================================================ */

.tc-romance-usp {
  padding: 64px 0;
  background: #fff;
}

.tc-romance-usp h2 {
  text-align: center;
  margin-bottom: 8px;
  color: #1C5D7A;
}

.tc-occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tc-occasion-card {
  background: #f8fafb;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #E8813A;
}

.tc-occasion-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-occasion-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.tc-special-request {
  background: linear-gradient(135deg, #1C5D7A, #2a7fa8);
  color: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
}

.tc-special-request p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}

.tc-special-request strong { color: #ffd899; }

@media (max-width: 768px) {
  .tc-occasions-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   SUNSET-APERITIVO: SUNSET TIMES TABLE
   ============================================================================ */

.tc-sunset-times {
  padding: 64px 0;
  background: #f8fafb;
}

.tc-sunset-times h2 {
  text-align: center;
  margin-bottom: 8px;
  color: #1C5D7A;
}

.tc-sunset-table {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.tc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}

.tc-table th {
  background: #1C5D7A;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.tc-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eef0f2;
  color: #444;
}

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

.tc-table tr.tc-highlight-row td {
  background: #fff9f0;
  color: #333;
  font-weight: 500;
}

.tc-table tr:hover td { background: #f0f7fb; }

.tc-sunset-recommendation {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 32px;
  border-left: 4px solid #1C5D7A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tc-sunset-recommendation h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C5D7A;
  margin-bottom: 12px;
}

.tc-sunset-recommendation p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.tc-sunset-recommendation p:last-child { margin-bottom: 0; }

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: BEM NAV STYLES
   ============================================================================ */

.tc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tc-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.tc-nav__list li a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  color: #1C5D7A;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.tc-nav__list li a:hover { background: #f0f7fb; }

.tc-trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: BEM HERO
   ============================================================================ */

.tc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.tc-hero__content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.tc-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: SECTION SYSTEM
   ============================================================================ */

.tc-section {
  padding: 64px 0;
}

.tc-section--light {
  background: #f8fafb;
}

.tc-container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.tc-text-center { text-align: center; }

.tc-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

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

.tc-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}

.tc-card:hover { box-shadow: 0 6px 24px rgba(28,93,122,0.12); }

.tc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C5D7A;
  margin-bottom: 8px;
}

.tc-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.tc-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tc-item strong {
  display: block;
  font-weight: 700;
  color: #1C5D7A;
  margin-bottom: 6px;
}

.tc-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

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

.tc-list li {
  padding: 10px 14px 10px 40px;
  background: #f8fafb;
  border-radius: 8px;
  position: relative;
  font-size: 0.95rem;
  color: #444;
}

.tc-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: #1C5D7A;
  font-weight: 700;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: BEM BUTTON VARIANTS
   ============================================================================ */

.tc-btn--primary {
  display: inline-block;
  padding: 14px 28px;
  background: #E8813A;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.tc-btn--primary:hover {
  background: #cf6f2e;
  transform: translateY(-1px);
  color: #fff;
}

.tc-btn--secondary {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #1C5D7A;
  border: 2px solid #1C5D7A;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tc-btn--secondary:hover {
  background: #1C5D7A;
  color: #fff;
}

.tc-btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.tc-btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: RELATED TOURS
   ============================================================================ */

.tc-related-tour {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tc-related-tour:hover {
  box-shadow: 0 8px 32px rgba(28,93,122,0.16);
  transform: translateY(-3px);
}

.tc-related-tour img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tc-related-tour h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1C5D7A;
  padding: 16px 16px 4px;
  margin: 0;
}

.tc-related-tour p {
  font-size: 0.875rem;
  color: #555;
  padding: 0 16px 16px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: DESKTOP STICKY BAR
   ============================================================================ */

.tc-sticky-bar {
  display: none;
}

.tc-sticky-bar--desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1C5D7A;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  /* Always visible on desktop — no JS trigger needed */
  transform: translateY(0);
}

.tc-sticky-bar__content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 0.95rem;
}

.tc-sticky-bar__price {
  font-weight: 600;
  color: #ffd899;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: BEM FOOTER
   ============================================================================ */

.tc-footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 32px;
}

.tc-footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tc-footer__col p {
  font-size: 0.875rem;
  color: #aab8bf;
  line-height: 1.6;
  margin: 0;
}

.tc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-footer__col li { margin-bottom: 8px; }

.tc-footer__col a {
  color: #aab8bf;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.tc-footer__col a:hover { color: #E8813A; }

.tc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.tc-footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #aab8bf;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: BEM FAQ (uses <details> element)
   ============================================================================ */

.tc-faq__item {
  border: 1px solid #e0e8ed;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.tc-faq__item:hover {
  box-shadow: 0 2px 12px rgba(28,93,122,0.1);
}

.tc-faq__item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1C5D7A;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  user-select: none;
}

.tc-faq__item summary::-webkit-details-marker { display: none; }

.tc-faq__item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #1C5D7A;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.tc-faq__item[open] summary::after {
  transform: rotate(45deg);
}

.tc-faq__item p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  border-top: 1px solid #f0f4f6;
  padding-top: 12px;
  background: #fafcfd;
}

/* ============================================================================
   PRIVATE-CRUISE / RAFTING: RATING SKELETON
   ============================================================================ */

.tc-rating-skeleton {
  background: linear-gradient(90deg, #f0f4f6 25%, #e4ecf0 50%, #f0f4f6 75%);
  background-size: 200% 100%;
  animation: tc-shimmer 1.5s infinite;
  border-radius: 8px;
  height: 40px;
  max-width: 240px;
  color: transparent;
}

@keyframes tc-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================================
   RESPONSIVE: BEM GRID SYSTEM
   ============================================================================ */

@media (max-width: 768px) {
  .tc-grid--3 { grid-template-columns: 1fr; }
  .tc-grid--2 { grid-template-columns: 1fr; }
  .tc-footer__content { grid-template-columns: 1fr; gap: 24px; }
  .tc-sticky-bar--desktop { display: none !important; }
}

/* ============================================================================
   MISSING: tc-trust-text, tc-widget-right
   ============================================================================ */

/* Trust bar text label */
.tc-trust-text {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #fff;
}

/* Booking widget right column (holds tc-price-box) */
.tc-widget-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .tc-widget-right { justify-content: center; }
}

/* ============================================================================
   FIXES: private-cruise & rafting layout issues (v=12)
   ============================================================================ */

/* 1. Hide the desktop sticky bar – it sits fixed at top:0 and covered the sticky nav */
.tc-sticky-bar--desktop { display: none !important; }

/* 2. Inline booking widget (private-cruise/rafting): make readable on blue bg */
.tc-container--narrow > .tc-booking-widget {
  border-radius: 14px;
  text-align: center;
  padding: 40px 32px;
  box-shadow: 0 6px 28px rgba(28,93,122,0.18);
  margin-top: 8px;
}
.tc-container--narrow > .tc-booking-widget p {
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.tc-container--narrow > .tc-booking-widget .tc-btn--primary,
.tc-container--narrow > .tc-booking-widget .tc-btn--primary:hover {
  background: #E8813A;
  color: #fff;
}

/* Heading above narrow sections (booking / FAQ) */
section.tc-section > .tc-container--narrow > h2 {
  text-align: center;
  color: #1C5D7A;
  margin-bottom: 20px;
}

/* 3. Reduce very large gap between FAQ and "Unsere Tiber-Bootstouren" section */
section.tc-section.tc-tours-overview { padding-top: 24px; }
section.tc-section:has(> .tc-container--narrow > h2 + .tc-faq) { padding-bottom: 32px; }
