.sbf-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.sbf-hero-slider.swiper {
  width: 100%;
}

.sbf-hero-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.sbf-hero-slider .swiper-slide {
  position: relative;
  width: 100% !important;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.sbf-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.sbf-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  will-change: transform;
}

.kenburns {
  animation: kenburnsZoom 18s ease-in-out infinite alternate;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.sbf-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.overlay-light .sbf-overlay {
  background: rgba(255, 255, 255, 0.2);
}

.sbf-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  color: #fff;
  box-sizing: border-box;
}

.align-left .sbf-content {
  text-align: left;
}

.align-center .sbf-content {
  text-align: center;
}

.align-right .sbf-content {
  text-align: right;
}

.align-right .sbf-content-inner {
  margin-left: auto;
}

.align-center .sbf-content-inner {
  margin-left: auto;
  margin-right: auto;
}

.sbf-content-inner {
  max-width: 720px;
}

.sbf-badge {
  display: inline-block;
  background: #00baa3;
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1;
}

.sbf-title {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 16px;
}

.sbf-subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 620px;
}

.align-center .sbf-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.align-right .sbf-subtitle {
  margin-left: auto;
}

.sbf-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.align-center .sbf-buttons {
  justify-content: center;
}

.align-right .sbf-buttons {
  justify-content: flex-end;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 18px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sbf-buttons .btn-primary {
  color: #fff;
}

.sbf-content-inner .sbf-title {
  color: #f97316;
}

.btn-primary {
  background: #00baa3;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

.sbf-hero-slider .swiper-pagination {
  bottom: 24px !important;
}

.sbf-hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
}

.sbf-hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #00baa3;
}

@media (max-width: 767px) {
  .sbf-hero-slider {
    min-height: 560px;
    height: 75vh;
  }

  .sbf-content {
    padding: 0 24px;
  }

  .sbf-buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 130px;
    padding: 12px 20px;
  }
}
