/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family, 'DM Sans', sans-serif);
  color: var(--base-text, #181a1f);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   LAYOUT
============================================================ */
.bs-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

.bs-section-title {
  font-family: var(--font-family);
  font-size: var(--h-size, 44px);
  line-height: var(--h-line, 58px);
  font-weight: 500;
  color: var(--base-text);
}
.bs-section-title--light { color: #fff; }
.bs-section-title--center { text-align: center; }

.bs-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  transition: opacity .2s;
}
.bs-link-arrow:hover { opacity: .7; }

/* ============================================================
   BUTTONS
============================================================ */
.bs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--border-radius, 6px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s, transform .15s;
}
.bs-btn:hover { opacity: .88; transform: translateY(-1px); }

.bs-btn--white   { background: #fff; color: #000; }
.bs-btn--accent  { background: var(--color-accent, #c7b273); color: #fff; }
.bs-btn--primary { background: var(--color-primary); color: #fff; }
.bs-btn--viber   { background: #7360f2; color: #fff; width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: var(--border-radius); }
.bs-btn--whatsapp{ background: #25d366; color: #fff; width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: var(--border-radius); }

/* ============================================================
   ARROWS
============================================================ */
.bs-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--base-border, #e5e5e5);
  background: #fff;
  transition: background .2s, border-color .2s;
}
.bs-arrow:hover { background: var(--bg-4, #f6f6f6); border-color: var(--base-text); }
.bs-arrow--dark  { background: var(--bg-4); border-color: var(--base-text); }
.bs-arrow--sm    { width: 40px; height: 40px; }

.bs-slider-count {
  font-size: 14px;
  font-weight: 500;
  padding-inline: 8px;
  color: inherit;
}

/* ============================================================
   HEADER
============================================================ */
.bs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-primary, #000);
  height: 80px;
}

.bs-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.bs-header__logo { flex-shrink: 0; }
.bs-header__logo img { height: 30px; width: auto; filter: brightness(10); }
.bs-header__logo-text { color: #fff; font-size: 18px; font-weight: 700; }

.bs-header__nav { flex: 1; display: flex; justify-content: center; }

.bs-header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.bs-header__menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  transition: background .2s;
}
.bs-header__menu .current-menu-item a,
.bs-header__menu a:hover { background: rgba(255,255,255,.15); }

.bs-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.bs-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.bs-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
}

.bs-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.bs-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.bs-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bs-header__burger.is-open span:nth-child(2) { opacity: 0; }
.bs-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.bs-hero {
  position: relative;
  min-height: 860px;
  background: #111 center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 120px;
  padding-top: 80px;
  overflow: hidden;
}

.bs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 40%, rgba(0,0,0,.2) 100%);
  z-index: 0;
}

.bs-hero__content {
  position: relative;
  z-index: 1;
}

.bs-hero__tagline {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.bs-hero__heading {
  color: #fff;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 32px;
}

.bs-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bs-hero__slider-arrows {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bs-hero__slider-arrows .bs-arrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  width: 40px;
  height: 40px;
}
.bs-hero__slider-arrows .bs-slider-count { color: #fff; }

/* ============================================================
   SEARCH BAR
============================================================ */
.bs-search {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-block: 20px;
}

.bs-search__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}

.bs-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding-inline: 16px;
  border-right: 1px solid var(--base-border);
  min-width: 0;
}
.bs-search__field:last-of-type { border-right: none; }

.bs-search__icon {
  width: 52px;
  height: 52px;
  background: var(--bg-4, #f6f6f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--base-text);
}

.bs-search__input-wrap { min-width: 0; }
.bs-search__input-wrap label {
  display: block;
  font-size: 12px;
  color: var(--base-grey, #626262);
  line-height: 1;
  margin-bottom: 3px;
}
.bs-search__input-wrap input {
  display: block;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--base-text);
  background: transparent;
  width: 100%;
}

.bs-search__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 60px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s;
  flex-shrink: 0;
}
.bs-search__btn:hover { opacity: .85; }

/* ============================================================
   TOP SERVICES
============================================================ */
.bs-top-services { padding-block: 80px; }

.bs-top-services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bs-top-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bs-service-card {
  border-radius: var(--border-radius, 6px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.bs-service-card__img {
  width: 100%;
  height: 300px;
  background: #ccc center/cover no-repeat;
}
.bs-service-card__img--1 { background-color: #2d3a4a; }
.bs-service-card__img--2 { background-color: #1a2535; }
.bs-service-card__img--3 { background-color: #252f3d; }
.bs-service-card__img--4 { background-color: #1e2a38; }

.bs-service-card > span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.bs-service-card--active .bs-service-card__img { height: 300px; }
.bs-service-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.bs-service-card__hover h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.bs-service-card__hover p  { font-size: 14px; line-height: 1.6; opacity: .85; margin-bottom: 16px; }
.bs-service-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
}

/* ============================================================
   FLEET
============================================================ */
.bs-fleet { padding-block: 80px; }

.bs-fleet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bs-slider-wrap { position: relative; }

.bs-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bs-slider::-webkit-scrollbar { display: none; }

.bs-fleet__card {
  min-width: 370px;
  max-width: 370px;
  border: 1px solid var(--base-border);
  border-radius: var(--border-radius);
  background: #fff;
  scroll-snap-align: start;
  flex-shrink: 0;
  overflow: hidden;
}

.bs-fleet__card-img {
  width: 100%;
  height: 150px;
  background: var(--bg-4) center/contain no-repeat;
}

.bs-fleet__card-title { font-size: 20px; font-weight: 500; padding: 16px 24px 4px; }
.bs-fleet__card-desc  { font-size: 14px; color: var(--base-grey); padding: 0 24px 16px; line-height: 1.6; }

.bs-fleet__card-meta {
  display: flex;
  gap: 24px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--base-border);
}
.bs-fleet__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--base-text);
}
.bs-fleet__meta-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.bs-how {
  position: relative;
  background: var(--color-primary, #000);
  min-height: 900px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.bs-how__image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 54%;
  background: #333 center/cover no-repeat;
}

.bs-how__content {
  position: relative;
  z-index: 1;
  padding-block: 100px;
  width: 50%;
}
.bs-how__content .bs-section-title { margin-bottom: 60px; }

.bs-how__steps { display: flex; flex-direction: column; gap: 0; }

.bs-how__step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.bs-how__step:last-child { padding-bottom: 0; }

.bs-how__step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.bs-how__step--active .bs-how__step-dot {
  border-color: #fff;
  background: rgba(255,255,255,.2);
}

.bs-how__step-line {
  position: absolute;
  left: 9px;
  top: 26px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.15);
}
.bs-how__step--active .bs-how__step-line { background: rgba(255,255,255,.35); }

.bs-how__step-body h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}
.bs-how__step-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  max-width: 420px;
}
.bs-how__step--active .bs-how__step-body h3,
.bs-how__step--active .bs-how__step-body p { opacity: 1; }
.bs-how__step:not(.bs-how__step--active) .bs-how__step-body h3 { opacity: .6; }
.bs-how__step:not(.bs-how__step--active) .bs-how__step-body p  { opacity: .45; }

/* ============================================================
   WHY CHOOSE
============================================================ */
.bs-why { padding-block: 100px; }
.bs-why .bs-section-title { margin-bottom: 64px; }

.bs-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bs-why__item { text-align: center; }

.bs-why__icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--color-accent-rgb, 199,178,115), .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-accent, #c7b273);
}

.bs-why__item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.bs-why__item p { font-size: 16px; line-height: 1.75; color: var(--base-text); }

/* ============================================================
   STATS
============================================================ */
.bs-stats {
  margin-inline: 60px;
  border-radius: var(--border-radius);
  background: var(--color-accent, #c7b273);
  padding-block: 60px;
  margin-block: 0 80px;
}

.bs-stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bs-stats__heading h2 {
  font-size: var(--h-size, 44px);
  line-height: var(--h-line, 58px);
  font-weight: 500;
  color: #fff;
  max-width: 400px;
}

.bs-stats__items {
  display: flex;
  gap: 80px;
}

.bs-stats__item { text-align: center; }
.bs-stats__num {
  display: block;
  font-size: var(--h-size, 44px);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.bs-stats__label { font-size: 20px; color: rgba(255,255,255,.85); }

/* ============================================================
   SERVICES SLIDER
============================================================ */
.bs-services { padding-block: 80px; }
.bs-services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bs-service-slide {
  min-width: 370px;
  max-width: 370px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
}

.bs-service-slide__img {
  width: 100%;
  height: 100%;
  background: #333 center/cover no-repeat;
}
.bs-service-slide__img--1 { background-color: #2d3a4a; }
.bs-service-slide__img--2 { background-color: #1a2535; }
.bs-service-slide__img--3 { background-color: #252f3d; }
.bs-service-slide__img--4 { background-color: #1e2a38; }

.bs-service-slide > span {
  position: absolute;
  bottom: 24px; left: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.bs-service-slide__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.bs-service-slide__hover h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.bs-service-slide__hover p  { font-size: 14px; opacity: .85; margin-bottom: 20px; }

/* ============================================================
   REVIEWS
============================================================ */
.bs-reviews {
  padding-block: 80px;
}

.bs-reviews__inner {
  background: #f4f0e3;
  border-radius: 12px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bs-reviews__left .bs-section-title { margin-bottom: 20px; }
.bs-reviews__left p { font-size: 16px; line-height: 1.75; margin-bottom: 32px; }

.bs-review-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--level-3-box-shadow);
}

.bs-review-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.bs-review-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-4);
  flex-shrink: 0;
}
.bs-review-card__top strong { display: block; font-size: 18px; font-weight: 500; }
.bs-review-card__top span  { font-size: 14px; color: var(--base-grey); }

.bs-review-card__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.bs-reviews__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

/* ============================================================
   FAQ
============================================================ */
.bs-faq { padding-block: 100px; }
.bs-faq .bs-section-title { margin-bottom: 60px; }

.bs-faq__list { max-width: 770px; margin-inline: auto; }

.bs-faq__item {
  border-bottom: 1px solid var(--base-border);
}

.bs-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  gap: 16px;
  color: var(--base-text);
}

.bs-faq__icon {
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: var(--color-primary);
}

.bs-faq__icon-plus  { position: absolute; transition: opacity .2s, transform .2s; }
.bs-faq__icon-minus { position: absolute; transition: opacity .2s, transform .2s; opacity: 0; }

.is-open .bs-faq__icon-plus  { opacity: 0; transform: rotate(90deg); }
.is-open .bs-faq__icon-minus { opacity: 1; }

.bs-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.bs-faq__answer p { font-size: 16px; line-height: 1.75; color: var(--base-text); padding-bottom: 20px; }
.is-open .bs-faq__answer { max-height: 400px; }

/* ============================================================
   FOOTER
============================================================ */
.bs-footer {
  background: var(--color-primary, #000);
  color: #fff;
  padding-top: 60px;
}

.bs-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.bs-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.bs-footer__logo img { filter: brightness(10); height: 30px; width: auto; }
.bs-footer__logo-text { color: #fff; font-size: 18px; font-weight: 700; }
.bs-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.bs-footer__col-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.bs-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.bs-footer__col ul a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.bs-footer__col ul a:hover { color: #fff; }
.bs-footer__contact-list li { font-size: 14px; line-height: 2.2; color: rgba(255,255,255,.7); }
.bs-footer__contact-list a { color: rgba(255,255,255,.7); }

.bs-footer__divider {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin-block: 0;
}

.bs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.bs-footer__copy { font-size: 14px; color: rgba(255,255,255,.6); }

.bs-footer__social { display: flex; align-items: center; gap: 16px; }
.bs-footer__social-label { font-size: 18px; font-weight: 500; }
.bs-footer__social-icons { display: flex; gap: 8px; }
.bs-footer__social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
}
.bs-footer__social-icons a:hover { background: var(--color-accent, #c7b273); }

.bs-footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 14px;
  background: rgba(255,255,255,.12);
  border-radius: 20px;
  cursor: pointer;
}

/* ============================================================
   PAGE BANNER (O nama i ostale unutrašnje strane)
============================================================ */
.bs-page-banner {
  background: var(--color-primary);
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 32px;
}
.bs-page-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bs-page-banner__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.bs-page-banner__crumb {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.bs-page-banner__crumb a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.bs-page-banner__crumb a:hover { color: var(--color-accent); }
.bs-page-banner__crumb span { margin-inline: 2px; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.bs-about { padding-block: 100px; }
.bs-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bs-about__heading { margin-bottom: 28px; }
.bs-about__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--base-grey);
  margin-bottom: 16px;
}
.bs-about__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.bs-about__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}
.bs-about__bullet-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.bs-about__image-wrap {
  position: sticky;
  top: 100px;
}
.bs-about__image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--border-radius);
  display: block;
}
.bs-about__image--placeholder {
  background: var(--bg-4);
}

/* ============================================================
   DECORATIVE ELLIPSES
============================================================ */
.bs-ellipse-left, .bs-ellipse-right {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  border: 2px solid var(--color-accent, #c7b273);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .bs-container { padding-inline: 28px; }
  .bs-stats { margin-inline: 28px; }
  .bs-stats__items { gap: 48px; }
}

@media (max-width: 900px) {
  .bs-header__nav { display: none; }
  .bs-header__right { display: none; }
  .bs-header__burger { display: flex; }

  .bs-header__nav.is-open {
    display: flex;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--color-primary);
    z-index: 99;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
  .bs-header__nav.is-open .bs-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .bs-header__nav.is-open .bs-header__menu a {
    font-size: 20px;
    padding: 14px 0;
    display: block;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }

  .bs-hero__heading { font-size: 36px; }
  .bs-hero { min-height: 700px; padding-bottom: 180px; }

  .bs-search__form {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    gap: 12px;
  }
  .bs-search__field { border-right: none; border-bottom: 1px solid var(--base-border); padding-block: 8px; width: 100%; }
  .bs-search__field:last-of-type { border-bottom: none; }

  .bs-top-services__grid { grid-template-columns: repeat(2, 1fr); }
  .bs-why__grid { grid-template-columns: 1fr; gap: 48px; }

  .bs-how { flex-direction: column; min-height: auto; }
  .bs-how__image { display: none; }
  .bs-how__content { width: 100%; padding-block: 60px; }

  .bs-stats { margin-inline: 16px; padding-block: 48px; }
  .bs-stats__inner { flex-direction: column; align-items: flex-start; }
  .bs-stats__items { gap: 32px; }

  .bs-reviews__inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }

  .bs-footer__top { grid-template-columns: 1fr 1fr; }
  .bs-footer__bottom { flex-direction: column; align-items: flex-start; }

  .bs-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .bs-about__image-wrap { position: static; }
  .bs-about__image { height: 300px; }
  .bs-page-banner__title { font-size: 28px; }
}

@media (max-width: 600px) {
  .bs-container { padding-inline: 16px; }
  .bs-hero__heading { font-size: 28px; }
  .bs-section-title { font-size: 30px; line-height: 1.3; }
  .bs-stats { margin-inline: 0; border-radius: 0; }
  .bs-stats__items { flex-direction: column; gap: 24px; }
  .bs-top-services__grid { grid-template-columns: 1fr; }
  .bs-footer__top { grid-template-columns: 1fr; }
  .bs-fleet__card { min-width: 300px; max-width: 300px; }
  .bs-service-slide { min-width: 300px; max-width: 300px; }
}
