/* ── BALTIEKA HERO SLIDER ─────────────────────────────────── */
.blt-slider-wrap {
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Slide track */
.blt-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #001f2e;
}

/* Individual slide */
.blt-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--blt-transition, 700ms) ease;
  will-change: opacity;
}
.blt-slide--active {
  opacity: 1;
}

/* Dark overlay */
.blt-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,30,50,0.92) 0%,
    rgba(0,30,50,0.55) 55%,
    rgba(0,30,50,0.15) 100%
  );
}

/* ── CAPTION ──────────────────────────────────────────────── */
.blt-slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 160px 28px 48px;
  background: rgba(0,20,35,0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--blt-transition, 700ms) ease;
  pointer-events: none;
}
.blt-caption--active {
  opacity: 1;
  pointer-events: auto;
}

/* CENTER / LEFT variants */
.blt-caption--center {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  text-align: center;
  padding-right: 48px;
}
.blt-caption--left {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  max-width: 600px;
  padding-right: 48px;
}

/* Caption inner — COLUMN so dots sit above heading */
.blt-caption-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ── DOTS — above heading ─────────────────────────────────── */
.blt-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  /* no position:absolute — stays in normal flow */
}

.blt-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.blt-dot:hover  { background: rgba(255,255,255,0.6); }
.blt-dot.active {
  background: #00B4AA;
  transform: scale(1.25);
}

/* ── HEADING & DESCRIPTION ────────────────────────────────── */
.blt-slide-heading {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blt-slide-sub {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 600px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.blt-slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blt-slide-btn-primary,
.blt-slide-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.blt-slide-btn-primary {
  background: #00B4AA;
  color: #fff;
  border: 2px solid #00B4AA;
}
.blt-slide-btn-primary:hover {
  background: #008f87;
  border-color: #008f87;
  color: #fff;
}
.blt-slide-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.blt-slide-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ── ARROWS ──────────────────────────────────────────────── */
.blt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 30;
  padding: 0;
}
.blt-arrow:hover {
  background: #00B4AA;
  border-color: #00B4AA;
}
.blt-arrow svg { width: 18px; height: 18px; pointer-events: none; }
.blt-arrow--prev { right: 96px; }
.blt-arrow--next { right: 40px; }

/* ── TEXACO BADGE ─────────────────────────────────────────── */
.blt-texaco-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.25);
  z-index: 20;
  pointer-events: none;
}
.blt-texaco-badge span {
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .blt-slider { height: 380px !important; }
  .blt-slider-caption { padding: 20px 100px 20px 20px; }
  .blt-slide-heading { font-size: 18px; }
  .blt-slide-sub { display: none; }
  .blt-arrow--prev { right: 72px; }
  .blt-arrow--next { right: 24px; }
  .blt-slide-btn-primary,
  .blt-slide-btn-outline { padding: 9px 16px; font-size: 11px; }
}
