/* ============================================================
   BUSH LION TOURS — UNIFIED DESIGN SYSTEM
   Premium Luxury Safari Platform
   Brand Identity: #9B5023 (Safari Burnt Orange)
   Dark Luxury: #1A120B | Accent: #C17C45
   ============================================================ */

/* ── ICON SYSTEM ─────────────────────────────────────────── */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ── GLASS EFFECTS ───────────────────────────────────────── */

.glass-panel {
  background: rgba(245, 233, 220, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(155, 80, 35, 0.12);
}

.glass-card {
  background: rgba(245, 233, 220, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 195, 165, 0.3);
}

.glass-dark {
  background: rgba(26, 18, 11, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── UNIVERSAL NAVBAR — Dark Luxury ─────────────────────── */

.bl-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  height: 80px;
  background: rgba(26, 18, 11, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 124, 69, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.bl-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .bl-navbar-inner {
    padding: 0 20px;
  }
}

.nav-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Navbar brand logo — warm cream on dark */
.bl-navbar-inner > a:first-child {
  color: #F5E9DC !important;
}

/* Navbar navigation links — light on dark, accent hover */
.bl-navbar [data-nav] {
  color: rgba(245, 233, 220, 0.7) !important;
  transition: color 0.3s ease !important;
}

.bl-navbar [data-nav]:hover {
  color: #C17C45 !important;
}

/* Active nav state — set by JS */
.bl-navbar [data-nav].bl-nav-active {
  color: #C17C45 !important;
  border-bottom: 2px solid #C17C45;
  padding-bottom: 2px;
}

/* Navbar WhatsApp button — visible on dark */
.bl-navbar a[href*="wa.me"] {
  color: #C17C45 !important;
  border-color: rgba(193, 124, 69, 0.3) !important;
}

.bl-navbar a[href*="wa.me"]:hover {
  background: #C17C45 !important;
  color: #ffffff !important;
  border-color: #C17C45 !important;
}

/* Navbar hamburger — light on dark */
.bl-navbar #bl-menu-open {
  color: rgba(245, 233, 220, 0.85) !important;
}

.bl-navbar #bl-menu-open:hover {
  background: rgba(193, 124, 69, 0.15);
  color: #C17C45 !important;
}

/* Navbar CTA button glow */
.bl-navbar a[href="booking.html"] {
  box-shadow: 0 0 0 0 rgba(155, 80, 35, 0);
  transition: box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.bl-navbar a[href="booking.html"]:hover {
  box-shadow: 0 4px 16px rgba(155, 80, 35, 0.25);
}

/* ── UNIVERSAL FOOTER ───────────────────────────────────── */

.bl-footer {
  background: #1A120B;
  color: #D8C3A5;
  border-top: 1px solid rgba(193, 124, 69, 0.08);
}

.bl-footer a {
  color: rgba(216, 195, 165, 0.65);
  transition: color 0.3s ease;
}

.bl-footer a:hover {
  color: #C17C45;
}

/* Social link circles — white icon on accent hover for contrast */
.bl-footer a.rounded-full:hover {
  color: #ffffff !important;
}

.bl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 48px;
}

@media (max-width: 1024px) {
  .bl-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .bl-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 32px;
  }
}

.bl-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(193, 124, 69, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (max-width: 640px) {
  .bl-footer-bottom {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* ── HERO & IMAGE OVERLAYS ───────────────────────────────── */

.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 11, 0.2) 0%,
    rgba(26, 18, 11, 0.05) 40%,
    rgba(26, 18, 11, 0.65) 100%
  );
}

.hero-gradient-strong {
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 11, 0.35) 0%,
    rgba(26, 18, 11, 0.1) 35%,
    rgba(26, 18, 11, 0.8) 100%
  );
}

.card-gradient {
  background: linear-gradient(
    to top,
    rgba(26, 18, 11, 0.8) 0%,
    rgba(26, 18, 11, 0.0) 60%
  );
}

/* ── ANIMATION & MOTION ──────────────────────────────────── */

.safari-ease {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.645, 0.045, 0.355, 1),
              transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.img-zoom {
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.group:hover .img-zoom,
.img-zoom-container:hover .img-zoom {
  transform: scale(1.08);
}

/* ── SCROLLBAR ───────────────────────────────────────────── */

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── FORM SYSTEM ─────────────────────────────────────────── */

.form-glass {
  background: rgba(245, 233, 220, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(155, 80, 35, 0.08);
}

.bl-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #D8C3A5;
  padding: 12px 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #2B2B2B;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bl-input:focus {
  outline: none;
  border-bottom-color: #9B5023;
  box-shadow: 0 2px 0 0 rgba(155, 80, 35, 0.3);
}

.bl-input::placeholder {
  color: rgba(92, 74, 58, 0.5);
}

.bl-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid #D8C3A5;
  padding: 12px 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #2B2B2B;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bl-select:focus {
  outline: none;
  border-bottom-color: #9B5023;
  box-shadow: 0 2px 0 0 rgba(155, 80, 35, 0.3);
}

.bl-label {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #9B5023;
  margin-bottom: 4px;
  display: block;
}

.bl-textarea {
  background: transparent;
  border: 1px solid #D8C3A5;
  border-radius: 0.5rem;
  padding: 12px 16px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #2B2B2B;
  width: 100%;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bl-textarea:focus {
  outline: none;
  border-color: #9B5023;
  box-shadow: 0 0 0 3px rgba(155, 80, 35, 0.1);
}

/* ── PULSE ANIMATION (map markers) ───────────────────────── */

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

.bl-pulse {
  animation: bl-pulse 2s ease-in-out infinite;
}

/* ── RESPONSIVE TYPOGRAPHY ───────────────────────────────── */

@media (max-width: 1024px) {
  .responsive-display-xl {
    font-size: 56px !important;
    line-height: 64px !important;
  }
}

@media (max-width: 768px) {
  .responsive-display-xl {
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .responsive-headline-lg {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .responsive-headline-md {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}

@media (max-width: 480px) {
  .responsive-display-xl {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .responsive-headline-lg {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}

/* ── RESPONSIVE SECTIONS ─────────────────────────────────── */

@media (max-width: 768px) {
  .section-responsive {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .gutter-responsive {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ── MOBILE NAVIGATION — Dark Luxury Panel ──────────────── */

#bl-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

#bl-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

#bl-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  z-index: 70;
  background: #1A120B;
  color: #F5E9DC;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

#bl-mobile-panel.active {
  transform: translateX(0);
}

/* Mobile panel header — border and logo */
#bl-mobile-panel > div:first-child {
  border-color: rgba(193, 124, 69, 0.15) !important;
}

#bl-mobile-panel > div:first-child span[class*="text-primary"] {
  color: #F5E9DC !important;
}

/* Mobile panel close button */
#bl-mobile-panel #bl-menu-close {
  color: rgba(245, 233, 220, 0.5) !important;
}

#bl-mobile-panel #bl-menu-close:hover {
  color: #C17C45 !important;
}

/* Mobile panel CTA footer */
#bl-mobile-panel > div:last-child {
  border-color: rgba(193, 124, 69, 0.15) !important;
}

.bl-mobile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(245, 233, 220, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 124, 69, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.bl-mobile-link:hover {
  background: rgba(193, 124, 69, 0.1);
  color: #C17C45;
}

.bl-mobile-link .material-symbols-outlined {
  font-size: 22px;
  color: #C17C45;
  width: 28px;
  text-align: center;
}

/* Active mobile nav */
.bl-mobile-link.bl-mobile-nav-active {
  color: #C17C45 !important;
  background: rgba(193, 124, 69, 0.12);
}

/* ── MOBILE BOTTOM BAR ──────────────────────────────────── */

.bl-mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(245, 233, 220, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(216, 195, 165, 0.4);
  display: none;
  padding: 8px 16px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .bl-mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
}

.bl-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 8px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
  background: transparent;
}

.bl-bottom-btn:hover {
  background: rgba(216, 195, 165, 0.5);
}

.bl-bottom-btn .material-symbols-outlined {
  font-size: 22px;
}

.bl-bottom-btn-primary {
  background: #9B5023;
  color: #ffffff !important;
}

.bl-bottom-btn-primary:hover {
  background: #B8642E;
}

.bl-bottom-btn-primary .material-symbols-outlined {
  color: #ffffff;
}

/* ── SELECTION ───────────────────────────────────────────── */

::selection {
  background: #D8C3A5;
  color: #1A120B;
}

/* ============================================================
   PHASE 3 — UX INTELLIGENCE & CONVERSION ENHANCEMENTS
   ============================================================ */

/* ── SCROLL PROGRESS INDICATOR ──────────────────────────── */

.bl-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #9B5023, #C17C45);
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── STAGGERED REVEAL ANIMATIONS ────────────────────────── */

.bl-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1),
              transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bl-stagger > *.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bl-stagger > *:nth-child(1) { transition-delay: 0ms; }
.bl-stagger > *:nth-child(2) { transition-delay: 100ms; }
.bl-stagger > *:nth-child(3) { transition-delay: 200ms; }
.bl-stagger > *:nth-child(4) { transition-delay: 300ms; }
.bl-stagger > *:nth-child(5) { transition-delay: 400ms; }
.bl-stagger > *:nth-child(6) { transition-delay: 500ms; }

/* ── CARD HOVER LIFT ────────────────────────────────────── */

.bl-card-lift {
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
              box-shadow 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bl-card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 18, 11, 0.1), 0 8px 16px rgba(155, 80, 35, 0.06);
}

/* ── STICKY CTA BAR ─────────────────────────────────────── */

.bl-sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 44;
  background: rgba(245, 233, 220, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(216, 195, 165, 0.4);
  box-shadow: 0 -4px 20px rgba(26, 18, 11, 0.08);
  padding: 12px 32px;
  transition: bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bl-sticky-cta.visible {
  bottom: 0;
}

@media (max-width: 768px) {
  .bl-sticky-cta {
    padding: 10px 16px;
    bottom: -80px;
  }
  .bl-sticky-cta.visible {
    bottom: 60px;
  }
}

.bl-sticky-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── COUNTER ANIMATION ──────────────────────────────────── */

.bl-counter {
  display: inline-block;
  transition: opacity 0.3s ease;
}

/* ── PARALLAX HERO ──────────────────────────────────────── */

.bl-parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── CROSS-SELL BANNER ──────────────────────────────────── */

.bl-crosssell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.bl-crosssell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 18, 11, 0.9) 0%, rgba(36, 22, 13, 0.65) 100%);
  z-index: 1;
}

.bl-crosssell > * {
  position: relative;
  z-index: 2;
}

/* ── BACK TO TOP ────────────────────────────────────────── */

.bl-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 43;
  width: 44px;
  height: 44px;
  background: rgba(245, 233, 220, 0.95);
  border: 1px solid rgba(216, 195, 165, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
              background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 8px rgba(26, 18, 11, 0.08);
  color: #5C4A3A;
}

.bl-back-to-top:hover {
  background: #C17C45;
  color: #ffffff;
  border-color: #C17C45;
  box-shadow: 0 4px 16px rgba(193, 124, 69, 0.3);
}

.bl-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .bl-back-to-top {
    bottom: 72px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ── BREADCRUMB ─────────────────────────────────────────── */

.bl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bl-breadcrumb a {
  color: rgba(92, 74, 58, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bl-breadcrumb a:hover {
  color: #9B5023;
}

.bl-breadcrumb .bl-breadcrumb-sep {
  color: rgba(216, 195, 165, 0.6);
  font-size: 14px;
}

.bl-breadcrumb .bl-breadcrumb-current {
  color: #2B2B2B;
}

/* ── DISCOVERY / "YOU MAY ALSO LIKE" SECTION ────────────── */

.bl-discovery-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bl-discovery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bl-discovery-card:hover img {
  transform: scale(1.06);
}

.bl-discovery-card .bl-discovery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 11, 0.8) 0%, rgba(26, 18, 11, 0) 55%);
}

.bl-discovery-card .bl-discovery-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

/* ── TRUST MICRO-BADGES ─────────────────────────────────── */

.bl-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(245, 233, 220, 0.9);
  border: 1px solid rgba(216, 195, 165, 0.3);
  border-radius: 999px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2B2B2B;
  white-space: nowrap;
}

.bl-trust-badge .material-symbols-outlined {
  font-size: 16px;
  color: #9B5023;
}

/* ── FLOATING INQUIRY NUDGE ─────────────────────────────── */

.bl-inquiry-nudge {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 42;
  background: #24160D;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(26, 18, 11, 0.35);
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 1px solid rgba(193, 124, 69, 0.12);
}

.bl-inquiry-nudge.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.bl-inquiry-nudge-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.bl-inquiry-nudge-close:hover {
  color: #C17C45;
}

@media (max-width: 768px) {
  .bl-inquiry-nudge {
    bottom: 72px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

/* ── REVIEW MARQUEE — Infinite Scrolling Testimonials ───── */

.bl-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bl-marquee::before,
.bl-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.bl-marquee::before {
  left: 0;
  background: linear-gradient(to right, #1A120B, transparent);
}

.bl-marquee::after {
  right: 0;
  background: linear-gradient(to left, #1A120B, transparent);
}

.bl-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: bl-marquee-scroll 90s linear infinite;
  will-change: transform;
}

.bl-marquee:hover .bl-marquee-track {
  animation-play-state: paused;
}

@keyframes bl-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bl-marquee-card {
  flex-shrink: 0;
  width: 380px;
  max-width: 85vw;
}

@media (max-width: 640px) {
  .bl-marquee-card {
    width: 320px;
  }

  .bl-marquee::before,
  .bl-marquee::after {
    width: 40px;
  }

  .bl-marquee-track {
    gap: 16px;
    animation-duration: 70s;
  }
}

/* ── PHOTO STRIP MARQUEE ──────────────────────────────────── */

.bl-photo-strip {
  overflow: hidden;
  position: relative;
}

.bl-photo-strip::before,
.bl-photo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.bl-photo-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-fade, #F5E9DC), transparent);
}

.bl-photo-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-fade, #F5E9DC), transparent);
}

.bl-photo-strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: bl-marquee-scroll 60s linear infinite;
  will-change: transform;
}

.bl-photo-strip .bl-photo-strip-track {
  animation-play-state: running;
}

.bl-photo-strip-card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
}

.bl-photo-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bl-photo-strip-card:hover img {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .bl-photo-strip-card {
    width: 220px;
  }

  .bl-photo-strip::before,
  .bl-photo-strip::after {
    width: 40px;
  }

  .bl-photo-strip-track {
    gap: 14px;
    animation-duration: 45s;
  }
}

/* ── GLOBAL BUTTON HOVER GLOW ──────────────────────────── */

a[class*="bg-secondary-container"]:hover,
button[class*="bg-secondary-container"]:hover {
  box-shadow: 0 4px 16px rgba(155, 80, 35, 0.25);
}
