/* ACS site chrome — modern header / footer / hero */
:root {
  --acs-brand: #ef7b00;
  --acs-brand-soft: rgba(239, 123, 0, 0.12);
  --acs-ink: #1a1f2a;
  --acs-ink-2: #2c3340;
  --acs-muted: #667085;
  --acs-hero-muted: rgba(255, 255, 255, 0.78);
  --acs-surface: #ffffff;
  --acs-surface-2: #f5f6f8;
  --acs-line: rgba(26, 31, 42, 0.08);
  --acs-header-h: 76px;
}

body.page-home {
  padding-top: 0;
}

body.page-inner {
  padding-top: var(--acs-header-h);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--acs-header-h);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

.site-header__logo img,
.site-header__logo-img {
  display: block;
  max-height: 44px;
  width: auto;
}

.site-header__logo .site-header__logo-img--overlay {
  display: none !important;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .site-header__logo .site-header__logo-img--overlay {
  display: block !important;
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .site-header__logo .site-header__logo-img--solid {
  display: none !important;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-header__menu > li {
  position: relative;
}

.site-header__menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.site-header__menu > li > a:hover,
.site-header__menu > li.current > a {
  color: #fff;
  background: var(--acs-brand-soft);
}

.site-header__menu > li.current > a {
  color: var(--acs-brand);
}

.site-header__menu > li.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  opacity: .75;
  margin-left: 4px;
}

/* Bootstrap dropdown-toggle caret çakışmasın */
.site-header__menu > li.dropdown > a.dropdown-toggle::after,
.site-header .dropdown-toggle::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

.site-header__menu > li > ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  z-index: 20;
}

.site-header__menu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.site-header__menu > li > ul > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-header__menu > li > ul > li > a:hover {
  background: #f4f5f7;
  color: var(--acs-brand);
}

.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  z-index: 2;
}

.site-header .lang-switcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin: 0;
}

.site-header .lang-switcher summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.site-header .lang-switcher summary::-webkit-details-marker {
  display: none;
}

.site-header .lang-switcher-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.site-header .lang-switcher-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  padding: 6px;
  z-index: 30;
}

.site-header .lang-switcher-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.site-header .lang-switcher-item:hover {
  background: #f1f3f5;
}

.site-header .lang-switcher-item.active {
  background: var(--acs-brand);
  color: #fff;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--acs-brand);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease;
}

.site-header__cta:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.site-header__cta i {
  font-size: 12px;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.site-header--overlay {
  background: transparent;
}

.site-header--overlay.is-scrolled,
.site-header--solid,
.site-header.is-open {
  background: var(--acs-surface);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(26, 31, 42, .08);
  border-bottom: 1px solid var(--acs-line);
}

.site-header--solid .site-header__menu > li > a,
.site-header--overlay.is-scrolled .site-header__menu > li > a,
.site-header.is-open .site-header__menu > li > a {
  color: var(--acs-ink);
}

.site-header--solid .site-header__menu > li > a:hover,
.site-header--overlay.is-scrolled .site-header__menu > li > a:hover,
.site-header.is-open .site-header__menu > li > a:hover,
.site-header--solid .site-header__menu > li.current > a,
.site-header--overlay.is-scrolled .site-header__menu > li.current > a,
.site-header.is-open .site-header__menu > li.current > a {
  color: var(--acs-brand);
  background: var(--acs-brand-soft);
}

.site-header--solid .lang-switcher summary,
.site-header--overlay.is-scrolled .lang-switcher summary,
.site-header.is-open .lang-switcher summary {
  color: var(--acs-ink);
  border-color: var(--acs-line);
  background: var(--acs-surface-2);
}

.site-header--solid .site-header__toggle,
.site-header--overlay.is-scrolled .site-header__toggle,
.site-header.is-open .site-header__toggle {
  border-color: var(--acs-line);
  background: var(--acs-surface-2);
}

.site-header--solid .site-header__toggle span,
.site-header--overlay.is-scrolled .site-header__toggle span,
.site-header.is-open .site-header__toggle span {
  background: var(--acs-ink);
}

.site-header__backdrop {
  display: none;
}

/* Şeffaf menü — geçişli buzlu üst bant (masaüstü + mobil) */
.site-header--overlay:not(.is-scrolled):not(.is-open) {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.site-header--overlay:not(.is-scrolled):not(.is-open)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--acs-header-h) + 56px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, .55) 0%,
    rgba(8, 10, 16, .32) 55%,
    rgba(8, 10, 16, 0) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 100%);
}

@media (min-width: 1188px) {
  .site-header--overlay:not(.is-scrolled):not(.is-open)::before {
    height: calc(var(--acs-header-h) + 32px);
    background: linear-gradient(
      180deg,
      rgba(8, 10, 16, .18) 0%,
      rgba(8, 10, 16, .07) 55%,
      rgba(8, 10, 16, 0) 100%
    );
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}

.site-header--overlay:not(.is-scrolled):not(.is-open) .site-header__inner {
  position: relative;
  z-index: 1;
}

/* ---------- Mobile header ---------- */
@media (max-width: 1187px) {
  .site-header__nav {
    position: fixed;
    top: var(--acs-header-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--acs-header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--acs-surface);
    padding: 12px 16px 24px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
    z-index: 1090;
    justify-content: flex-start;
    border-top: 2px solid var(--acs-brand);
    box-shadow: 0 16px 32px rgba(26, 31, 42, .12);
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .site-header__menu > li > a {
    width: 100%;
    border-radius: 10px;
    padding: 14px 14px;
    justify-content: space-between;
    color: var(--acs-ink);
  }

  .site-header.is-open .site-header__menu > li > a:hover,
  .site-header.is-open .site-header__menu > li.current > a {
    color: var(--acs-brand);
    background: var(--acs-brand-soft);
  }

  .site-header__menu > li > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: var(--acs-surface-2);
    margin: 4px 0 8px;
    border-radius: 10px;
  }

  .site-header__menu > li.is-open > ul {
    display: block;
  }

  .site-header__menu > li > ul > li > a {
    color: var(--acs-ink-2);
  }

  .site-header__menu > li > ul > li > a:hover {
    background: var(--acs-brand-soft);
    color: var(--acs-brand);
  }

  .site-header__cta {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26, 31, 42, .28);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    z-index: 1080;
  }

  .site-header.is-open .site-header__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-header__logo img {
    max-height: 38px;
  }
}

/* Hide old motor-expert header chrome if any leftover markup */
.main-header {
  display: none !important;
}

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  min-height: 100vh;
  background: #0b0d12;
  overflow: hidden;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slider__carousel,
.hero-slider__carousel .owl-stage-outer,
.hero-slider__carousel .owl-stage,
.hero-slider__carousel .owl-item {
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-layer {
  position: absolute;
  inset: 0;
}

.hero-media-layer--desktop {
  display: block;
}

.hero-media-layer--mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero-media-layer--desktop {
    display: none;
  }

  .hero-media-layer--mobile {
    display: block;
  }
}

.hero-slide__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__media img,
.hero-slide__media video.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-embed-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-embed-wrap iframe.hero-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.35);
  pointer-events: none;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 16, .78) 0%, rgba(8, 10, 16, .45) 55%, rgba(8, 10, 16, .35) 100%),
    linear-gradient(0deg, rgba(8, 10, 16, .55) 0%, transparent 45%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-slide__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acs-brand);
  box-shadow: 0 0 0 3px var(--acs-brand-soft);
}

.hero-slide__title {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
}

.hero-slide__title span {
  color: var(--acs-brand);
}

.hero-slide__text {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--acs-hero-muted);
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: .2s ease;
}

.hero-btn--primary {
  background: var(--acs-brand);
  color: #fff !important;
}

.hero-btn--primary:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.hero-btn--ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff !important;
  background: transparent;
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}

.hero-slider .owl-nav {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  margin: 0;
}

.hero-slider .owl-nav button {
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  color: #fff !important;
  font-size: 18px !important;
}

.hero-slider .owl-nav button:hover {
  background: var(--acs-brand) !important;
  border-color: var(--acs-brand) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  margin: 0 !important;
}

.hero-slider .owl-dot span {
  background: rgba(255, 255, 255, .35) !important;
}

.hero-slider .owl-dot.active span {
  background: var(--acs-brand) !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--acs-surface-2);
  color: var(--acs-muted);
  padding-top: 64px;
  border-top: 1px solid var(--acs-line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 48px;
}

.site-footer__brand img {
  max-height: 42px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer__brand p {
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 14px;
  color: var(--acs-muted);
}

.site-footer__title {
  margin: 0 0 18px;
  color: var(--acs-ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-footer__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 10px;
  background: var(--acs-brand);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a {
  color: var(--acs-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.site-footer__links a:hover {
  color: var(--acs-brand);
}

.site-footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--acs-muted);
}

.site-footer__contact-item i {
  color: var(--acs-brand);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.site-footer__contact-item a {
  color: inherit;
  text-decoration: none;
}

.site-footer__contact-item a:hover {
  color: var(--acs-brand);
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--acs-line);
  color: var(--acs-ink);
  background: var(--acs-surface);
  text-decoration: none;
  transition: .2s ease;
}

.site-footer__social a:hover {
  background: var(--acs-brand);
  border-color: var(--acs-brand);
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid var(--acs-line);
  padding: 18px 0;
  font-size: 13px;
  color: var(--acs-muted);
  background: var(--acs-surface);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__credit a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer__credit a:hover {
  color: var(--acs-brand);
}

@media (max-width: 767px) {
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 575px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-slide__content {
    padding: 110px 0 90px;
  }

  .hero-slider .owl-nav {
    display: none;
  }

  .page-title--light {
    padding: 28px 0 24px;
  }

  .page-title--light h1 {
    font-size: 1.5rem;
  }
}

/* ---------- Inner page title (light) ---------- */
.page-title--light:not(.page-title--cover),
body.page-inner .page-title:not(.page-title--cover) {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef1f5 55%, #f9fafb 100%) !important;
  background-image: none !important;
  padding: 40px 0 34px;
  text-align: left;
  border-bottom: 1px solid var(--acs-line);
}

.page-title--light:not(.page-title--cover):before,
body.page-inner .page-title:not(.page-title--cover):before {
  display: none !important;
}

.page-title--light .inner-container,
body.page-inner .page-title .inner-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-title--light h1,
body.page-inner .page-title h1 {
  float: none !important;
  margin: 0;
  color: var(--acs-ink) !important;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.02em;
}

.page-title--light h1::after,
body.page-inner .page-title h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--acs-brand);
}

/* Panel SayfaKapak: 1600×208 — yazılar template gibi: başlık sol, breadcrumb sağ */
.page-title--light.page-title--cover,
body.page-inner .page-title.page-title--cover {
  position: relative;
  aspect-ratio: 1600 / 208;
  width: 100%;
  max-height: 208px;
  padding: 70px 0 !important;
  text-align: left !important;
  background: #1a1f2a !important;
  border-bottom: none;
  display: block !important;
  overflow: hidden;
}

.page-title__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-title__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 42, 0.45);
}

.page-title--light.page-title--cover:before,
body.page-inner .page-title.page-title--cover:before {
  display: none !important;
}

.page-title--light.page-title--cover .auto-container,
body.page-inner .page-title.page-title--cover .auto-container {
  position: relative;
  z-index: 1;
}

.page-title--light.page-title--cover .inner-container,
body.page-inner .page-title.page-title--cover .inner-container {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100%;
  padding: 0 !important;
  gap: 0;
}

.page-title--light.page-title--cover h1,
body.page-inner .page-title.page-title--cover h1 {
  float: left !important;
  margin: 0;
  color: #fff !important;
  font-size: 30px !important;
  line-height: 50px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0;
}

.page-title--light.page-title--cover h1::after,
body.page-inner .page-title.page-title--cover h1::after {
  display: none !important;
}

.page-title--light.page-title--cover .bread-crumb,
body.page-inner .page-title.page-title--cover .bread-crumb {
  float: right !important;
  display: block !important;
  margin: 0 !important;
  padding: 10px 0 !important;
  white-space: nowrap;
}

.page-title--light.page-title--cover .bread-crumb li,
body.page-inner .page-title.page-title--cover .bread-crumb li {
  float: left;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #fff !important;
  font-weight: 400;
  padding-right: 0;
  margin-right: 0;
}

.page-title--light.page-title--cover .bread-crumb li + li::before,
body.page-inner .page-title.page-title--cover .bread-crumb li + li::before,
.page-title--light.page-title--cover .bread-crumb li:before,
body.page-inner .page-title.page-title--cover .bread-crumb li:before {
  content: none !important;
  display: none !important;
}

.page-title--light.page-title--cover .bread-crumb .bread-sep,
body.page-inner .page-title.page-title--cover .bread-crumb .bread-sep {
  display: inline-block;
  margin: 0 8px;
  color: #fff;
  font-weight: 600;
}

.page-title--light.page-title--cover .bread-crumb li:last-child,
body.page-inner .page-title.page-title--cover .bread-crumb li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.page-title--light.page-title--cover .bread-crumb li a,
body.page-inner .page-title.page-title--cover .bread-crumb li a {
  color: #fff !important;
}

.page-title--light.page-title--cover .bread-crumb li a:hover,
body.page-inner .page-title.page-title--cover .bread-crumb li a:hover {
  color: var(--acs-brand) !important;
}

@media (max-width: 1187px) {
  .page-title--light.page-title--cover,
  body.page-inner .page-title.page-title--cover {
    aspect-ratio: auto;
    max-height: none;
    min-height: 148px;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }

  .page-title--light.page-title--cover .auto-container,
  body.page-inner .page-title.page-title--cover .auto-container {
    width: 100%;
  }

  .page-title--light.page-title--cover .inner-container,
  body.page-inner .page-title.page-title--cover .inner-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .page-title--light.page-title--cover h1,
  body.page-inner .page-title.page-title--cover h1 {
    float: none !important;
    line-height: 1.25 !important;
    font-size: 26px !important;
  }

  .page-title--light.page-title--cover .bread-crumb,
  body.page-inner .page-title.page-title--cover .bread-crumb {
    float: none !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.page-title--light .bread-crumb,
body.page-inner .page-title .bread-crumb {
  float: none !important;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-title--light .bread-crumb li,
body.page-inner .page-title .bread-crumb li {
  float: none !important;
  color: var(--acs-muted) !important;
  font-size: 14px;
  font-weight: 500;
  margin: 0 !important;
  padding: 0 !important;
}

.page-title--light .bread-crumb li:before,
.page-title--light .bread-crumb li:after,
body.page-inner .page-title .bread-crumb li:before,
body.page-inner .page-title .bread-crumb li:after {
  display: none !important;
}

.page-title--light .bread-crumb li + li::before,
body.page-inner .page-title .bread-crumb li + li::before {
  content: "/";
  display: inline-block !important;
  margin-right: 8px;
  color: #b0b7c3;
}

.page-title--light .bread-crumb li a,
body.page-inner .page-title .bread-crumb li a {
  color: var(--acs-ink) !important;
  text-decoration: none;
}

.page-title--light .bread-crumb li a:hover,
body.page-inner .page-title .bread-crumb li a:hover {
  color: var(--acs-brand) !important;
}

/* ---------- Inner page surface harmony ---------- */
body.page-inner {
  background: #fff;
}

body.page-inner .page-wrapper {
  background: #fff;
  overflow: visible !important;
}

body.page-inner .sidebar-title,
body.page-inner .sec-title h2,
body.page-inner .about-us h2,
body.page-inner .contact-form h2 {
  color: var(--acs-ink);
}

body.page-inner .theme-btn.btn-style-one,
body.page-inner .theme-btn.btn-style-two {
  border-radius: 999px;
}

body.page-inner .styled-pagination li a.active,
body.page-inner .mixitup-gallery .filters li.active,
body.page-inner .mixitup-gallery .filters li:hover {
  background-color: var(--acs-brand) !important;
  border-color: var(--acs-brand) !important;
  color: #fff !important;
}

body.page-inner .mixitup-gallery .filters li.active a,
body.page-inner .mixitup-gallery .filters li:hover a {
  color: #fff !important;
}

/* Reduce clash with old main-footer / header styles */
.main-header,
.main-footer {
  display: none !important;
}

/* Hakkımızda — Tarihçe fotoğrafları */
.why-us-section .tarihce-foto {
  width: 100%;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 6px;
}

/* Blog list — kapak hover zoom/lightbox yok */
.blog-list .news-block-two .image-box > a.lightbox-image,
.blog-list .news-block-two .inner-box:hover .image-box > a.lightbox-image {
  display: none !important;
  transform: none !important;
}

.blog-list .news-block-two .image-box figure a {
  position: static !important;
  transform: none !important;
  display: block;
  height: auto;
  width: 100%;
}

.blog-list .news-block-two .image-box figure a:before {
  display: none !important;
}

.blog-detail .blog-like-btn {
  cursor: pointer;
}

.blog-detail .blog-like-label.is-liked {
  color: #e0245e;
}

.blog-detail .blog-like-label i {
  margin-right: 6px;
}


/* Eski tema scroll butonu */
.scroll-to-top {
  display: none !important;
}

/* Sağ alt floating dock: WhatsApp / Mail / Yukarı */
.fab-dock {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fab-dock__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  color: #fff !important;
  font-size: 22px;
  box-shadow:
    0 10px 24px rgba(26, 31, 42, .18),
    0 2px 6px rgba(26, 31, 42, .08);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, visibility .22s ease;
  position: relative;
}

.fab-dock__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 14px 28px rgba(26, 31, 42, .22),
    0 4px 10px rgba(26, 31, 42, .1);
  color: #fff !important;
}

.fab-dock__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.fab-dock__btn--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

.fab-dock__btn--wa i {
  font-size: 26px;
}

.fab-dock__btn--mail {
  background: linear-gradient(145deg, #ef7b00 0%, #d06600 100%);
}

.fab-dock__btn--top {
  background: linear-gradient(145deg, #2c3340 0%, #1a1f2a 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.fab-dock__btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.fab-dock__btn--top.is-visible:hover {
  transform: translateY(-3px) scale(1.05);
}

.fab-dock__btn--top[hidden] {
  display: none !important;
}

@media (max-width: 575px) {
  .fab-dock {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .fab-dock__btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .fab-dock__btn--wa i {
    font-size: 24px;
  }
}

/* Blog / blog-detay — sticky sidebar (JS ile yönlü sabitlenme) */
@media (min-width: 992px) {
  .sidebar-page-container {
    overflow: visible !important;
  }

  .sidebar-page-container .auto-container {
    overflow: visible !important;
  }

  .sidebar-page-container > .auto-container > .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start !important;
    overflow: visible !important;
  }

  .sidebar-page-container .content-side,
  .sidebar-page-container .sidebar-side {
    float: none !important;
  }

  .sidebar-page-container .sidebar-side.blog-sticky-col {
    position: relative !important;
    align-self: flex-start !important;
  }

  .sidebar-page-container .sidebar-side .blog-sticky-sidebar {
    width: 100%;
    will-change: top;
  }
}

@media (max-width: 991px) {
  .sidebar-page-container .sidebar-side .blog-sticky-sidebar {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
  }
}

/* Proje detay — Genel Bilgiler: sade iki sütun satırlar */
.project-detail .proje-ozellik-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ececec;
  overflow: hidden;
}

.project-detail .proje-ozellik-list li {
  display: grid;
  grid-template-columns: minmax(100px, 40%) 1fr;
  gap: 8px 14px;
  align-items: start;
  min-width: 0 !important;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #36404b;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.project-detail .proje-ozellik-list li:last-child {
  border-bottom: none;
}

.project-detail .proje-ozellik-list li:nth-child(odd) {
  background-color: #f7f7f7;
}

.project-detail .proje-ozellik-list .oz-label {
  float: none !important;
  min-width: 0 !important;
  text-align: left !important;
  font-weight: 600;
  color: #36404b;
  word-break: break-word;
}

.project-detail .proje-ozellik-list .oz-value {
  float: none !important;
  min-width: 0 !important;
  text-align: left !important;
  font-weight: 400;
  color: #555;
  word-break: break-word;
}

.project-detail .project-info .post-share-options {
  margin-top: 10px;
}

@media (max-width: 575px) {
  .project-detail .proje-ozellik-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Referans kartları — foto + firma adı, yan yana */
.referans-section {
  padding: 70px 0 90px;
}

.referans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.referans-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px 18px;
  background: #fff;
  border: 1px solid #ececec;
  transition: border-color .2s ease, transform .2s ease;
}

.referans-card:hover {
  border-color: var(--acs-brand);
  transform: translateY(-3px);
}

.referans-card__media {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.referans-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.referans-card__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f3f3;
  color: var(--acs-brand);
  font-size: 28px;
  font-weight: 700;
}

.referans-card__name {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #36404b;
  word-break: break-word;
}

body.page-home .referans-section {
  background: #fafafa;
}

@media (max-width: 991px) {
  .referans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .referans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .referans-card {
    padding: 16px 12px 14px;
  }

  .referans-card__media {
    height: 88px;
  }
}

/* CTA bandı footer üzerine binmesin (tema -75px overlap) */
.subscribe-section {
  margin: 40px 0 48px !important;
  z-index: 1;
  position: relative;
}

.site-footer {
  position: relative;
  z-index: 2;
}

/* İletişim formu — yazı siyah, şık alanlar */
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="url"],
.contact-form .form-group input[type="number"],
.contact-form .form-group textarea,
.contact-form .form-group select {
  color: #1a1a1a !important;
  background: #fff !important;
  border: 1px solid #e2e5ea !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #1a1a1a;
  caret-color: #1a1a1a;
  font-weight: 500 !important;
  padding: 16px 18px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #9aa3af !important;
  opacity: 1;
  -webkit-text-fill-color: #9aa3af;
  font-weight: 400;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  border-color: var(--acs-brand) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(239, 123, 0, 0.18) !important;
}

.contact-form .form-group input:-webkit-autofill,
.contact-form .form-group input:-webkit-autofill:hover,
.contact-form .form-group input:-webkit-autofill:focus,
.contact-form .form-group textarea:-webkit-autofill {
  -webkit-text-fill-color: #1a1a1a !important;
  caret-color: #1a1a1a;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px #fff inset !important;
}

.contact-form .form-group textarea {
  min-height: 240px;
  line-height: 1.55 !important;
}

.contact-form .form-group button,
.contact-form button[type="submit"] {
  border-radius: 10px !important;
  background-color: var(--acs-brand) !important;
  border: none !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}

.contact-form .form-group button:hover,
.contact-form button[type="submit"]:hover {
  background-color: #d66e00 !important;
  color: #fff !important;
}



