/* Becayiş Memur — design system (2026) */
:root,
[data-theme="light"] {
  --bm-navy: #0a1a2f;
  --bm-navy-mid: #13304f;
  --bm-navy-deep: #050e1a;
  --bm-teal: #0f8f84;
  --bm-teal-dark: #0b726a;
  --bm-teal-soft: rgba(15, 143, 132, 0.1);
  --bm-hover-bg: #edf2f7;
  --bm-hover-border: #c8d4e2;
  --bm-hover-text: #0a1a2f;
  --bm-accent-hover: #0b726a;
  --bm-ink: #121a26;
  --bm-muted: #5c6b7e;
  --bm-line: #e2e8f0;
  --bm-surface: #eef2f6;
  --bm-white: #ffffff;
  --bm-card: #ffffff;
  --bm-header-bg: rgba(255, 255, 255, 0.78);
  --bm-radius: 1.125rem;
  --bm-radius-sm: 0.75rem;
  --bm-radius-lg: 1.5rem;
  --bm-shadow: 0 1px 2px rgba(10, 26, 47, 0.04), 0 10px 28px rgba(10, 26, 47, 0.07);
  --bm-shadow-lg: 0 4px 8px rgba(10, 26, 47, 0.04), 0 24px 56px rgba(10, 26, 47, 0.1);
  --bm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bm-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --bm-display: "Outfit", system-ui, sans-serif;
  --bm-header-h: 4.35rem;
  --bm-hero-overlay: linear-gradient(115deg, rgba(5, 14, 26, 0.88) 0%, rgba(10, 26, 47, 0.52) 48%, rgba(15, 143, 132, 0.22) 100%);
  color-scheme: light;
}

[data-theme="dark"] {
  --bm-navy: #e8eef6;
  --bm-navy-mid: #1a2f4c;
  --bm-navy-deep: #060b14;
  --bm-teal: #2ec4b6;
  --bm-teal-dark: #45d4c6;
  --bm-teal-soft: rgba(46, 196, 182, 0.12);
  --bm-hover-bg: rgba(255, 255, 255, 0.06);
  --bm-hover-border: rgba(255, 255, 255, 0.14);
  --bm-hover-text: #e8eef5;
  --bm-accent-hover: #45d4c6;
  --bm-ink: #e8eef5;
  --bm-muted: #93a4b8;
  --bm-line: #243447;
  --bm-surface: #0a111c;
  --bm-white: #101926;
  --bm-card: #131e2e;
  --bm-header-bg: rgba(10, 17, 28, 0.8);
  --bm-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 12px 36px rgba(0, 0, 0, 0.35);
  --bm-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --bm-hero-overlay: linear-gradient(115deg, rgba(4, 10, 20, 0.92) 0%, rgba(10, 26, 47, 0.62) 50%, rgba(15, 143, 132, 0.28) 100%);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--bm-font);
  color: var(--bm-ink);
  background-color: var(--bm-surface);
  background-image:
    radial-gradient(1100px 520px at 8% -8%, rgba(15, 143, 132, 0.09), transparent 58%),
    radial-gradient(900px 480px at 98% 2%, rgba(10, 26, 47, 0.06), transparent 52%),
    radial-gradient(700px 420px at 50% 100%, rgba(15, 143, 132, 0.04), transparent 60%);
  background-attachment: fixed;
  line-height: 1.65;
  letter-spacing: -0.011em;
  overflow-x: clip;
  transition: background-color 0.3s var(--bm-ease), color 0.3s var(--bm-ease);
  -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] body {
  background-image:
    radial-gradient(900px 480px at 12% -10%, rgba(46, 196, 182, 0.08), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(30, 60, 100, 0.18), transparent 50%);
}

::selection {
  background: rgba(15, 143, 132, 0.22);
  color: var(--bm-ink);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--bm-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--bm-accent-hover);
}

h1,
h2,
h3,
.h-display {
  font-family: var(--bm-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--bm-navy);
  text-transform: none;
  line-height: 1.2;
}

.text-muted-bm {
  color: var(--bm-muted) !important;
}

/* —— Header —— */
.bm-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--bm-header-bg);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--bm-ease), box-shadow 0.3s var(--bm-ease), background 0.3s var(--bm-ease);
}

.bm-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--bm-line) 80%, transparent);
  box-shadow: 0 8px 30px rgba(10, 26, 47, 0.06);
}

[data-theme="dark"] .bm-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.bm-theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: var(--bm-radius-sm);
  border: 1px solid var(--bm-line);
  background: color-mix(in srgb, var(--bm-card) 88%, transparent);
  color: var(--bm-ink);
  line-height: 1;
  transition: border-color 0.2s var(--bm-ease), background 0.2s var(--bm-ease), color 0.2s var(--bm-ease), transform 0.2s var(--bm-ease);
}

.bm-theme-toggle:hover {
  border-color: var(--bm-line);
  color: var(--bm-ink);
  background: var(--bm-hover-bg);
  transform: translateY(-2px);
}

.bm-theme-toggle .bi-sun {
  display: none;
}

[data-theme="dark"] .bm-theme-toggle .bi-moon-stars {
  display: none;
}

[data-theme="dark"] .bm-theme-toggle .bi-sun {
  display: inline-block;
}

.btn .bi {
  margin-right: 0.35rem;
  vertical-align: -0.05em;
}

.navbar-toggler {
  filter: none;
}

[data-theme="dark"] .navbar-toggler-icon {
  filter: invert(1) grayscale(100%);
}

.bm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--bm-navy);
}

.bm-brand:hover {
  color: var(--bm-navy);
}

.bm-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, #0a1a2f 0%, #0f8f84 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--bm-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 143, 132, 0.28);
}

.bm-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.bm-brand-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.bm-brand-text span {
  font-size: 0.72rem;
  color: var(--bm-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bm-nav .nav-link {
  color: var(--bm-ink);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.65rem;
  transition: background 0.25s var(--bm-ease), color 0.25s var(--bm-ease), transform 0.25s var(--bm-ease);
}

.bm-nav .nav-link:hover {
  color: var(--bm-ink);
  background: var(--bm-hover-bg);
  transform: translateY(-1px);
}

.bm-nav .nav-link.active {
  color: var(--bm-accent-hover);
  background: var(--bm-teal-soft);
}

.btn-bm-primary {
  --bs-btn-bg: var(--bm-teal);
  --bs-btn-border-color: var(--bm-teal);
  --bs-btn-hover-bg: var(--bm-teal-dark);
  --bs-btn-hover-border-color: var(--bm-teal-dark);
  --bs-btn-active-bg: var(--bm-teal-dark);
  --bs-btn-active-border-color: var(--bm-teal-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.7rem 1.3rem;
  box-shadow: 0 6px 18px rgba(15, 143, 132, 0.28);
  transition: transform 0.2s var(--bm-ease), box-shadow 0.2s var(--bm-ease), background 0.2s var(--bm-ease);
}

.btn-bm-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 143, 132, 0.35);
}

.btn-bm-outline {
  --bs-btn-color: var(--bm-ink);
  --bs-btn-border-color: var(--bm-line);
  --bs-btn-hover-bg: #0a1a2f;
  --bs-btn-hover-border-color: #0a1a2f;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.7rem 1.3rem;
  transition: transform 0.2s var(--bm-ease), background 0.2s var(--bm-ease), color 0.2s var(--bm-ease);
}

[data-theme="light"] .btn-bm-outline {
  --bs-btn-color: #0a1a2f;
  --bs-btn-border-color: #0a1a2f;
  --bs-btn-hover-bg: #0a1a2f;
  --bs-btn-hover-border-color: #0a1a2f;
}

[data-theme="dark"] .btn-bm-outline {
  --bs-btn-hover-bg: var(--bm-teal);
  --bs-btn-hover-border-color: var(--bm-teal);
  --bs-btn-hover-color: #061018;
}

.btn-bm-ghost {
  --bs-btn-color: var(--bm-ink);
  --bs-btn-border-color: var(--bm-line);
  --bs-btn-hover-bg: var(--bm-hover-bg);
  --bs-btn-hover-border-color: var(--bm-hover-border);
  --bs-btn-hover-color: var(--bm-ink);
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  transition: transform 0.25s var(--bm-ease), background 0.25s var(--bm-ease);
}

.btn-bm-ghost:hover {
  transform: translateY(-2px);
}

/* —— Hero slider (compact + visual) —— */
.bm-hero-slider {
  position: relative;
  color: #fff;
  background: #050e1a;
}

.bm-hero-slider .carousel-item {
  height: 23rem;
}

@media (min-width: 768px) {
  .bm-hero-slider .carousel-item {
    height: 27rem;
  }
}

@media (min-width: 1200px) {
  .bm-hero-slider .carousel-item {
    height: 30rem;
  }
}

.bm-hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bm-hero-slide-img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1) translate3d(0, 0, 0);
  filter: saturate(1.08) contrast(1.04) brightness(0.95);
  will-change: transform;
}

.carousel-item.active .bm-hero-slide-img {
  animation: bm-kenburns-a 14s ease-out both;
}

.carousel-item:nth-child(2).active .bm-hero-slide-img {
  animation-name: bm-kenburns-b;
}

.carousel-item:nth-child(3).active .bm-hero-slide-img {
  animation-name: bm-kenburns-c;
}

@keyframes bm-kenburns-a {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-2.5%, -1.5%, 0); }
}

@keyframes bm-kenburns-b {
  0% { transform: scale(1.12) translate3d(2%, 0, 0); }
  100% { transform: scale(1) translate3d(-1.5%, 1.5%, 0); }
}

@keyframes bm-kenburns-c {
  0% { transform: scale(1) translate3d(0, 1%, 0); }
  100% { transform: scale(1.14) translate3d(2%, -2%, 0); }
}

@keyframes bm-hero-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.carousel-item.active .bm-eyebrow,
.carousel-item.active .bm-brand-inline,
.carousel-item.active .lead,
.carousel-item.active .bm-hero-cta {
  animation: bm-hero-copy-in 0.85s var(--bm-ease) both;
}

.carousel-item.active .bm-brand-inline {
  animation-delay: 0.08s;
}

.carousel-item.active .lead {
  animation-delay: 0.16s;
}

.carousel-item.active .bm-hero-cta {
  animation-delay: 0.24s;
}

.bm-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(5, 14, 26, 0.86) 0%, rgba(10, 26, 47, 0.42) 55%, rgba(5, 14, 26, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 14, 26, 0.62) 0%, transparent 48%);
  z-index: 1;
}

.bm-hero-slide .container {
  position: relative;
  z-index: 2;
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}

.bm-hero-slider .bm-eyebrow {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.75rem;
}

.bm-hero-slider .bm-brand-inline {
  font-family: var(--bm-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 0.75rem;
  letter-spacing: -0.035em;
  color: #fff;
  text-transform: none;
  text-wrap: balance;
}

.bm-hero-slider .lead {
  font-size: 1.08rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
  line-height: 1.55;
  text-wrap: pretty;
}

.bm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.bm-hero-slider .btn-light {
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.72rem 1.3rem;
  color: #0a1a2f;
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s var(--bm-ease), box-shadow 0.2s var(--bm-ease);
}

.bm-hero-slider .btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.bm-hero-slider .btn-outline-light {
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.72rem 1.3rem;
  border-width: 1.5px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--bm-ease), transform 0.2s var(--bm-ease);
}

.bm-hero-slider .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.bm-hero-slider .carousel-indicators {
  margin-bottom: 1rem;
  gap: 0.35rem;
}

.bm-hero-slider .carousel-indicators [data-bs-target] {
  width: 1.85rem;
  height: 0.28rem;
  border-radius: 999px;
  background-color: #fff;
  border: 0;
  opacity: 0.35;
  transition: width 0.35s var(--bm-ease), opacity 0.35s var(--bm-ease);
}

.bm-hero-slider .carousel-indicators .active {
  width: 2.6rem;
  opacity: 1;
}

.bm-hero-slider .carousel-control-prev,
.bm-hero-slider .carousel-control-next {
  width: 3.25rem;
  opacity: 0.9;
}

.bm-hero-slider .carousel-control-prev-icon,
.bm-hero-slider .carousel-control-next-icon {
  width: 1.35rem;
  height: 1.35rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* —— Search band —— */
.bm-search-band {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.bm-search-panel {
  background: color-mix(in srgb, var(--bm-card) 92%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-radius: var(--bm-radius-lg);
  box-shadow: var(--bm-shadow-lg);
  padding: 1.35rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--bm-line) 90%, transparent);
}

.bm-search-panel .form-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bm-muted);
  margin-bottom: 0.4rem;
}

.bm-search-panel .form-select,
.bm-search-panel .form-control {
  border-color: var(--bm-line);
  border-radius: var(--bm-radius-sm);
  padding: 0.72rem 0.9rem;
  font-size: 0.95rem;
  background: var(--bm-card);
  transition: border-color 0.2s var(--bm-ease), box-shadow 0.2s var(--bm-ease);
}

.bm-search-panel .form-select:focus,
.bm-search-panel .form-control:focus {
  border-color: var(--bm-teal);
  box-shadow: 0 0 0 0.22rem var(--bm-teal-soft);
}

/* —— Trust row —— */
.bm-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.bm-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--bm-card) 88%, transparent);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bm-ink);
  box-shadow: var(--bm-shadow);
}

.bm-trust-item i {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: var(--bm-teal-soft);
  color: var(--bm-teal-dark);
  flex-shrink: 0;
  font-size: 1.05rem;
}

/* —— Sections —— */
.bm-section {
  padding: 5rem 0;
}

.bm-section-sm {
  padding: 3.25rem 0;
}

.bm-section-title {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.bm-section-lead {
  color: var(--bm-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.bm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bm-accent-hover);
  margin-bottom: 0.55rem;
  font-family: var(--bm-font);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--bm-teal-soft);
}

/* —— Listing cards —— */
.bm-listing {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  padding: 0;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10, 26, 47, 0.03);
  transition: transform 0.35s var(--bm-ease), box-shadow 0.35s var(--bm-ease), border-color 0.35s var(--bm-ease);
}

.bm-listing:hover {
  color: inherit;
  transform: translateY(-7px);
  box-shadow: var(--bm-shadow-lg);
  border-color: var(--bm-hover-border);
  background: var(--bm-card);
}

.bm-listing:not(:has(.bm-listing-media)) {
  padding: 1.25rem 1.35rem;
}

.bm-nav .nav-link .bi {
  margin-right: 0.3rem;
  opacity: 0.8;
}

.bm-listing-media {
  position: relative;
  height: 9rem;
  overflow: hidden;
  background: var(--bm-navy-mid);
}

.bm-listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--bm-ease);
}

.bm-listing:hover .bm-listing-media img {
  transform: scale(1.07);
}

.bm-listing-body {
  padding: 1.2rem 1.3rem 1.25rem;
}

.bm-listing-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--bm-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--bm-navy);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .bm-listing-route {
  color: var(--bm-ink);
}

.bm-listing-arrow {
  color: var(--bm-teal);
  font-size: 0.9rem;
}

.bm-listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.bm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 0.5rem;
  background: var(--bm-surface);
  color: var(--bm-muted);
  letter-spacing: 0.01em;
}

.bm-chip-teal {
  background: var(--bm-teal-soft);
  color: var(--bm-accent-hover);
}

.bm-listing-excerpt {
  font-size: 0.9rem;
  color: var(--bm-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bm-listing-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--bm-line);
  font-size: 0.8rem;
  color: var(--bm-muted);
}

.bm-listing-foot span:last-child {
  font-weight: 600;
  color: var(--bm-accent-hover);
  transition: transform 0.25s var(--bm-ease);
}

.bm-listing:hover .bm-listing-foot span:last-child {
  transform: translateX(4px);
}

/* —— Institution grid —— */
.bm-inst {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.15rem;
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  text-decoration: none;
  color: var(--bm-ink);
  height: 100%;
  box-shadow: 0 1px 2px rgba(10, 26, 47, 0.03);
  transition: border-color 0.3s var(--bm-ease), background 0.3s var(--bm-ease), color 0.3s var(--bm-ease), transform 0.35s var(--bm-ease), box-shadow 0.35s var(--bm-ease);
}

.bm-inst:hover {
  border-color: var(--bm-hover-border);
  background: var(--bm-hover-bg);
  color: var(--bm-ink);
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow);
}

.bm-inst:hover .bm-inst-icon {
  transform: scale(1.06) rotate(-3deg);
}

.bm-inst-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, #0a1a2f, #13304f);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.35s var(--bm-ease);
}

[data-theme="light"] .bm-inst-icon {
  background: linear-gradient(145deg, #0a1a2f, #13304f);
}

.bm-inst span {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

/* —— Stats —— */
.bm-stats {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 280px at 15% 0%, rgba(15, 143, 132, 0.35), transparent 55%),
    radial-gradient(500px 260px at 90% 100%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, #0a1a2f 0%, #13304f 58%, #0b726a 130%);
  color: #fff;
  border-radius: var(--bm-radius-lg);
  padding: 2.75rem 1.75rem;
  box-shadow: var(--bm-shadow-lg);
}

.bm-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
}

.bm-stats .row {
  position: relative;
  z-index: 1;
}

.bm-stat-value {
  font-family: var(--bm-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.bm-stat-label {
  font-size: 0.9rem;
  opacity: 0.82;
  font-weight: 500;
}

/* —— Guide teaser —— */
.bm-guide {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.35rem 1.1rem;
  margin: 0 -1.1rem;
  border-radius: var(--bm-radius);
  border-bottom: 1px solid var(--bm-line);
  transition: background 0.25s var(--bm-ease), transform 0.25s var(--bm-ease);
}

.bm-guide:has(+ .btn) {
  border-bottom: 0;
}

.bm-guide:hover {
  color: inherit;
  background: var(--bm-hover-bg);
  transform: translateX(6px);
}

.bm-guide:hover h3 {
  color: var(--bm-accent-hover);
}

.bm-guide h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  transition: color 0.2s var(--bm-ease);
}

.bm-guide p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 0.95rem;
}

.bm-guide-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--bm-radius-lg);
  overflow: hidden;
  box-shadow: var(--bm-shadow-lg);
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .bm-guide-media {
    margin-bottom: 0;
  }
}

.bm-guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--bm-ease);
}

.bm-guide-media:hover img {
  transform: scale(1.04);
}

/* —— Page header (inner) —— */
.bm-page-hero {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(15, 143, 132, 0.28), transparent 55%),
    linear-gradient(135deg, var(--bm-navy-deep), var(--bm-navy-mid));
  color: #fff;
  padding: 3rem 0 2.75rem;
}

.bm-page-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.bm-page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 36rem;
}

.bm-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.bm-breadcrumb .breadcrumb-item,
.bm-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.bm-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.bm-breadcrumb-dark {
  --bs-breadcrumb-divider-color: var(--bm-muted);
}

.bm-breadcrumb-dark .breadcrumb-item,
.bm-breadcrumb-dark .breadcrumb-item a {
  color: var(--bm-muted);
}

.bm-breadcrumb-dark .breadcrumb-item.active {
  color: var(--bm-ink);
}

/* —— Filters sidebar —— */
.bm-filters {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  padding: 1.4rem;
  position: sticky;
  top: calc(var(--bm-header-h) + 1rem);
  box-shadow: var(--bm-shadow);
}

.bm-filters h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* —— Detail —— */
.bm-detail-panel {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  padding: 1.85rem;
  box-shadow: var(--bm-shadow);
}

.bm-detail-aside {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--bm-header-h) + 1rem);
  box-shadow: var(--bm-shadow);
}

.bm-route-big {
  font-family: var(--bm-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--bm-navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

/* —— Auth —— */
.bm-auth-wrap {
  min-height: calc(100vh - var(--bm-header-h) - 12rem);
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.bm-auth-card {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius-lg);
  padding: 2.15rem;
  box-shadow: var(--bm-shadow-lg);
  max-width: 28rem;
  width: 100%;
  margin: 0 auto;
}

.bm-auth-card h1 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

/* —— Content prose —— */
.bm-prose {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--bm-shadow);
}

.bm-prose h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.bm-prose h2:first-child {
  margin-top: 0;
}

.bm-prose h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.bm-prose p,
.bm-prose li {
  color: var(--bm-ink);
  font-size: 1.02rem;
}

.bm-prose ul {
  padding-left: 1.25rem;
}

.bm-prose blockquote {
  border-left: 3px solid var(--bm-teal);
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.15rem;
  color: var(--bm-muted);
  font-style: italic;
}

/* —— FAQ —— */
.bm-accordion .accordion-item {
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius) !important;
  margin-bottom: 0.7rem;
  overflow: hidden;
  background: var(--bm-card);
  box-shadow: 0 1px 2px rgba(10, 26, 47, 0.03);
}

.bm-accordion .accordion-button {
  font-family: var(--bm-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bm-ink);
  box-shadow: none !important;
  background: var(--bm-card);
  padding: 1.1rem 1.25rem;
}

.bm-accordion .accordion-button:not(.collapsed) {
  background: var(--bm-teal-soft);
  color: var(--bm-accent-hover);
}

.bm-accordion .accordion-button::after {
  filter: none;
}

[data-theme="dark"] .bm-accordion .accordion-button::after {
  filter: invert(1) brightness(1.4);
}

.bm-accordion .accordion-body {
  color: var(--bm-muted);
  padding: 0 1.25rem 1.2rem;
}

/* —— Footer —— */
.bm-footer {
  background:
    radial-gradient(600px 240px at 80% 0%, rgba(15, 143, 132, 0.14), transparent 55%),
    var(--bm-navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.bm-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s var(--bm-ease);
}

.bm-footer a:hover {
  color: #fff;
}

.bm-footer h3 {
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--bm-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bm-footer-brand {
  font-family: var(--bm-display);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.bm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--bm-ease),
    transform 0.85s var(--bm-ease),
    filter 0.85s var(--bm-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes bm-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes bm-pulse-soft {
  0%, 100% { box-shadow: 0 4px 14px rgba(15, 143, 132, 0.28); }
  50% { box-shadow: 0 6px 22px rgba(15, 143, 132, 0.42); }
}

.bm-brand-mark {
  animation: bm-pulse-soft 3.5s ease-in-out infinite;
}

.bm-trust-item i {
  animation: bm-float 4s ease-in-out infinite;
}

.bm-trust-item:nth-child(2) i {
  animation-delay: 0.4s;
}

.bm-trust-item:nth-child(3) i {
  animation-delay: 0.8s;
}

.bm-trust-item {
  transition: transform 0.35s var(--bm-ease), box-shadow 0.35s var(--bm-ease), border-color 0.35s var(--bm-ease);
}

.bm-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--bm-shadow-lg);
  border-color: var(--bm-hover-border);
}

.bm-search-panel {
  transition: transform 0.4s var(--bm-ease), box-shadow 0.4s var(--bm-ease);
}

.bm-search-panel:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--bm-shadow-lg);
}

.btn-bm-primary:hover,
.btn-bm-outline:hover {
  transform: translateY(-2px);
}

.bm-visual-card {
  transition: transform 0.45s var(--bm-ease), box-shadow 0.45s var(--bm-ease);
}

.bm-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bm-shadow-lg);
}

.bm-map-panel {
  transition: transform 0.4s var(--bm-ease), box-shadow 0.4s var(--bm-ease);
}

.bm-cta-band {
  transition: transform 0.4s var(--bm-ease);
}

.bm-cta-band:hover {
  transform: translateY(-2px);
}

.bm-hero-slider .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.bm-hero-slider .carousel-fade .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

/* —— Forms —— */
.form-control,
.form-select {
  background-color: var(--bm-card);
  border-color: var(--bm-line);
  color: var(--bm-ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bm-teal);
  box-shadow: 0 0 0 0.2rem var(--bm-teal-soft);
  background-color: var(--bm-card);
  color: var(--bm-ink);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bm-ink);
}

/* Visual showcase strip — bento */
.bm-visual-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.95rem;
  min-height: 22rem;
}

.bm-visual-card:first-child {
  grid-row: 1 / span 2;
  min-height: 22rem;
}

@media (max-width: 767.98px) {
  .bm-visual-strip {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .bm-visual-card:first-child {
    grid-row: auto;
    min-height: 12rem;
  }
}

.bm-visual-card {
  position: relative;
  border-radius: var(--bm-radius);
  overflow: hidden;
  min-height: 10.5rem;
  display: block;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--bm-shadow);
  isolation: isolate;
}

.bm-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--bm-ease);
}

.bm-visual-card:hover img {
  transform: scale(1.06);
}

.bm-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 14, 26, 0.88) 100%);
  z-index: 1;
  transition: background 0.35s var(--bm-ease);
}

.bm-visual-card:hover::after {
  background: linear-gradient(180deg, transparent 10%, rgba(5, 14, 26, 0.92) 100%);
}

.bm-visual-card span {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  font-family: var(--bm-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.bm-visual-card small {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--bm-font);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0;
}

/* CTA band */
.bm-cta-band {
  position: relative;
  overflow: hidden;
  border: 0;
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.75rem;
  border-radius: var(--bm-radius-lg);
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(15, 143, 132, 0.4), transparent 60%),
    radial-gradient(420px 200px at 90% 100%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #0a1a2f 0%, #13304f 55%, #0b726a 140%);
  box-shadow: var(--bm-shadow-lg);
}

.bm-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}

.bm-cta-band > * {
  position: relative;
  z-index: 1;
}

.bm-cta-band h2 {
  color: #fff;
  font-family: var(--bm-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
}

.bm-cta-band p {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.bm-cta-band .btn-light {
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.72rem 1.35rem;
  color: #0a1a2f;
  border: 0;
}

.bm-cta-band .btn-outline-light {
  font-weight: 600;
  border-radius: var(--bm-radius-sm);
  padding: 0.72rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
}

.bm-page-hero {
  position: relative;
  overflow: hidden;
}

.bm-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.bm-page-hero .container {
  position: relative;
  z-index: 1;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] .h-display {
  color: var(--bm-ink);
}

[data-theme="dark"] .bm-brand {
  color: var(--bm-ink);
}

[data-theme="dark"] .bm-brand:hover {
  color: var(--bm-ink);
}

[data-theme="dark"] a:hover {
  color: var(--bm-accent-hover);
}

.is-invalid-msg {
  color: #b42318;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.was-validated .form-control:invalid ~ .is-invalid-msg,
.form-control.is-invalid ~ .is-invalid-msg {
  display: block;
}

/* —— Utilities —— */
.bm-bg-white {
  background: var(--bm-card);
}

.bm-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bm-muted);
}

/* —— Turkey map —— */
.bm-map-panel {
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius-lg);
  box-shadow: var(--bm-shadow-lg);
  padding: 1.15rem 1.15rem 1.35rem;
  position: relative;
}

.bm-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.5rem 0.85rem;
  border-bottom: 1px solid var(--bm-line);
}

.bm-map-hint {
  font-size: 0.88rem;
  color: var(--bm-muted);
}

.bm-map-selected {
  font-weight: 700;
  color: var(--bm-accent-hover);
  font-size: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bm-teal-soft);
}

.bm-map-stage {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  line-height: 0;
}

.bm-turkey-svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #c5d4e4;
  stroke: #8fa3b8;
  stroke-width: 0.7;
}

[data-theme="dark"] .bm-turkey-svg {
  fill: #243548;
  stroke: #3d5168;
}

.bm-turkey-svg path {
  cursor: pointer;
  transition: fill 0.2s ease, stroke 0.2s ease, filter 0.2s ease;
}

.bm-turkey-svg path:hover,
.bm-turkey-svg path.is-hover {
  fill: var(--bm-teal);
  stroke: var(--bm-teal-dark);
  stroke-width: 1.1;
  filter: drop-shadow(0 2px 6px rgba(26, 155, 142, 0.35));
}

.bm-turkey-svg path:focus {
  outline: 2px solid var(--bm-teal);
  outline-offset: 2px;
}

.bm-map-tooltip {
  position: fixed;
  z-index: 1080;
  pointer-events: none;
  background: var(--bm-navy-deep);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -120%);
  white-space: nowrap;
}

[data-theme="light"] .bm-map-tooltip {
  background: #0b1f3a;
}

.bm-city-banner {
  background: var(--bm-teal-soft);
  border: 1px solid color-mix(in srgb, var(--bm-accent-hover) 35%, var(--bm-line));
  border-radius: var(--bm-radius);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  color: var(--bm-accent-hover);
}

.bm-map-stage,
.bm-map-panel {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .bm-trust-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .bm-trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .bm-trust-row .bm-trust-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  /* Header: ikonlar mobilde gizlensin */
  .bm-nav .nav-link .bi,
  .bm-header .btn-bm-ghost .bi,
  .bm-header .btn-bm-primary .bi {
    display: none !important;
  }

  .bm-nav {
    padding: 0.75rem 0 0.35rem;
    width: 100%;
  }

  .bm-nav .nav-link {
    padding: 0.7rem 0.65rem !important;
  }

  .bm-header .navbar-collapse {
    padding-bottom: 0.75rem;
  }

  .bm-header .navbar-collapse > .d-flex {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--bm-line);
  }

  .bm-header .btn-bm-primary,
  .bm-header .btn-bm-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .bm-header .bm-theme-toggle {
    width: 2.5rem;
    height: 2.5rem;
    align-self: flex-end;
    flex-shrink: 0;
  }

  .bm-filters {
    position: static;
    margin-bottom: 1.5rem;
  }

  .bm-detail-aside {
    position: static;
    margin-top: 1.5rem;
  }

  .bm-search-band {
    margin-top: -1.5rem;
  }

  .bm-hero-slider .carousel-control-prev,
  .bm-hero-slider .carousel-control-next {
    width: 2.25rem;
    opacity: 0.65;
  }
}

@media (max-width: 767.98px) {
  .bm-visual-strip {
    grid-template-columns: 1fr;
  }

  .bm-hero-slider .carousel-item {
    height: auto;
    min-height: 19.5rem;
  }

  .bm-hero-slide {
    min-height: 19.5rem;
    align-items: flex-end;
  }

  .bm-hero-slide .container {
    padding-top: 1.75rem;
    padding-bottom: 3.25rem;
  }

  .bm-hero-slider .bm-brand-inline {
    font-size: clamp(1.5rem, 8vw, 2.15rem);
    line-height: 1.12;
  }

  .bm-hero-slider .lead {
    font-size: 0.95rem;
    max-width: none;
  }

  .bm-hero-cta .btn {
    padding: 0.6rem 1rem;
  }

  .bm-section {
    padding: 3rem 0;
  }

  .bm-section-sm {
    padding: 2.25rem 0;
  }

  .bm-map-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bm-stats .bm-stat-value {
    font-size: 1.75rem;
  }

  .bm-page-hero {
    padding: 2rem 0 1.75rem;
  }

  .bm-page-hero h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .bm-route-big {
    font-size: 1.35rem;
  }

  .bm-auth-card {
    padding: 1.5rem 1.25rem;
  }

  .bm-prose {
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .bm-brand-text span {
    display: none;
  }

  .bm-brand-text strong {
    font-size: 0.95rem;
  }

  .bm-brand-mark {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.9rem;
  }

  .bm-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .bm-hero-cta .btn {
    width: 100%;
  }

  .bm-hero-slider .carousel-control-prev,
  .bm-hero-slider .carousel-control-next {
    display: none;
  }

  .bm-search-band {
    margin-top: -1rem;
  }

  .bm-search-panel {
    padding: 1rem;
    border-radius: 0.65rem;
  }

  .bm-visual-card {
    min-height: 9.5rem;
  }

  .bm-visual-card:first-child {
    min-height: 11rem;
  }

  .bm-trust-row {
    grid-template-columns: 1fr;
  }

  .bm-listing-media {
    height: 7.5rem;
  }

  .bm-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .bm-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .bm-city-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bm-city-banner .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .bm-hero-slide-img,
  .carousel-item.active .bm-hero-slide-img,
  .bm-brand-mark,
  .bm-trust-item i {
    animation: none !important;
  }
}
