:root {
  --primary-color: #d5001a;
  --primary-color-rgb: 213, 0, 26;
  --secondary-color: #d5001a;
  --secondary-color-rgb: 213, 0, 26;
  --logo-bg: #3a1c15;
  --logo-width: 180px;
  --slider-overlay-opacity: 0.4;
}

/* Sayfa alt?nda fazla bo?luk / yatay ta?ma d?zeltmesi */
html {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 0 !important;
}

#wrapper {
  overflow-x: hidden;
  min-height: 0;
}

/* ===== Header: split nav (logo ortada) ===== */
header.bk-header-layout.bk-header-split {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  /* ?? sayfalar: cam / frosted header ? yaz?lar her zaman okunur */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 0;
  border-bottom: 1px solid rgba(58, 28, 21, 0.08);
  box-shadow: 0 10px 30px rgba(58, 28, 21, 0.06);
  float: none;
  height: auto !important;
  min-height: 0;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

header.bk-header-layout.bk-header-split .container {
  max-width: 1280px;
}

header.bk-header-layout.bk-header-split .bk-header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
  padding: 10px 0 14px;
  position: relative;
}

header.bk-header-layout.bk-header-split #logo {
  float: none;
  display: block;
  grid-column: 2;
  justify-self: center;
  text-align: center;
  line-height: 0;
  background: var(--logo-bg);
  padding: 12px 34px 14px;
  border-radius: 0 0 14px 14px;
  margin: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(58, 28, 21, 0.22);
}

header.bk-header-layout.bk-header-split #logo a {
  display: inline-block;
  line-height: 0;
}

header.bk-header-layout.bk-header-split #logo img {
  max-width: var(--logo-width);
  width: var(--logo-width);
  height: auto;
  display: block;
}

header.bk-header-layout.bk-header-split .bk-nav-side {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

header.bk-header-layout.bk-header-split .bk-nav-side--left {
  grid-column: 1;
  justify-self: end;
  padding-right: 8px;
}

header.bk-header-layout.bk-header-split .bk-nav-side--right {
  grid-column: 3;
  justify-self: start;
  padding-left: 8px;
  flex-wrap: wrap;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul > li {
  float: none;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a {
  display: block;
  padding: 10px 14px !important;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #3a1c15 !important;
  text-decoration: none;
  text-shadow: none !important;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  position: relative;
  line-height: 1.2;
  transition: color 0.2s ease;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1.5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a:hover,
header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a:focus-visible {
  color: var(--primary-color) !important;
}

header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a:hover::after,
header.bk-header-layout.bk-header-split .bk-nav-side ul > li > a:focus-visible::after {
  transform: scaleX(1);
}

header.bk-header-layout.bk-header-split .bk-nav-cta {
  border-radius: 4px !important;
  padding: 10px 18px !important;
  margin-left: 6px;
  background: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  color: #fff !important;
  white-space: nowrap;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 16px rgba(213, 0, 26, 0.22) !important;
}

header.bk-header-layout.bk-header-split .bk-nav-cta span,
header.bk-header-layout.bk-header-split .bk-nav-cta:before,
header.bk-header-layout.bk-header-split .bk-nav-cta:after {
  color: #fff !important;
}

header.bk-header-layout.bk-header-split .bk-nav-cta:hover {
  background: #a80015 !important;
  border-color: #a80015 !important;
}

header.bk-header-layout.bk-header-split #menu-btn {
  display: none;
  filter: none;
  opacity: 0.9;
}

/* Sadece anasayfa: eski ?effaf header + beyaz yaz? */
body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) .bk-nav-side ul > li > a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4) !important;
}

body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) .bk-nav-side ul > li > a::after {
  background: #fff;
}

body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) .bk-nav-side ul > li > a:hover,
body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) .bk-nav-side ul > li > a:focus-visible {
  color: #fff !important;
}

body:has(.bk-hero-slider) header.bk-header-layout.bk-header-split.transparent:not(.smaller):not(.menu-open) #menu-btn {
  filter: brightness(0) invert(1);
}

/* Mobil panel men? ? masa?st?nde gizli */
header.bk-header-layout.bk-header-split > #mainmenu,
header.bk-header-layout.bk-header-split .bk-mainmenu-panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0 24px;
  clear: both;
  float: none !important;
  width: 100%;
  background: transparent;
}

header.bk-header-layout.bk-header-split.smaller #logo {
  padding: 8px 26px 10px;
}

header.bk-header-layout.bk-header-split.smaller #logo img {
  max-width: calc(var(--logo-width) * 0.85);
  width: calc(var(--logo-width) * 0.85);
}

header.bk-header-layout.bk-header-split.smaller .bk-header-bar {
  padding-top: 6px;
  padding-bottom: 10px;
}

/* Scroll sonras? / sabit cam hali */
header.bk-header-layout.bk-header-split.smaller,
header.bk-header-layout.bk-header-split.header-light:not(.transparent) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(58, 28, 21, 0.1);
  box-shadow: 0 12px 28px rgba(58, 28, 21, 0.08);
}

header.bk-header-layout.bk-header-split.smaller .bk-nav-side ul > li > a,
header.bk-header-layout.bk-header-split.header-light:not(.transparent) .bk-nav-side ul > li > a {
  color: #3a1c15 !important;
  text-shadow: none !important;
}

header.bk-header-layout.bk-header-split.smaller .bk-nav-side ul > li > a::after,
header.bk-header-layout.bk-header-split.header-light:not(.transparent) .bk-nav-side ul > li > a::after {
  background: var(--primary-color);
}

header.bk-header-layout.bk-header-split.smaller #menu-btn,
header.bk-header-layout.bk-header-split.header-light:not(.transparent) #menu-btn {
  filter: none;
}

@media only screen and (max-width: 992px) {
  header.bk-header-layout.bk-header-split .bk-header-bar {
    grid-template-columns: 1fr auto 1fr;
    padding: 8px 0 12px;
    min-height: 64px;
  }

  header.bk-header-layout.bk-header-split .bk-nav-side--left {
    display: none;
  }

  header.bk-header-layout.bk-header-split #logo {
    grid-column: 2;
    justify-self: center;
    padding: 8px 22px 10px;
  }

  header.bk-header-layout.bk-header-split #logo img {
    max-width: min(var(--logo-width), 148px);
    width: min(var(--logo-width), 148px);
  }

  header.bk-header-layout.bk-header-split .bk-nav-side--right {
    grid-column: 3;
    justify-self: end;
    padding-left: 0;
  }

  header.bk-header-layout.bk-header-split .bk-nav-side--right > ul {
    display: none;
  }

  header.bk-header-layout.bk-header-split .bk-nav-cta {
    display: none !important;
  }

  header.bk-header-layout.bk-header-split #menu-btn {
    display: block !important;
    position: relative;
    top: auto;
    right: auto;
    float: none;
    margin: 0;
  }

  /* A??k mobil men? */
  header.bk-header-layout.bk-header-split.menu-open {
    background: #fff !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  header.bk-header-layout.bk-header-split.menu-open > #mainmenu,
  header.bk-header-layout.bk-header-split.menu-open .bk-mainmenu-panel {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 40px;
    border-top: 1px solid rgba(58, 28, 21, 0.08);
  }

  header.bk-header-layout.bk-header-split.menu-open > #mainmenu > li,
  header.bk-header-layout.bk-header-split.menu-open .bk-mainmenu-panel > li {
    float: none !important;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(58, 28, 21, 0.06);
  }

  header.bk-header-layout.bk-header-split.menu-open > #mainmenu > li > a,
  header.bk-header-layout.bk-header-split.menu-open .bk-mainmenu-panel > li > a {
    display: block;
    padding: 16px 4px !important;
    font-family: "Marcellus", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #3a1c15 !important;
    text-align: center;
    background: transparent !important;
  }

  header.bk-header-layout.bk-header-split.menu-open .bk-mobile-cta {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
  }

  header.bk-header-layout.bk-header-split.menu-open .bk-mobile-cta .bk-nav-cta {
    display: inline-flex !important;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  header.bk-header-layout.bk-header-split #logo img {
    max-width: min(var(--logo-width), 136px);
    width: min(var(--logo-width), 136px);
  }
}

header.bk-header-layout .btn-main {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

header.bk-header-layout .btn-main:hover {
  background: #a80015;
  border-color: #a80015;
}

header.bk-header-layout.bk-header-split .bk-mobile-cta {
  display: none;
}

@media only screen and (max-width: 992px) {
  header.bk-header-layout.bk-header-split.menu-open .bk-mobile-cta {
    display: flex;
    justify-content: center;
    padding: 8px 0 28px;
  }
}


/* ===== Tam ekran hero slider ===== */
.bk-hero-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.bk-hero-slider .bk-hero-slider-h,
.bk-hero-slider .swiper,
.bk-hero-slider .swiper-slide {
  min-height: 100vh;
  height: 100vh;
}

.bk-hero-slider .swiper-inner {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.bk-hero-slider .sw-caption {
  z-index: 3;
}

.bk-hero-slider .sw-caption .subtitle,
.bk-hero-slider .sw-caption h1,
.bk-hero-slider .sw-caption .lead {
  color: #ffffff;
}

.bk-hero-slider .sw-caption .lead {
  color: rgba(255, 255, 255, 0.9);
}

.bk-hero-slider .swiper-pagination,
.bk-hero-slider .swiper-pagination-current,
.bk-hero-slider .swiper-pagination-total {
  color: #ffffff !important;
}

.bk-hero-slider .swiper-button-prev.light,
.bk-hero-slider .swiper-button-next.light {
  color: #ffffff;
}

.bk-hero-slider .sw-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #000000;
  opacity: var(--slider-overlay-opacity, 0.4);
}

@media only screen and (max-width: 991px) {
  .bk-hero-slider .bk-hero-slider-h,
  .bk-hero-slider .swiper,
  .bk-hero-slider .swiper-slide {
    min-height: 85vh;
    height: 85vh;
  }

  .bk-hero-slider .sw-caption h1 {
    font-size: 42px !important;
  }
}

/* ===== ?zellik kutular? (features) ===== */
.bk-features {
  background: #ffffff;
}

.bk-feature-item {
  min-height: 260px;
  padding: 48px 40px;
  height: 100%;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
}

.bk-feature-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  opacity: 0.7;
}

.bk-feature-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 16px;
}

.bk-feature-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
  opacity: 0.45;
}

.bk-feature-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 36ch;
  opacity: 0.9;
}

.bk-feature-dark {
  background: #3a1c15;
  color: #ffffff;
}

.bk-feature-light {
  background: #ffffff;
  color: #3a1c15;
  border-top: 1px solid rgba(58, 28, 21, 0.08);
  border-bottom: 1px solid rgba(58, 28, 21, 0.08);
}

.bk-feature-primary {
  background: #d5001a;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .bk-feature-item {
    min-height: 0;
    padding: 36px 28px;
  }

  .bk-feature-light {
    border-left: none;
    border-right: none;
  }
}

/* ===== Hizmetler b?l?m? ===== */
.bk-services .subtitle {
  color: var(--primary-color);
}

.bk-services h2[data-services-title] {
  color: #3a1c15;
}

.bk-services .bk-service-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #f3f1ef;
}

.bk-services .bk-service-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.bk-services .bk-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.bk-services .item h3 {
  color: #3a1c15;
  font-size: 20px;
  margin-top: 4px;
}

.bk-services .de-custom-nav .d-prev.circle,
.bk-services .de-custom-nav .d-next.circle {
  border-color: rgba(58, 28, 21, 0.15);
}

/* ===== Hakk?m?zda / Vizyon ===== */
.bk-about {
  background: #f7f3f0;
}

.bk-about .subtitle {
  color: var(--primary-color);
}

.bk-about [data-about-title] {
  color: #3a1c15;
}

.bk-about [data-about-text] {
  color: #4a352f;
  line-height: 1.8;
}

.bk-about .de_count h3,
.bk-about .de_count .hs-2 {
  color: var(--primary-color);
}

.bk-about-images img {
  object-fit: cover;
}

/* ===== SSS ===== */
.bk-faq .subtitle {
  color: var(--primary-color);
}

.bk-faq [data-faq-title] {
  color: #3a1c15;
}

.bk-faq .accordion-section-title {
  color: #3a1c15;
}

.bk-faq .accordion-section-content p {
  color: #4a352f;
  line-height: 1.75;
}

/* ===== Blog ===== */
.bk-blog .subtitle {
  color: var(--primary-color);
}

.bk-blog [data-blog-title] {
  color: #3a1c15;
}

.bk-blog-detail-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(213, 0, 26, 0.08), transparent 40%),
    linear-gradient(180deg, #f7f3f0 0%, #ffffff 45%, #f7f3f0 100%);
  min-height: 100vh;
}

.bk-blog-detail-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.bk-blog-detail-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(58, 28, 21, 0.12);
}

.bk-blog-detail-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.bk-blog-back {
  color: #3a1c15;
  font-weight: 600;
  text-decoration: none;
}

.bk-blog-back:hover {
  color: var(--primary-color);
}

.bk-blog-article-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #111;
}

.bk-blog-article-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.bk-blog-detail-date {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.bk-blog-article-body h1 {
  color: #3a1c15;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.bk-blog-article-content {
  color: #4a352f;
  font-size: 1.05rem;
  line-height: 1.85;
}

.bk-blog-article-content p {
  margin-bottom: 1.1rem;
}

.bk-blog-detail-empty,
.bk-blog-detail-loading {
  text-align: center;
  padding: 80px 20px;
  color: #4a352f;
}

.bk-blog-list-page {
  padding-bottom: 40px;
}

.bk-blog-list-page h1 {
  color: #3a1c15;
}

@media (max-width: 575px) {
  .bk-blog-detail-logo img {
    height: 40px;
  }

  .bk-blog-article-image img {
    max-height: 280px;
  }
}

/* ===== Footer ===== */
footer.bk-footer {
  --bk-footer-bg: #1a110f;
  --bk-footer-text: #d7cbc6;
  --bk-footer-heading: #ffffff;
  --bk-footer-link: #d7cbc6;
  --bk-footer-link-hover: #d5001a;
  --bk-footer-accent: #d5001a;
  --bk-footer-sub-bg: #140d0b;
  --bk-footer-sub-text: #a89890;
  background: var(--bk-footer-bg) !important;
  color: var(--bk-footer-text);
  padding: 72px 0 0 0;
  margin: 0;
}

footer.bk-footer p,
footer.bk-footer [data-footer-address],
footer.bk-footer [data-footer-email],
footer.bk-footer [data-footer-phone] {
  color: var(--bk-footer-text);
}

footer.bk-footer h2,
footer.bk-footer .hs-5,
footer.bk-footer .fw-bold {
  color: var(--bk-footer-heading) !important;
}

footer.bk-footer a {
  color: var(--bk-footer-link);
}

footer.bk-footer a:hover {
  color: var(--bk-footer-link-hover);
}

footer.bk-footer [data-footer-accent],
footer.bk-footer i[data-footer-accent] {
  color: var(--bk-footer-accent) !important;
}

footer.bk-footer .social-icons a {
  color: var(--bk-footer-link);
}

footer.bk-footer .social-icons a:hover {
  color: var(--bk-footer-link-hover);
}

footer.bk-footer .subfooter {
  background: var(--bk-footer-sub-bg);
  color: var(--bk-footer-sub-text);
  margin-top: 40px;
  padding: 18px 0;
}

footer.bk-footer .subfooter a {
  color: var(--bk-footer-sub-text);
}

footer.bk-footer .subfooter a:hover {
  color: var(--bk-footer-link-hover);
}

footer.bk-footer .bk-footer-credit {
  margin-top: 0;
  font-size: 0.88em;
  line-height: 1.4;
  color: var(--bk-footer-sub-text);
}

footer.bk-footer .bk-footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer.bk-footer .bk-footer-credit a:hover {
  color: var(--bk-footer-link-hover);
}

footer.bk-footer [data-footer-logo] {
  max-width: 200px;
  height: auto;
  background: #3a1c15;
  padding: 8px 12px;
  border-radius: 8px;
}

#bk-blog {
  padding-bottom: 80px;
}

#bk-testimonials {
  overflow: hidden;
}

#bk-testimonials .half-fluid .right-half,
#bk-testimonials .half-fluid .left-half {
  max-width: 100%;
}

/* ===== ?? sayfalar ===== */
.bk-inner-page {
  padding: 240px 0 80px;
  background:
    radial-gradient(circle at top right, rgba(213, 0, 26, 0.06), transparent 35%),
    #fff;
}

@media (max-width: 991px) {
  .bk-inner-page {
    padding-top: 200px;
  }
}

@media (max-width: 575px) {
  .bk-inner-page {
    padding-top: 170px;
  }
}

.bk-inner-page h1 {
  color: #3a1c15;
}

.bk-inner-page .subtitle {
  color: var(--primary-color);
}

.bk-page-content {
  color: #4a352f;
  font-size: 1.05rem;
  line-height: 1.85;
}

.bk-page-content p {
  margin-bottom: 1rem;
}

.bk-page-blocks .bk-block-heading {
  margin: 1.75rem 0 0.85rem;
  color: #3a1c15;
  font-weight: 700;
}

.bk-page-blocks .bk-block-heading:first-child {
  margin-top: 0;
}

.bk-page-blocks .bk-block-paragraph {
  margin-bottom: 1.15rem;
}

.bk-page-blocks .bk-block-image {
  margin: 1.5rem 0;
}

.bk-page-blocks .bk-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bk-page-blocks .bk-align-left {
  text-align: left;
}

.bk-page-blocks .bk-align-center {
  text-align: center;
}

.bk-page-blocks .bk-align-right {
  text-align: right;
}

.bk-page-blocks .bk-block-image.bk-align-left img,
.bk-page-blocks .bk-block-image.bk-align-center img,
.bk-page-blocks .bk-block-image.bk-align-right img {
  display: inline-block;
}

.bk-page-blocks .bk-block-paragraph [style*="text-align:center"],
.bk-page-blocks .bk-block-paragraph [style*="text-align: center"] {
  text-align: center;
}

.bk-page-blocks .bk-block-paragraph img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0.75rem 0;
}

.bk-page-blocks .bk-block-paragraph a {
  color: var(--primary-color, #d5001a);
  text-decoration: underline;
}

.bk-page-blocks .bk-block-image figcaption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: #7a6a64;
  text-align: center;
}

.bk-page-blocks .bk-block-list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
}

.bk-page-blocks .bk-block-list li {
  margin-bottom: 0.45rem;
}

.bk-page-blocks .bk-block-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary-color, #d5001a);
  background: rgba(213, 0, 26, 0.04);
  color: #3a1c15;
  font-style: italic;
}

.bk-page-blocks .bk-block-html {
  margin-bottom: 1.15rem;
}

.bk-page-hero-image img,
.bk-blog-article-image img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.bk-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  background: #111;
}

.bk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bk-gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== Galeri sayfas? (kurumsal) ===== */
.bk-gallery-page {
  padding-top: 210px;
  padding-bottom: 80px;
  background:
    linear-gradient(180deg, #f7f3f0 0%, #ffffff 120px, #ffffff 100%);
}

@media (max-width: 991px) {
  .bk-gallery-page {
    padding-top: 180px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .bk-gallery-page {
    padding-top: 160px;
  }
}

.bk-gallery-intro {
  margin-bottom: 56px;
}

.bk-gallery-eyebrow {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bk-gallery-intro h1 {
  color: #3a1c15;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.bk-gallery-rule {
  width: 48px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto 22px;
}

.bk-gallery-lead {
  color: #5a4a44;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}

.bk-gallery-figure {
  margin: 0;
}

.bk-gallery-frame {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #3a1c15;
  border: 1px solid rgba(58, 28, 21, 0.12);
}

.bk-gallery-frame::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.35s ease;
  z-index: 2;
}

.bk-gallery-frame:hover::after {
  height: 100%;
}

.bk-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.bk-gallery-frame:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.bk-gallery-figure figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(58, 28, 21, 0.12);
}

.bk-gallery-num {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.bk-gallery-caption {
  color: #3a1c15;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.bk-gallery-empty {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed rgba(58, 28, 21, 0.2);
  color: #6a5a54;
}

.bk-gallery-footer-note {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(58, 28, 21, 0.1);
}

.bk-gallery-footer-note p {
  margin: 0;
  color: #6a5a54;
  font-size: 0.98rem;
}

.bk-gallery-footer-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 0, 26, 0.35);
}

.bk-gallery-footer-note a:hover {
  border-bottom-color: var(--primary-color);
}

.bk-contact-form .form-control {
  border: 1px solid rgba(58, 28, 21, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
}

.bk-contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(213, 0, 26, 0.12);
}

.bk-contact-form label {
  color: #3a1c15;
  font-weight: 600;
  margin-bottom: 6px;
}

.bk-contact-status {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bk-contact-status.is-success {
  color: #1f7a3f;
}

.bk-contact-status.is-error {
  color: #b00020;
}

/* ===== ?leti?im sayfas? ===== */
.bk-contact-page {
  padding-top: 200px;
  background: #fff;
}

@media (max-width: 991px) {
  .bk-contact-page {
    padding-top: 170px;
  }
}

@media (max-width: 575px) {
  .bk-contact-page {
    padding-top: 150px;
  }
}

.bk-contact-hero {
  padding: 0 0 48px;
  margin-bottom: 8px;
}

.bk-contact-hero .subtitle {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.bk-contact-hero h1 {
  color: #3a1c15;
  margin-bottom: 16px;
}

.bk-contact-intro {
  color: #5a4a44;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

.bk-contact-intro p {
  margin-bottom: 0;
}

.bk-contact-card {
  background: #fff;
  border: 1px solid rgba(58, 28, 21, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(58, 28, 21, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bk-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 0, 26, 0.25);
  box-shadow: 0 14px 36px rgba(213, 0, 26, 0.1);
}

.bk-contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a1c15 0%, #5c2e24 100%);
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.bk-contact-card h3 {
  color: #3a1c15;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bk-contact-card p {
  color: #5a4a44;
  line-height: 1.7;
  margin-bottom: 14px;
}

.bk-contact-card p a {
  color: #3a1c15;
  text-decoration: none;
}

.bk-contact-card p a:hover {
  color: var(--primary-color);
}

.bk-contact-card-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.bk-contact-card-link:hover {
  text-decoration: underline;
}

.bk-contact-main {
  margin-top: 48px;
}

.bk-contact-aside {
  background: linear-gradient(160deg, #3a1c15 0%, #2a120e 100%);
  color: #f5ebe6;
  border-radius: 18px;
  padding: 36px 32px;
  height: 100%;
}

.bk-contact-aside h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bk-contact-aside > p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}

.bk-contact-aside-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-contact-aside-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bk-contact-aside-item > i {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bk-contact-aside-item strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.bk-contact-aside-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bk-contact-form-panel {
  background: #f7f3f0;
  border: 1px solid rgba(58, 28, 21, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  height: 100%;
}

.bk-contact-form-panel h2 {
  color: #3a1c15;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.bk-contact-form-lead {
  color: #6a5a54;
  margin-bottom: 24px;
}

.bk-contact-map-section {
  margin-top: 72px;
  padding-bottom: 0;
  background: #f7f3f0;
}

.bk-contact-map-head {
  padding: 48px 0 28px;
}

.bk-contact-map-head .subtitle {
  color: var(--primary-color);
}

.bk-contact-map-head h2 {
  color: #3a1c15;
  margin-bottom: 8px;
}

.bk-contact-map-head p {
  color: #6a5a54;
  margin-bottom: 0;
}

.bk-contact-map-frame {
  width: 100%;
  height: 420px;
  min-height: 320px;
  background: #3a1c15;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.bk-contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bk-map-facade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(213, 0, 26, 0.25), transparent 45%),
    linear-gradient(160deg, #3a1c15 0%, #1f100d 100%);
  color: #fff;
  text-align: center;
  padding: 24px;
}

.bk-map-facade-inner {
  max-width: 360px;
}

.bk-map-facade-inner i {
  display: block;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.bk-map-facade-inner strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bk-map-facade-inner span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.bk-map-load-btn {
  appearance: none;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bk-map-load-btn:hover {
  background: #b00016;
  transform: translateY(-1px);
}

.bk-map-external {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: underline;
}

.bk-map-external:hover {
  color: #fff;
}

.bk-contact-map-frame.is-loading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 40%;
  background: var(--primary-color);
  animation: bk-map-progress 1s ease-in-out infinite;
  z-index: 3;
}

@keyframes bk-map-progress {
  0% { left: -40%; width: 40%; }
  50% { left: 30%; width: 50%; }
  100% { left: 100%; width: 40%; }
}

@media (max-width: 991px) {
  .bk-contact-aside,
  .bk-contact-form-panel {
    padding: 28px 22px;
  }

  .bk-contact-map-frame {
    height: 340px;
  }
}

/* ===== Kurumsal sayfa ===== */
.bk-corporate-page {
  padding-top: 200px;
  padding-bottom: 80px;
  background: #fff;
}

@media (max-width: 991px) {
  .bk-corporate-page {
    padding-top: 170px;
  }
}

@media (max-width: 575px) {
  .bk-corporate-page {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

.bk-corporate-hero {
  padding-bottom: 56px;
  margin-bottom: 16px;
}

.bk-corporate-hero .subtitle {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.bk-corporate-hero h1 {
  color: #3a1c15;
  margin-bottom: 18px;
}

.bk-corporate-hero-lead {
  color: #5a4a44;
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto;
}

.bk-corporate-story {
  margin-bottom: 56px;
}

.bk-corporate-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(58, 28, 21, 0.14);
}

.bk-corporate-image-wrap img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.bk-corporate-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #3a1c15 0%, #2a120e 100%);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bk-corporate-badge-year {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.bk-corporate-badge-text {
  display: block;
  font-size: 0.92rem;
  opacity: 0.9;
  margin-top: 2px;
}

.bk-corporate-story-text h2 {
  color: #3a1c15;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.bk-corporate-story-text .bk-page-content {
  color: #4a352f;
  font-size: 1.05rem;
  line-height: 1.9;
}

.bk-corporate-stats {
  margin-bottom: 64px;
}

.bk-corporate-stat {
  text-align: center;
  background: #f7f3f0;
  border: 1px solid rgba(58, 28, 21, 0.08);
  border-radius: 14px;
  padding: 28px 16px;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bk-corporate-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 0, 26, 0.3);
}

.bk-corporate-stat-num {
  display: block;
  color: var(--primary-color);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.bk-corporate-stat-label {
  display: block;
  color: #3a1c15;
  font-size: 0.95rem;
  font-weight: 600;
}

.bk-corporate-values-head {
  margin-bottom: 36px;
}

.bk-corporate-values-head .subtitle {
  color: var(--primary-color);
}

.bk-corporate-values-head h2 {
  color: #3a1c15;
}

.bk-corporate-value {
  background: #fff;
  border: 1px solid rgba(58, 28, 21, 0.1);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 28px rgba(58, 28, 21, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bk-corporate-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(213, 0, 26, 0.1);
}

.bk-corporate-value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a1c15 0%, #5c2e24 100%);
  color: #fff;
  font-size: 22px;
}

.bk-corporate-value h3 {
  color: #3a1c15;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bk-corporate-value p {
  color: #6a5a54;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.bk-corporate-quote {
  margin-top: 64px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(58, 28, 21, 0.04) 0%, rgba(213, 0, 26, 0.06) 100%);
  border-left: 5px solid var(--primary-color);
  border-radius: 0 16px 16px 0;
  text-align: center;
}

.bk-corporate-quote i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.bk-corporate-quote p {
  color: #3a1c15;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .bk-corporate-image-wrap img {
    min-height: 280px;
  }

  .bk-corporate-quote {
    padding: 28px 24px;
  }
}

/* ===== Anasayfa sabit mobil eylem cubugu ===== */
:root {
  --bk-dock-chrome: 96px;
}

body:has(#bk-app-dock) #wrapper {
  padding-bottom: calc(88px + var(--bk-dock-chrome, 96px) + env(safe-area-inset-bottom, 0px));
}

.bk-app-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  max-width: none;
  margin: 0;
  /* Ustbasta butonlar; altta beyaz zemin Safari cubugunun altina kadar uzanir ? siyah bosluk kalmaz */
  padding: 12px 12px calc(12px + var(--bk-dock-chrome, 96px) + env(safe-area-inset-bottom, 0px));
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f6 100%);
  border: 0;
  border-top: 1px solid rgba(58, 28, 21, 0.1);
  box-shadow: 0 -16px 40px rgba(58, 28, 21, 0.18);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bk-app-dock-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 10px 6px;
  border-radius: 16px;
  text-decoration: none;
  color: #3a1c15;
  background: rgba(58, 28, 21, 0.04);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.bk-app-dock-btn:hover,
.bk-app-dock-btn:focus-visible {
  background: rgba(213, 0, 26, 0.1);
  color: var(--primary-color);
  outline: none;
}

.bk-app-dock-btn:active {
  transform: scale(0.96);
}

.bk-app-dock-btn--main {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 8px 18px rgba(213, 0, 26, 0.28);
}

.bk-app-dock-btn--main:hover,
.bk-app-dock-btn--main:focus-visible {
  background: #a80015;
  color: #fff;
}

.bk-app-dock-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.bk-app-dock-icon svg {
  width: 100%;
  height: 100%;
}

.bk-app-dock-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .bk-app-dock {
    left: 50%;
    right: auto;
    bottom: 22px;
    width: 400px;
    max-width: calc(100% - 24px);
    padding: 8px;
    border-radius: 22px;
    border: 1px solid rgba(58, 28, 21, 0.1);
    border-top: 1px solid rgba(58, 28, 21, 0.1);
    box-shadow:
      0 12px 36px rgba(58, 28, 21, 0.18),
      0 2px 0 rgba(255, 255, 255, 0.8) inset;
    transform: translateX(-50%) translateZ(0);
    -webkit-transform: translateX(-50%) translateZ(0);
  }

  .bk-app-dock-btn {
    background: transparent;
  }

  .bk-app-dock-btn--main {
    background: var(--primary-color);
  }
}
