/* * sbt-theme.css
 * Struck by Travel — Custom Theme
 * Companion stylesheet for Bootstrap 5
 * Import Google Fonts in your BS Studio project settings or add to <head>
 * Fonts: Playfair Display (400,600,700,italic) + DM Sans (300,400,500,600) + Cormorant Garamond (300,400,italic) */

/* ============================================================
   1. BRAND TOKENS
   ============================================================ */

:root {
  --sbt-navy: #015394;
  --sbt-navy-dk: #012d55;
  --sbt-navy-rgb: 1, 83, 148;
  --sbt-orange: #F38227;
  --sbt-orange-dk: #d96e18;
  --sbt-orange-rgb: 243, 130, 39;
  --sbt-text: #2d2d2d;
  --sbt-muted: #6b7280;
  --sbt-light: #f4f7fc;
  --sbt-border: #dde3ef;
  --sbt-shadow: 0 4px 24px rgba(1, 83, 148, 0.10);
  --sbt-shadow-lg: 0 12px 48px rgba(1, 83, 148, 0.16);
  --sbt-radius: 12px;
  --sbt-radius-sm: 7px;
  --bs-primary: #015394;
  --bs-body-color: #2d2d2d;
  --bs-border-color: #dde3ef;
  --bs-border-radius: 12px;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--sbt-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, .sbt-serif {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
}

em.sbt-italic {
  font-style: italic;
  font-weight: 400;
  opacity: 0.88;
}

.sbt-cormorant {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
}

.sbt-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sbt-orange);
  display: block;
  margin-bottom: 12px;
}

.sbt-lead-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--sbt-muted);
  line-height: 1.65;
  border-left: 3px solid var(--sbt-orange);
  padding-left: 20px;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.sbt-section {
  padding: 96px 0;
}

.sbt-section-sm {
  padding: 64px 0;
}

.sbt-section-alt {
  background-color: var(--sbt-light);
}

/* Override Bootstrap container max-width to match design */

.container-xl {
  max-width: 1200px;
}

@media (min-width: 1200px) {
  .container-xl {
    max-width: 1200px;
  }
}

/* ============================================================
   4. NAVIGATION  (.sbt-navbar)
   BS Studio: Navbar component, dark variant, fixed-top

   TWO USAGE PATTERNS:
   ─────────────────────────────────────────────────────────────
   A) HOMEPAGE (transparent → solid on scroll):
      <nav class="navbar navbar-expand-lg sbt-navbar fixed-top" id="sbtMainNav">
      Starts fully transparent — hero image shows through.
      JS toggles .scrolled after 60 px of scroll.

   B) INNER PAGES (always solid):
      <nav class="navbar navbar-expand-lg sbt-navbar sbt-navbar-solid fixed-top">
      No JS needed.
   ─────────────────────────────────────────────────────────────
   ============================================================ */

/* ── Base: TRANSPARENT ─────────────────────────────────────
   !important forces this to win over Bootstrap 5.3's CSS
   custom-property theming (--bs-navbar-bg, data-bs-theme="dark", etc.)
   and anything Bootstrap Studio injects in its design view.
   ─────────────────────────────────────────────────────────── */

.sbt-navbar {
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 72px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* ── Solid state ────────────────────────────────────────────
   Shared by inner pages (.sbt-navbar-solid) and the scrolled
   homepage (.sbt-navbar.scrolled added by JS).
   !important overrides the transparent base above.
   ─────────────────────────────────────────────────────────── */

.sbt-navbar.sbt-navbar-solid, .sbt-navbar.scrolled {
  background-color: rgba(1, 45, 85, 0.97) !important;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Mobile collapse background ────────────────────────────
   Below lg breakpoint the menu drops down. Without an explicit
   background the links float over the page content.
   Only apply when the base nav is transparent (homepage);
   .sbt-navbar-solid pages already have full-width bg.
   ─────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .sbt-navbar:not(.sbt-navbar-solid):not(.scrolled) .navbar-collapse.show, .sbt-navbar:not(.sbt-navbar-solid):not(.scrolled) .navbar-collapse.collapsing {
    background-color: rgba(1, 45, 85, 0.97);
    padding: 12px 20px 18px;
    margin: 0 -12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.sbt-navbar .navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  text-decoration: none;
}

.sbt-navbar .sbt-brand-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.sbt-navbar .sbt-brand-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sbt-orange);
  line-height: 1;
}

.sbt-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 0.5rem 0.25rem;
  position: relative;
}

.sbt-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sbt-orange);
  transition: width 0.25s;
}

.sbt-navbar .nav-link:hover, .sbt-navbar .nav-link.active {
  color: #fff;
}

.sbt-navbar .nav-link:hover::after, .sbt-navbar .nav-link.active::after {
  width: 100%;
}

.sbt-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}

.sbt-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button in nav */

.sbt-nav-cta {
  background: var(--sbt-orange) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--sbt-radius-sm) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
}

.sbt-nav-cta:hover {
  background: var(--sbt-orange-dk) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.sbt-nav-cta::after {
  display: none !important;
}

/* ============================================================
   5. HERO SECTIONS  (.sbt-hero)
   BS Studio: Full-height div, background image + overlay div + content div
   ============================================================ */

.sbt-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Inner page hero (shorter) */

.sbt-hero-page {
  position: relative;
  height: 480px;
  padding-top: 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Background image div — set background-image inline in HTML */

.sbt-hero-bg, .sbt-hero-page .sbt-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: sbtHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes sbtHeroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12) translateX(-6px);
  }
}

/* Gradient overlay div */

.sbt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom, rgba(1, 20, 50, 0.28) 0%, rgba(1, 20, 50, 0.60) 50%, rgba(1, 20, 50, 0.82) 100% );
}

/* Page hero overlay — darker at bottom for text legibility */

.sbt-hero-page .sbt-hero-overlay {
  background: linear-gradient( to top, rgba(1, 20, 50, 0.92) 0%, rgba(1, 20, 50, 0.45) 55%, rgba(1, 20, 50, 0.12) 100% );
}

/* Content wrapper — placed above overlays */

.sbt-hero-content {
  position: relative;
  z-index: 2;
  animation: sbtFadeUp 1s ease both;
}

/* Page hero content sits at bottom */

.sbt-hero-page .sbt-hero-content {
  padding-bottom: 56px;
}

@keyframes sbtFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sbt-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}

.sbt-hero-page .sbt-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.sbt-hero-content .sbt-hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 560px;
}

/* Scroll indicator */

.sbt-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.sbt-scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: sbtScrollPulse 2.2s infinite;
}

@keyframes sbtScrollPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================================
   6. TRUST PILLS & TRUST STRIP
   ============================================================ */

.sbt-trust-pill {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sbt-trust-pill::before {
  content: '✓';
  color: var(--sbt-orange);
  font-weight: 700;
  font-size: 11px;
}

.sbt-trust-strip {
  background: var(--sbt-navy);
  padding: 14px 0;
}

.sbt-strip-item {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 28px;
  text-align: center;
  position: relative;
}

.sbt-strip-item + .sbt-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sbt-orange);
}

/* ============================================================
   7. BUTTONS
   BS Studio: Button component, use custom classes alongside btn
   ============================================================ */

.btn-sbt-primary {
  background: var(--sbt-orange);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--sbt-radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(var(--sbt-orange-rgb), 0.38);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-sbt-primary:hover {
  background: var(--sbt-orange-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--sbt-orange-rgb), 0.5);
}

.btn-sbt-navy {
  background: transparent;
  color: var(--sbt-navy);
  padding: 12px 28px;
  border-radius: var(--sbt-radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--sbt-navy);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-sbt-navy:hover {
  background: var(--sbt-navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sbt-white {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--sbt-radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-sbt-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-sbt-lg {
  padding: 15px 40px;
  font-size: 16px;
}

/* ============================================================
   8. SECTION HEADINGS
   ============================================================ */

.sbt-section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--sbt-navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.sbt-section-intro {
  font-size: 17px;
  color: var(--sbt-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   9. SERVICE CARDS  (.sbt-service-card)
   BS Studio: Cards > 4-col grid (col-sm-6 col-lg-3)
   ============================================================ */

.sbt-service-card {
  border: none;
  border-radius: var(--sbt-radius);
  overflow: hidden;
  box-shadow: var(--sbt-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sbt-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sbt-shadow-lg);
}

.sbt-service-card .sbt-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sbt-service-card .sbt-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sbt-service-card:hover .sbt-card-img-wrap img {
  transform: scale(1.06);
}

.sbt-card-icon-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 42px;
  height: 42px;
  background: var(--sbt-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(var(--sbt-orange-rgb), 0.38);
  z-index: 1;
}

.sbt-service-card .card-body {
  padding: 32px 20px 22px;
}

.sbt-service-card .card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--sbt-navy);
  margin-bottom: 10px;
}

.sbt-service-card .card-text {
  font-size: 14px;
  color: var(--sbt-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.sbt-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sbt-navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.sbt-service-card:hover .sbt-card-link {
  gap: 10px;
  color: var(--sbt-orange);
}

/* ============================================================
   10. WHY US PILLARS  (.sbt-pillar-card)
   BS Studio: Cards > 3-col (col-md-4), icons from BS Icons library
   ============================================================ */

.sbt-pillar-card {
  background: #fff;
  border: none;
  border-radius: var(--sbt-radius);
  padding: 36px 28px;
  box-shadow: var(--sbt-shadow);
  border-top: 4px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}

.sbt-pillar-card:hover {
  border-top-color: var(--sbt-orange);
  transform: translateY(-4px);
}

.sbt-pillar-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 18px;
}

.sbt-pillar-card h3 {
  font-size: 21px;
  color: var(--sbt-navy);
  margin-bottom: 12px;
}

.sbt-pillar-card p {
  font-size: 15px;
  color: var(--sbt-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   11. HOW IT WORKS / STEPS
   BS Studio: Cards + connector SVG lines
   ============================================================ */

.sbt-steps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}

.sbt-step {
  text-align: center;
  padding: 0 12px;
}

.sbt-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sbt-orange);
  color: var(--sbt-orange);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(var(--sbt-orange-rgb), 0.2);
}

.sbt-step-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.sbt-step h3 {
  font-size: 22px;
  color: var(--sbt-navy);
  margin-bottom: 10px;
}

.sbt-step p {
  font-size: 14.5px;
  color: var(--sbt-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.sbt-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  color: var(--sbt-border);
}

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

@media (max-width: 768px) {
  .sbt-step-arrow {
    display: none;
  }
}

/* ============================================================
   12. TESTIMONIALS  (.sbt-testimonial)
   BS Studio: Cards > Dark background (bg set via class)
   ============================================================ */

.sbt-testimonial {
  background: var(--sbt-navy);
  border: none;
  border-radius: var(--sbt-radius);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.sbt-testimonial::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 32px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.sbt-testimonial::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(var(--sbt-orange-rgb), 0.1);
  pointer-events: none;
}

.sbt-testimonial-stars {
  font-size: 16px;
  color: var(--sbt-orange);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 14px;
}

.sbt-testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 16px;
}

.sbt-testimonial cite {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Mini testimonial card (grid of 3) */

.sbt-t-card {
  background: #fff;
  border: none;
  border-left: 3px solid var(--sbt-orange);
  border-radius: var(--sbt-radius);
  padding: 26px;
  box-shadow: var(--sbt-shadow);
  height: 100%;
}

.sbt-t-card .sbt-t-stars {
  font-size: 14px;
  color: var(--sbt-orange);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.sbt-t-card blockquote {
  font-size: 14.5px;
  color: var(--sbt-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
}

.sbt-t-card cite {
  font-size: 12px;
  font-weight: 600;
  color: var(--sbt-muted);
  font-style: normal;
}

/* ============================================================
   13. BLOG CARDS  (.sbt-blog-card)
   BS Studio: Cards component with image top
   ============================================================ */

.sbt-blog-card {
  border: none;
  border-radius: var(--sbt-radius);
  overflow: hidden;
  box-shadow: var(--sbt-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sbt-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sbt-shadow-lg);
}

.sbt-blog-card .sbt-blog-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.sbt-blog-card.sbt-featured .sbt-blog-img {
  height: 300px;
}

.sbt-blog-card .sbt-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sbt-blog-card:hover .sbt-blog-img img {
  transform: scale(1.06);
}

.sbt-blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(1, 45, 85, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.sbt-blog-series {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sbt-orange);
  display: block;
  margin-bottom: 8px;
}

.sbt-blog-card .card-body {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sbt-blog-card .card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  color: var(--sbt-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sbt-blog-card .card-text {
  font-size: 14px;
  color: var(--sbt-muted);
  line-height: 1.65;
  flex: 1;
}

.sbt-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--sbt-muted);
  margin-bottom: 12px;
}

.sbt-blog-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sbt-border);
  display: inline-block;
}

.sbt-blog-read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sbt-navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 12px;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.sbt-blog-card:hover .sbt-blog-read-link {
  gap: 9px;
  color: var(--sbt-orange);
}

/* ============================================================
   14. FEATURED BLOG POST  (.sbt-featured-post)
   ============================================================ */

.sbt-featured-post {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sbt-shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.sbt-featured-post .sbt-feat-img {
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.sbt-featured-post .sbt-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.sbt-featured-post:hover .sbt-feat-img img {
  transform: scale(1.04);
}

.sbt-featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--sbt-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.sbt-featured-post .sbt-feat-body {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sbt-featured-post .sbt-feat-series {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sbt-orange);
  display: block;
  margin-bottom: 12px;
}

.sbt-featured-post h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--sbt-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sbt-featured-post p {
  font-size: 15px;
  color: var(--sbt-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sbt-featured-read-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--sbt-navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}

.sbt-featured-post:hover .sbt-featured-read-link {
  gap: 12px;
  color: var(--sbt-orange);
}

@media (max-width: 900px) {
  .sbt-featured-post {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sbt-featured-post .sbt-feat-img {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .sbt-featured-post .sbt-feat-body {
    padding: 32px;
  }
}

/* ============================================================
   15. CTA BAND  (.sbt-cta-band)
   BS Studio: Full-width section, background image + overlay
   ============================================================ */

.sbt-cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.sbt-cta-band .sbt-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sbt-cta-band .sbt-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 45, 85, 0.88), rgba(1, 83, 148, 0.78));
}

.sbt-cta-band .sbt-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.sbt-cta-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}

.sbt-cta-band .sbt-cta-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.sbt-cta-microcopy {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 18px;
}

.sbt-cta-microcopy span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sbt-cta-microcopy span::before {
  content: '✓';
  color: var(--sbt-orange);
  font-size: 11px;
}

/* ============================================================
   16. FOOTER  (.sbt-footer)
   BS Studio: Footer template component
   ============================================================ */

.sbt-footer {
  background: var(--sbt-navy-dk);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.sbt-footer .sbt-footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.sbt-footer .sbt-footer-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sbt-orange);
  display: block;
  margin-bottom: 14px;
}

.sbt-footer p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.65);
}

.sbt-footer h5 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  margin-bottom: 18px;
}

.sbt-footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sbt-footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.sbt-footer-links a:hover {
  color: #fff;
}

.sbt-footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sbt-footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sbt-footer-contact .sbt-contact-icon {
  color: var(--sbt-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.sbt-footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.sbt-footer-contact a:hover {
  color: #fff;
}

.sbt-footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.sbt-footer-bottom {
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.sbt-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.sbt-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ============================================================
   17. BREADCRUMB
   ============================================================ */

.sbt-breadcrumb {
  background: var(--sbt-light);
  padding: 13px 0;
  border-bottom: 1px solid var(--sbt-border);
  font-size: 13px;
}

.sbt-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.sbt-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--sbt-muted);
}

.sbt-breadcrumb .breadcrumb-item a {
  color: var(--sbt-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.sbt-breadcrumb .breadcrumb-item a:hover {
  color: var(--sbt-orange);
}

.sbt-breadcrumb .breadcrumb-item.active {
  color: var(--sbt-muted);
}

/* ============================================================
   18. FAQ ACCORDION  (.sbt-faq)
   BS Studio: Accordion component + custom styles
   ============================================================ */

.sbt-faq .accordion-item {
  border: 1px solid var(--sbt-border);
  border-radius: var(--sbt-radius) !important;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}

.sbt-faq .accordion-button {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--sbt-navy);
  background: #fff;
  box-shadow: none;
  padding: 18px 22px;
}

.sbt-faq .accordion-button:not(.collapsed) {
  color: var(--sbt-navy);
  background: #fff;
  box-shadow: none;
}

.sbt-faq .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23015394' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.sbt-faq .accordion-body {
  font-size: 15px;
  color: var(--sbt-text);
  line-height: 1.75;
  border-top: 1px solid var(--sbt-border);
  padding: 16px 22px 18px;
}

/* ============================================================
   19. HANDLE / FEATURE ITEMS  (.sbt-handle-item)
   ============================================================ */

.sbt-handle-item {
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: var(--sbt-shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.25s;
  height: 100%;
}

.sbt-handle-item:hover {
  transform: translateY(-3px);
}

.sbt-handle-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(var(--sbt-orange-rgb), 0.1);
  border: 1px solid rgba(var(--sbt-orange-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sbt-handle-item h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--sbt-navy);
  margin-bottom: 4px;
}

.sbt-handle-item p {
  font-size: 13px;
  color: var(--sbt-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   20. DESTINATION THUMBNAILS  (.sbt-dest-thumb)
   ============================================================ */

.sbt-dest-thumb {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.sbt-dest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sbt-dest-thumb:hover img {
  transform: scale(1.08);
}

.sbt-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 20, 50, 0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 12px;
}

.sbt-dest-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.sbt-dest-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

/* ============================================================
   21. MOBILE STICKY BAR
   ============================================================ */

.sbt-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--sbt-navy-dk);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  gap: 10px;
}

.sbt-mobile-sticky a {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  border-radius: var(--sbt-radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.sbt-ms-call {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sbt-ms-plan {
  background: var(--sbt-orange);
  color: #fff;
}

@media (max-width: 768px) {
  .sbt-mobile-sticky {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
}

/* ============================================================
   22. SCROLL-REVEAL ANIMATIONS
   ============================================================ */

.sbt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sbt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sbt-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sbt-stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.sbt-stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.sbt-stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.sbt-stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.sbt-stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.sbt-stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

/* ============================================================
   23. PHOTO PLACEHOLDER (for Irena's photo)
   ============================================================ */

.sbt-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e0e8f5, #c9d8ee);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--sbt-navy);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.65;
  border-radius: inherit;
}

.sbt-photo-placeholder .ph-icon {
  font-size: 48px;
}

.sbt-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--sbt-orange);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--sbt-orange-rgb), 0.42);
  z-index: 1;
  text-align: center;
}

.sbt-photo-accent .acc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.sbt-photo-accent .acc-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* ============================================================
   24. INTRO STRIP (dark navy band under hero)
   ============================================================ */

.sbt-intro-strip {
  background: var(--sbt-navy);
  padding: 32px 0;
}

.sbt-intro-strip p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 720px;
}

/* ============================================================
   25. UTILITY OVERRIDES
   ============================================================ */

.text-sbt-navy {
  color: var(--sbt-navy) !important;
}

.text-sbt-orange {
  color: var(--sbt-orange) !important;
}

.text-sbt-muted {
  color: var(--sbt-muted) !important;
}

.bg-sbt-navy {
  background-color: var(--sbt-navy) !important;
}

.bg-sbt-navy-dk {
  background-color: var(--sbt-navy-dk) !important;
}

.bg-sbt-orange {
  background-color: var(--sbt-orange) !important;
}

.bg-sbt-light {
  background-color: var(--sbt-light) !important;
}

.border-sbt {
  border-color: var(--sbt-border) !important;
}

.shadow-sbt {
  box-shadow: var(--sbt-shadow) !important;
}

.shadow-sbt-lg {
  box-shadow: var(--sbt-shadow-lg) !important;
}

.rounded-sbt {
  border-radius: var(--sbt-radius) !important;
}

/* ============================================================
   26. RESPONSIVE — SECTION PADDING
   ============================================================ */

@media (max-width: 768px) {
  .sbt-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .sbt-section-sm {
    padding: 48px 0;
  }
}

@media (max-width: 768px) {
  .sbt-cta-band {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .sbt-footer {
    padding-top: 48px;
  }
}

@media (max-width: 768px) {
  .sbt-testimonial {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .sbt-featured-post .sbt-feat-body {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .sbt-trust-strip .sbt-strip-item + .sbt-strip-item::before {
    display: none;
  }
}

.sbt-locked {
  display: none !important;
}

