.slides-wrap {
  position: relative;
  height: 100vh;
  height: 100svh; /* modern tarayıcılar — adres çubuğu hariç */
  height: 100dvh; /* dinamik — en güvenilir mobil çözüm */
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--black);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: max(96px, calc(var(--nav-h, 88px) + 28px)) var(--pad-x) min(42vh, 280px);
  max-width: min(680px, 92vw);
  pointer-events: none;
}

.slide-content * {
  pointer-events: auto;
}

.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease .4s, transform 1s ease .4s;
}

.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.slide-h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease .6s, transform 1.1s ease .6s;
}

.slide-h span {
  display: inline;
}

.slide.active .slide-h {
  opacity: 1;
  transform: translateY(0);
}

.slide-h em {
  font-style: italic;
  color: var(--gold2);
  display: block;
}

.gold-rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: width 1.2s ease .5s;
}

.slide.active .gold-rule {
  width: 56px;
}

.slide-sub {
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  color: rgba(237, 232, 223, 0.78);
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-transform: none;
  max-width: 38ch;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease .8s, transform 1s ease .8s;
}

.slide.active .slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.scene-num {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 4;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 5rem;
  color: rgba(184, 150, 62, .1);
  line-height: 1;
  opacity: 0;
  transition: opacity 1s ease .3s;
}

.slide.active .scene-num {
  opacity: 1;
}

/* Slide-autoplay streep — onder de navbar; verborgen als hero uit beeld is */
#progress-bar {
  position: fixed;
  top: calc(var(--nav-h, 88px) + env(safe-area-inset-top, 0px));
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 480;
  transition: width 0.12s linear, opacity 0.35s ease, visibility 0.35s;
  box-shadow: 0 0 12px rgba(184, 150, 62, 0.35);
}

.ctrl-arr {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 450;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 150, 62, .25);
  background: rgba(0, 0, 0, .35);
  color: var(--gold);
  font-size: 16px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s, opacity 0.35s ease, visibility 0.35s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ctrl-arr:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 62, .12);
}

#arr-l {
  left: 20px;
}

#arr-r {
  right: 20px;
}

.slide-counter {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  top: calc(50% + 24px);
  transform: translateY(-50%);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.sc-cur {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
  font-weight: 300;
}

.sc-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.sc-tot {
  font-size: .65rem;
  color: #555;
  letter-spacing: 1px;
}

/* Hero-autoplay UI: alleen zichtbaar als slider in beeld is — geen eeuwige “pagina laadt”-streep */
html.hero-ui-hidden #progress-bar,
html.hero-ui-hidden .ctrl-arr,
html.hero-ui-hidden .slide-counter {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  /* ── Hero booking bar — kompakt mobil ── */
  .hero-booking-bar {
    padding: 0 8px 10px;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 25;
  }

  .hero-booking-bar .hbb-tabs,
  .hero-booking-bar .hbb-inner {
    pointer-events: all;
  }

  .hbb-bar {
    width: 100%;
  }

  .hbb-bar:not(.is-active),
  .hbb-bar[hidden] {
    display: none !important;
  }

  /* Tabs — küçük ve kompakt */
  .hbb-tabs {
    margin: 0 auto 6px;
    border-radius: 80px;
    transform: scale(0.82);
    transform-origin: center bottom;
  }

  .hbb-tab {
    padding: 6px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.3px;
  }

  /* Bar — kompakt (flex → grid; 900px tablet kuralları burada geçerli) */
  .hbb-inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-radius: 8px;
    padding: 0;
    min-height: 0 !important;
    flex-wrap: unset !important;
    align-items: stretch;
  }

  /* Tüm alanlar aynı boyut */
  .hbb-field,
  .hbb-field--loc,
  .hbb-field--addr,
  .hbb-field--pickup,
  .hbb-field--date,
  .hbb-field--time,
  .hbb-field--sm,
  .hbb-field--dur {
    flex: unset !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 7px 10px;
    border-bottom: 1px solid rgba(184, 150, 62, 0.06);
  }

  /* Sol-sağ sınır (genel; oneway aşağıda override) */
  .hbb-inner > *:nth-child(odd) {
    border-right: 1px solid rgba(184, 150, 62, 0.06);
  }

  /* One way: adresvelden volle breedte, datum | ophaaltijd, CTA onderaan */
  .hbb-bar--oneway .hbb-inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "pickup pickup"
      "dropoff dropoff"
      "date time"
      "cta cta" !important;
    grid-template-rows: auto auto auto auto !important;
    flex-wrap: unset !important;
    align-items: stretch !important;
    min-height: 0 !important;
    width: 100% !important;
  }

  .hbb-bar--oneway .hbb-inner > *:nth-child(odd) {
    border-right: none;
  }

  .hbb-bar--oneway .hbb-field--pickup,
  .hbb-bar--oneway .hbb-field--loc:not(.hbb-field--pickup),
  .hbb-bar--oneway .hbb-field--date,
  .hbb-bar--oneway .hbb-field--time,
  .hbb-bar--oneway .hbb-field--sm {
    flex: none !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 6px 8px !important;
    min-height: 0;
  }

  .hbb-bar--oneway .hbb-field--pickup {
    grid-area: pickup;
    border-right: none;
  }

  .hbb-bar--oneway .hbb-field--loc.hbb-field--addr:not(.hbb-field--pickup) {
    grid-area: dropoff;
  }

  .hbb-bar--oneway .hbb-field--date {
    grid-area: date;
    border-right: 1px solid rgba(184, 150, 62, 0.06);
  }

  .hbb-bar--oneway .hbb-field--time {
    grid-area: time;
  }

  .hbb-bar--oneway .hbb-cta,
  .hbb-bar--oneway .hbb-btn {
    grid-area: cta;
    grid-column: 1 / -1;
  }

  /* Per uur — adres en duur volle breedte, datum | ophaaltijd, CTA onderaan */
  .hbb-bar--hourly .hbb-inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-areas:
      "pickup pickup"
      "dur dur"
      "date time"
      "cta cta" !important;
    grid-template-rows: auto auto auto auto !important;
    flex-wrap: unset !important;
    align-items: stretch !important;
    min-height: 0 !important;
    width: 100% !important;
  }

  .hbb-bar--hourly .hbb-inner > *:nth-child(odd) {
    border-right: none;
  }

  .hbb-bar--hourly .hbb-field--pickup,
  .hbb-bar--hourly .hbb-field--dur,
  .hbb-bar--hourly .hbb-field--date,
  .hbb-bar--hourly .hbb-field--time,
  .hbb-bar--hourly .hbb-field--sm {
    flex: none !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 6px 8px !important;
    min-height: 0;
  }

  .hbb-bar--hourly .hbb-field--pickup {
    grid-area: pickup;
    border-right: none;
  }

  .hbb-bar--hourly .hbb-field--dur {
    grid-area: dur;
  }

  .hbb-bar--hourly .hbb-field--date {
    grid-area: date;
    border-right: 1px solid rgba(184, 150, 62, 0.06);
  }

  .hbb-bar--hourly .hbb-field--time {
    grid-area: time;
  }

  .hbb-bar--hourly .hbb-cta,
  .hbb-bar--hourly .hbb-btn {
    grid-area: cta;
    grid-column: 1 / -1;
    margin: 0 !important;
    padding: 10px 14px !important;
    min-height: 48px !important;
    font-size: 0.65rem !important;
    letter-spacing: 1.5px;
    border-radius: 0 0 8px 8px;
  }

  .hbb-bar--hourly .hbb-select {
    font-size: 13px;
    line-height: 1.2;
    padding: 0;
  }

  .hbb-field label {
    font-size: 0.46rem;
    letter-spacing: 1.5px;
    margin-bottom: 1px;
  }

  .hbb-field input,
  .hbb-select {
    font-size: 13px;
    line-height: 1.2;
    padding: 0;
  }

  .hbb-field input::placeholder {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Divider gizle */
  .hbb-div,
  .hbb-sep {
    display: none;
  }

  /* CTA — grid'in tam altı; 48px = aanbevolen tapdoel */
  .hbb-cta,
  .hbb-btn {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 14px;
    border-radius: 0 0 8px 8px;
    min-height: 48px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  /* iOS Safari zoomt in op inputs met font-size < 16px — hier voorkomen */
  @supports (-webkit-touch-callout: none) {
    .hbb-field input,
    .hbb-select {
      font-size: 16px;
    }
  }

  /* ── Slide content — booking bar'a çakışmasın (bar is nu 4 rijen hoog) ── */
  .slide-content {
    padding-bottom: min(40vh, 285px) !important;
    max-width: 90vw;
  }

  .slide-h {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    line-height: 1;
    margin-bottom: 8px;
  }

  .slide-sub {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .slide-eyebrow {
    margin-bottom: 10px;
  }

  .eyebrow-text {
    font-size: 0.5rem;
    letter-spacing: 2.5px;
  }

  .gold-rule {
    margin-bottom: 8px;
  }

  .slides-wrap {
    height: 100svh;
    height: 100dvh;
    min-height: 520px;
  }

  /* Hero-achtergronden — mobiel: cover, odak üstte (booking bar altta) */
  .slide-bg,
  .slide-bg.slide-bg--mobile {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    background-position: center 30% !important;
    transform: scale(1) !important;
    transition: opacity 1.6s ease;
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .slide.active .slide-bg {
    transform: scale(1) !important;
  }

  @media (max-width: 768px) and (orientation: portrait) {
    .slide-bg {
      background-position: center 26% !important;
    }
  }

  @media (max-width: 768px) and (orientation: landscape) {
    .slide-bg {
      background-position: center 38% !important;
    }
  }

  .slide .slide-overlay {
    background: linear-gradient(
      to top,
      rgba(6, 6, 6, 0.97) 0%,
      rgba(6, 6, 6, 0.7) 35%,
      rgba(6, 6, 6, 0.35) 60%,
      rgba(6, 6, 6, 0.1) 100%
    ) !important;
  }

  .ctrl-arr {
    width: 42px;
    height: 42px;
    font-size: 15px;
    top: calc(50% + 14px);
  }

  #arr-l {
    left: max(10px, env(safe-area-inset-left));
  }

  #arr-r {
    right: max(10px, env(safe-area-inset-right));
  }

  .slide-counter {
    display: none;
  }

  .scene-num {
    display: none;
  }

  /* Slide dots — bar'ın üstünde */
  #slide-dots {
    bottom: min(34vh, 220px) !important;
  }
}

/* ════════════════════════════════════════════
   HERO BOOKING BAR — Blacklane-style
════════════════════════════════════════════ */

.hero-booking-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  width: 100%;
  max-width: 1160px;
  padding: 0 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

/* ── Tab toggle ── */
.hbb-tabs {
  display: inline-flex;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 62, 0.25);
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 14px;
  pointer-events: all;
}

.hbb-tab {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  border: none;
  background: transparent;
  color: rgba(237, 232, 223, 0.6);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.hbb-tab.active {
  background: var(--gold);
  color: var(--black);
  border-radius: 100px;
}

.hbb-tab:not(.active):hover {
  color: var(--text);
}

/* ── Main bar (one panel visible) ── */
.hbb-bar {
  display: none;
  width: 100%;
  pointer-events: all;
}

.hbb-bar.is-active {
  display: block;
}

.hbb-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(184, 150, 62, 0.18);
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  min-height: 72px;
}

.hbb-bar[hidden] {
  display: none !important;
}

/* ── Fields ── */
.hbb-field {
  flex: 1;
  padding: 18px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hbb-field--addr {
  flex: 1;
  min-width: 0;
}

.hbb-field--loc {
  flex: 1.35 1 0;
  min-width: 0;
}

/* Datum & tijd — One way & Per uur */
.hbb-field--date,
.hbb-field--sm.hbb-field--date {
  flex: 0 0 198px;
  min-width: 198px;
  max-width: 198px;
}

.hbb-field--time,
.hbb-field--sm.hbb-field--time {
  flex: 0 0 172px;
  min-width: 172px;
  max-width: 172px;
}

/* Duur (Per uur) — iets breder voor lange opties */
.hbb-field--dur {
  flex: 0 0 228px;
  min-width: 228px;
  max-width: 228px;
}

.hbb-bar--oneway .hbb-field--pickup {
  flex: 1.85 1 0;
  min-width: 260px;
}

.hbb-bar--oneway .hbb-field--loc:not(.hbb-field--pickup) {
  flex: 1.05 1 0;
  min-width: 180px;
}

.hbb-bar--hourly .hbb-inner {
  flex-wrap: nowrap;
  min-width: 0;
}

.hbb-bar--hourly .hbb-field--pickup {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.hbb-bar--hourly .hbb-field--dur {
  flex: 0 0 200px;
  min-width: 200px;
  max-width: 200px;
}

.hbb-bar--hourly .hbb-field--date {
  flex: 0 0 188px;
  min-width: 188px;
  max-width: 188px;
}

.hbb-bar--hourly .hbb-field--time {
  flex: 0 0 165px;
  min-width: 165px;
  max-width: 165px;
}

.hbb-bar--hourly .hbb-field {
  padding-left: 16px;
  padding-right: 16px;
}

.hbb-bar--hourly .hbb-select {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hbb-bar--hourly .hbb-cta,
.hbb-bar--hourly .hbb-btn {
  flex: 0 0 auto;
  min-width: 0;
  padding: 18px 22px;
  margin: 8px 8px 8px 6px;
  letter-spacing: 1.6px;
  font-size: 0.65rem;
}

.hbb-bar--hourly .hbb-field--loc:not(.hbb-field--pickup) {
  flex: 1.15 1 0;
}

@media (min-width: 769px) and (max-width: 1180px) {
  .hbb-bar--hourly .hbb-inner {
    flex-wrap: wrap;
  }

  .hbb-bar--hourly .hbb-field--pickup {
    flex: 1 1 100%;
  }

  .hbb-bar--hourly .hbb-field--dur,
  .hbb-bar--hourly .hbb-field--date,
  .hbb-bar--hourly .hbb-field--time {
    flex: 1 1 calc(33.333% - 1px);
    min-width: 0;
    max-width: none;
  }

  .hbb-bar--hourly .hbb-cta,
  .hbb-bar--hourly .hbb-btn {
    flex: 1 1 100%;
    margin: 4px 8px 8px;
    min-height: 50px;
  }
}

.hbb-field--date input,
.hbb-field--date .hbb-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hbb-select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  padding: 0;
  line-height: 1.3;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b8963e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}

.hbb-select:focus {
  color: var(--gold2);
}

.hbb-field label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 7px;
  white-space: nowrap;
}

.hbb-field input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 150, 62, 0.22);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  padding: 5px 0 7px;
  line-height: 1.3;
  transition: border-color 0.2s;
}

.hbb-field input:focus {
  border-bottom-color: var(--gold);
}

.hbb-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.hbb-field input[type="date"],
.hbb-field input[type="time"] {
  color-scheme: dark;
}

/* Divider lines */
.hbb-div,
.hbb-sep {
  width: 1px;
  align-self: stretch;
  margin: 14px 0;
  background: rgba(184, 150, 62, 0.15);
  flex-shrink: 0;
}

.hbb-div--strong {
  background: rgba(184, 150, 62, 0.25);
  width: 1px;
}

/* CTA button */
.hbb-cta,
.hbb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-shrink: 0;
  min-width: 160px;
  padding: 18px 30px;
  margin: 8px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.hbb-cta:hover,
.hbb-btn:hover {
  background: var(--gold2);
}

.hbb-cta:active,
.hbb-btn:active {
  transform: scale(0.97);
}

/* Autocomplete */
.hbb-field .autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid var(--border);
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#booking-toast:not([hidden]) {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ════════════════════════════════════════════
   HERO BOOKING BAR — TABLET (769px–900px, mobil hariç)
════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 900px) {
  .hero-booking-bar {
    padding: 0 16px 28px;
    max-width: 100%;
  }

  .hbb-inner {
    flex-wrap: wrap;
    border-radius: 10px;
  }

  .hbb-field--addr,
  .hbb-field--loc {
    flex: 1 1 100%;
  }

  .hbb-field--date,
  .hbb-field--time,
  .hbb-field--dur,
  .hbb-field--sm {
    flex: 1 1 calc(50% - 1px);
    min-width: 0;
    max-width: none;
  }

  .hbb-div,
  .hbb-sep {
    display: none;
  }

  .hbb-field {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(184, 150, 62, 0.08);
  }

  .hbb-field:last-of-type {
    border-bottom: none;
  }

  .hbb-cta,
  .hbb-btn {
    flex: 1 1 100%;
    margin: 4px 8px 8px;
    padding: 16px 20px;
    border-radius: 6px;
    min-height: 50px;
    font-size: 0.72rem;
  }
}

/* ── Çok küçük ekranlar ── */
@media (max-width: 380px) {
  .hbb-tabs {
    transform: scale(0.75);
  }

  .hbb-field {
    padding: 6px 8px;
  }

  .hbb-field label {
    font-size: 0.44rem;
  }

  .hbb-field input,
  .hbb-select {
    font-size: 13px;
  }

  .hbb-cta,
  .hbb-btn {
    min-height: 36px;
    font-size: 0.6rem;
    padding: 9px 12px;
  }

  .slide-content {
    padding-bottom: min(34vh, 230px) !important;
  }

  .slide-bg {
    background-position: center 24% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide-bg {
    transition: none;
    transform: scale(1) !important;
  }

  #progress-bar {
    transition: opacity 0.35s ease, visibility 0.35s;
  }
}
