/* ============================================================
   BEOND JOURNEYS — Cruise Packages Hub Page Styles
   File: css/hub-cruise.css   v1.0.0
   Nautical-luxury layout  |  Poppins font  |  Brand colours only
   Prefix: bc-
============================================================ */

/* Import Geologica font */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* 0. VARIABLES & BASE --------------------------------------- */
:root {
  --bc-primary: #f97251;
  --bc-primary-dk: #e05c3c;
  --bc-primary-pale: #fef3ef;
  --bc-cream: #fdf9f7;
  --bc-cream2: #f5ede6;
  --bc-border: #ecddd4;
  --bc-text: #666;
  --bc-dark: #2d1206;
  --bc-white: #fff;
  --bc-green: #25d366;
  --bc-green-dk: #1cb857;
  --bc-shadow: 0 4px 24px rgba(249, 114, 81, 0.12);
  --bc-shadow-lg: 0 12px 40px rgba(249, 114, 81, 0.18);
  --bc-radius: 10px;
  --bc-radius-sm: 5px;
  --bc-transition: 0.26s ease;
  --bc-font: "Geologica", sans-serif;
  --bc-container: 1180px;
}

/* Hide theme's auto page title banner on this hub page */
.traveltour-page-title-wrap {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[class^="bc-"],
[class*=" bc-"],
[class^="bc-"] *,
[class*=" bc-"] * {
  font-family: var(--bc-font) !important;
}

.bc-container {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared */
.bc-label {
  display: inline-block;
  background: var(--bc-primary-pale);
  color: var(--bc-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.bc-h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--bc-dark);
  line-height: 1.22;
  margin: 0 0 12px;
}
.bc-h2-light {
  color: #fff !important;
}
.bc-sub {
  color: var(--bc-text);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 36px;
}
.bc-sub-light {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Buttons */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--bc-radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--bc-font);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--bc-transition);
  border: none;
  line-height: 1;
}
.bc-btn-primary {
  background: var(--bc-primary);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(224, 92, 60, 0.35);
}
.bc-btn-primary:hover {
  background: var(--bc-primary-dk);
  transform: translateY(-2px);
  color: #fff !important;
}
.bc-btn-outline {
  background: transparent;
  color: var(--bc-primary) !important;
  border: 2px solid var(--bc-primary);
}
.bc-btn-outline:hover {
  background: var(--bc-primary);
  color: #fff !important;
  transform: translateY(-2px);
}
.bc-btn-white {
  background: #fff;
  color: var(--bc-primary) !important;
}
.bc-btn-white:hover {
  background: var(--bc-primary-pale);
  transform: translateY(-2px);
  color: var(--bc-primary) !important;
}
.bc-btn-whatsapp {
  background: var(--bc-green);
  color: #fff !important;
}
.bc-btn-whatsapp:hover {
  background: var(--bc-green-dk);
  transform: translateY(-2px);
  color: #fff !important;
}

/* ============================================================
   1. HERO
============================================================ */
.bc-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-color: var(--bc-primary-dk);
}
.bc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 22, 40, 0.5) 0%,
    rgba(13, 22, 40, 0.85) 100%
  );
}
.bc-hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bc-hero-content {
  max-width: 640px;
  padding: 90px 0 48px;
}
.bc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
}
.bc-hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin: 0 0 16px;
  font-family: var(--bc-font) !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.bc-hero-tagline {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0 0 34px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.bc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Stats bar */
.bc-hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(13, 22, 40, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bc-hero-stats-inner {
  max-width: var(--bc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.bc-hero-stat {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.bc-hero-stat:last-child {
  border-right: none;
}
.bc-hero-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffb199;
  line-height: 1;
}
.bc-hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 5px;
}

/* ============================================================
   2. CRUISE LINES STRIP
============================================================ */
.bc-lines {
  background: var(--bc-white);
  padding: 44px 0;
  border-bottom: 1px solid var(--bc-border);
}
.bc-lines-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bc-lines-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bc-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.bc-lines-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bc-line-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--bc-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-dark);
  background: var(--bc-cream);
  transition: all var(--bc-transition);
}
.bc-line-badge:hover {
  border-color: var(--bc-primary);
  color: var(--bc-primary);
  background: var(--bc-primary-pale);
}

/* ============================================================
   3. INTRO
============================================================ */
.bc-intro {
  background: var(--bc-cream);
  padding: 80px 0;
}
.bc-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bc-intro-text p {
  color: var(--bc-text);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}
.bc-intro-text p:last-child {
  margin-bottom: 0;
}
.bc-intro-text strong {
  color: var(--bc-dark);
}
.bc-intro-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bc-intro-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bc-white);
  padding: 18px 20px;
  border-radius: var(--bc-radius-sm);
  border-left: 4px solid var(--bc-primary);
}
.bc-intro-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bc-intro-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 4px;
}
.bc-intro-feature p {
  font-size: 13px;
  color: var(--bc-text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   4. PACKAGES
============================================================ */
.bc-packages {
  background: var(--bc-white);
  padding: 80px 0;
}
.bc-packages-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Featured horizontal */
.bc-pkg-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--bc-radius);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  margin-bottom: 24px;
  min-height: 340px;
}
.bc-pkg-featured-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.bc-pkg-featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bc-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}
.bc-pkg-featured-body {
  background: var(--bc-cream2);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bc-pkg-featured-body h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bc-dark);
  margin: 0 0 12px;
  line-height: 1.22;
}
.bc-pkg-meta {
  display: flex;
  gap: 18px;
  color: var(--bc-text);
  font-size: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.bc-pkg-desc {
  color: var(--bc-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.bc-pkg-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--bc-primary);
  margin: 0 0 24px;
  line-height: 1;
}
.bc-pkg-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-text);
}

/* Package grid — 3 col */
.bc-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc-pkg-card {
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  transition:
    box-shadow var(--bc-transition),
    transform var(--bc-transition);
}
.bc-pkg-card:hover {
  box-shadow: var(--bc-shadow-lg);
  transform: translateY(-4px);
}
.bc-pkg-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bc-pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bc-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.bc-pkg-body {
  padding: 22px 22px 26px;
}
.bc-pkg-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 8px;
  line-height: 1.35;
}
.bc-pkg-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--bc-text);
  font-size: 12px;
  margin-bottom: 12px;
}
.bc-pkg-card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--bc-primary);
  margin: 0 0 16px;
}
.bc-pkg-card-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--bc-text);
}

/* CTA tile */
.bc-pkg-card--cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-radius: var(--bc-radius);
  background: var(--bc-primary-pale);
  border: 2px dashed var(--bc-primary);
  gap: 20px;
}
.bc-pkg-cta-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 6px;
}
.bc-pkg-cta-text p {
  font-size: 14px;
  color: var(--bc-text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   5. DESTINATIONS — photo mosaic
============================================================ */
.bc-destinations {
  background: var(--bc-cream2);
  padding: 80px 0;
}
.bc-dest-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-dest-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--bc-radius);
  overflow: hidden;
}
.bc-dest-card {
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
}
.bc-dest-card--tall {
  grid-row: 1 / 3;
}
.bc-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(224, 92, 60, 0.82) 0%,
    transparent 55%
  );
  transition: opacity var(--bc-transition);
}
.bc-dest-card:hover .bc-dest-card-overlay {
  opacity: 0.95;
}
.bc-dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.bc-dest-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.bc-dest-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.bc-dest-card--tall .bc-dest-info h3 {
  font-size: 22px;
}

/* ============================================================
   6. WHY CHOOSE US
============================================================ */
.bc-why {
  background: var(--bc-white);
  padding: 80px 0;
}
.bc-why-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc-why-card {
  border-radius: var(--bc-radius);
  padding: 30px 24px;
  border-top: 4px solid var(--bc-primary);
  background: var(--bc-cream);
  transition: all var(--bc-transition);
}
.bc-why-card:hover {
  box-shadow: var(--bc-shadow);
  transform: translateY(-4px);
}
.bc-why-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.bc-why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 8px;
}
.bc-why-card p {
  color: var(--bc-text);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   7. PROCESS — horizontal card steps
============================================================ */
.bc-process {
  background: var(--bc-cream);
  padding: 80px 0;
}
.bc-process-header {
  text-align: center;
  margin-bottom: 52px;
}
.bc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.bc-process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--bc-border);
}
.bc-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.bc-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bc-primary);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(249, 114, 81, 0.3);
}
.bc-step-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
  color: var(--bc-primary);
}
.bc-process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 8px;
}
.bc-process-step p {
  color: var(--bc-text);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}
.bc-process-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ============================================================
   8. CABIN TYPES — unique cruise section
============================================================ */
.bc-cabins {
  background: var(--bc-primary);
  padding: 80px 0;
}
.bc-cabins-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-cabin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bc-cabin-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bc-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--bc-transition);
}
.bc-cabin-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.bc-cabin-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}
.bc-cabin-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.bc-cabin-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 14px;
}
.bc-cabin-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-cabin-card ul li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bc-cabin-card ul li:last-child {
  border-bottom: none;
}
.bc-cabin-card ul li::before {
  content: "✓";
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   9. INCLUSIONS
============================================================ */
.bc-inclusions {
  background: var(--bc-white);
  padding: 80px 0;
}
.bc-inclusions-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-inc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.bc-inc-col {
  background: var(--bc-cream);
  border-radius: var(--bc-radius);
  padding: 30px 34px;
  border-top: 4px solid transparent;
}
.bc-inc-col--yes {
  border-top-color: #22c55e;
}
.bc-inc-col--no {
  border-top-color: #ef4444;
}
.bc-inc-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bc-inc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.bc-inc-col--yes .bc-inc-icon {
  background: #dcfce7;
  color: #16a34a;
}
.bc-inc-col--no .bc-inc-icon {
  background: #fee2e2;
  color: #dc2626;
}
.bc-inc-col h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0;
}
.bc-inc-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-inc-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bc-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--bc-cream2);
}
.bc-inc-col ul li:last-child {
  border-bottom: none;
}
.bc-inc-col--yes ul li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}
.bc-inc-col--no ul li::before {
  content: "✗";
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
}

/* Price banner */
.bc-price-banner {
  background: var(--bc-primary-dk);
  border-radius: var(--bc-radius);
  padding: 34px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bc-price-from {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.bc-price-amount {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bc-price-amount em {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
}
.bc-price-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  min-width: 180px;
}

/* ============================================================
   10. GUIDES — 3-col card grid
============================================================ */
.bc-guides {
  background: var(--bc-cream2);
  padding: 80px 0;
}
.bc-guides-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc-guide-card {
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  text-decoration: none;
  transition:
    transform var(--bc-transition),
    box-shadow var(--bc-transition);
  display: flex;
  flex-direction: column;
}
.bc-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bc-shadow-lg);
}
.bc-guide-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.bc-guide-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bc-guide-cat {
  display: inline-block;
  background: var(--bc-primary-pale);
  color: var(--bc-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.bc-guide-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 8px;
  line-height: 1.4;
}
.bc-guide-body p {
  color: var(--bc-text);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 14px;
  flex: 1;
}
.bc-guide-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bc-primary);
  margin-top: auto;
}

/* ============================================================
   11. TESTIMONIALS — orange background
============================================================ */
.bc-testimonials {
  background: var(--bc-primary-dk);
  padding: 80px 0;
}
.bc-testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.bc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc-testi-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--bc-radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.bc-testi-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 16px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  font-family: Georgia, serif !important;
}
.bc-testi-stars {
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  opacity: 0.8;
}
.bc-testi-card > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 20px;
  font-style: italic;
}
.bc-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bc-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bc-testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.bc-testi-author span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ============================================================
   12. FAQ
============================================================ */
.bc-faq {
  background: var(--bc-cream);
  padding: 80px 0;
}
.bc-faq-header {
  text-align: center;
  margin-bottom: 44px;
}
.bc-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.bc-faq-item {
  background: var(--bc-white);
  border-radius: var(--bc-radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--bc-border);
  overflow: hidden;
}
.bc-faq-q {
  width: 100%;
  background: none !important;
  border: none;
  padding: 18px 24px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px !important;
  font-weight: 600;
  color: var(--bc-dark) !important;
  font-family: var(--bc-font);
  text-align: left;
  gap: 14px;
  transition: color var(--bc-transition);
}
.bc-faq-q:hover {
  color: var(--bc-primary) !important;
  background: var(--bc-primary-pale) !important;
}
.bc-faq-icon {
  font-size: 22px;
  color: var(--bc-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--bc-transition);
}
.bc-faq-item.bc-faq-open .bc-faq-icon {
  transform: rotate(45deg);
}
.bc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}
.bc-faq-a p {
  padding: 0 24px 22px;
  color: var(--bc-text);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   13. CTA
============================================================ */
.bc-cta {
  background: var(--bc-white);
  padding: 80px 0;
}
.bc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--bc-primary);
  border-radius: var(--bc-radius);
  overflow: hidden;
}
.bc-cta-text {
  padding: 52px 48px;
}
.bc-cta-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}
.bc-cta-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 28px;
}
.bc-cta-form {
  background: var(--bc-white);
  padding: 44px 40px;
}
.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.bc-cta-form input,
.bc-cta-form select,
.bc-cta-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-radius-sm);
  background: var(--bc-cream);
  color: var(--bc-dark);
  font-size: 14px;
  font-family: var(--bc-font);
  outline: none;
  transition: border-color var(--bc-transition);
}
.bc-cta-form input::placeholder,
.bc-cta-form textarea::placeholder {
  color: #aaa;
}
.bc-cta-form select option {
  background: var(--bc-white);
  color: var(--bc-dark);
}
.bc-cta-form input:focus,
.bc-cta-form select:focus,
.bc-cta-form textarea:focus {
  border-color: var(--bc-primary);
  background: var(--bc-white);
}
.bc-cta-form textarea {
  margin-bottom: 12px;
  resize: vertical;
}
.bc-cta-form .bc-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ============================================================
   14. INTERNAL LINKS
============================================================ */
.bc-internal-links {
  background: var(--bc-cream2);
  padding: 64px 0;
}
.bc-links-header {
  text-align: center;
  margin-bottom: 36px;
}
.bc-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bc-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 18px;
  border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border);
  text-decoration: none;
  background: var(--bc-white);
  transition: all var(--bc-transition);
}
.bc-link-card:hover {
  border-color: var(--bc-primary);
  background: var(--bc-primary-pale);
  transform: translateY(-4px);
}
.bc-link-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.bc-link-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 6px;
}
.bc-link-card p {
  font-size: 12px;
  color: var(--bc-text);
  line-height: 1.6;
  margin: 0 0 10px;
}
.bc-link-arrow {
  font-size: 16px;
  color: var(--bc-primary);
  font-weight: 700;
  display: block;
  margin-top: auto;
}

/* ============================================================
   15. FOOTER SEO
============================================================ */
.bc-footer-seo {
  background: var(--bc-cream);
  padding: 48px 0;
  border-top: 1px solid var(--bc-border);
}
.bc-footer-seo-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bc-footer-seo-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bc-dark);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bc-primary);
  display: inline-block;
}
.bc-footer-seo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-footer-seo-col ul li {
  margin-bottom: 8px;
}
.bc-footer-seo-col ul li a {
  font-size: 14px;
  color: var(--bc-text);
  text-decoration: none;
  transition: color var(--bc-transition);
}
.bc-footer-seo-col ul li a:hover {
  color: var(--bc-primary);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .bc-cabin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bc-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bc-hero {
    min-height: 500px;
  }
  .bc-hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .bc-hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .bc-hero-stat:nth-child(3),
  .bc-hero-stat:nth-child(4) {
    border-bottom: none;
  }

  .bc-intro-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bc-pkg-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bc-pkg-featured-img {
    height: 240px;
  }
  .bc-pkg-featured-body {
    padding: 26px 24px;
  }
  .bc-pkg-grid {
    grid-template-columns: 1fr;
  }
  .bc-pkg-card--cta {
    flex-direction: column;
    text-align: center;
  }

  .bc-dest-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bc-dest-card--tall {
    grid-row: auto;
  }

  .bc-why-grid {
    grid-template-columns: 1fr;
  }

  .bc-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .bc-process-steps::before {
    display: none;
  }

  .bc-cabin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-inc-split {
    grid-template-columns: 1fr;
  }
  .bc-price-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .bc-guide-grid {
    grid-template-columns: 1fr;
  }
  .bc-testi-grid {
    grid-template-columns: 1fr;
  }

  .bc-cta-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bc-cta-text {
    padding: 36px 28px 28px;
  }
  .bc-cta-form {
    padding: 28px 24px 36px;
  }
  .bc-form-row {
    grid-template-columns: 1fr;
  }

  .bc-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-footer-seo-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bc-dest-mosaic {
    grid-template-columns: 1fr;
  }
  .bc-cabin-grid {
    grid-template-columns: 1fr;
  }
  .bc-process-steps {
    grid-template-columns: 1fr;
  }
  .bc-links-grid {
    grid-template-columns: 1fr;
  }
  .bc-guide-grid {
    grid-template-columns: 1fr;
  }
}
