/* ==========================================================================
   OLUŞUM GRUP — Marka Renk Teması
   Logo renkleri: #eb9b6a (sıcak turuncu / terracotta) + #06273a (lacivert)
   Yaklaşım: Açık tema korunur. Vurgu rengi turuncu; başlıklar ve tüm koyu
   alanlar (sticky header, breadcrumb, footer) marka laciverti olur.
   Lacivert + terracotta = klasik, prestijli ve sıcak bir ikili.
   Bu dosya main.css'ten SONRA yüklenir; vendor CSS'e dokunulmaz.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Web fontları (self-host): şablon 'Cal Sans' ve 'Golos Text' istiyor ama
   font yüklemesi mirror'da kaybolmuştu — fontlar yalnızca kurulu olduğu
   bilgisayarlarda görünüyordu (Mac'te serif'e düşüyordu). Artık siteden
   yüklenir; her cihazda aynı görünür. (Türkçe için latin + latin-ext)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cal-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cal-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* --- Marka paleti --- */
  --ol-orange:      #eb9b6a;   /* birincil vurgu (terracotta/turuncu) */
  --ol-orange-deep: #e08551;   /* hover / daha doygun ton */
  --ol-orange-soft: rgba(235, 155, 106, .13);
  --ol-navy:        #06273a;   /* başlıklar & koyu alanlar (lacivert) */
  --ol-navy-deep:   #041a27;   /* overlay / en koyu lacivert */

  /* --- Tema değişkenlerini markaya bağla (cascade ile tüm siteye yayılır) --- */
  --tl-color-theme-primary: var(--ol-orange);     /* eski gold #CAA05C -> turuncu */
  --tl-color-heading-primary: var(--ol-navy);      /* eski #191919 -> marka laciverti */

  /* --- Font yedek zinciri: webfont yüklenemezse bile serif'e (Times) düşmesin --- */
  --tl-ff-heading: 'Cal Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --tl-ff-body: 'Golos Text', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Bağlantı hover'ı marka turuncusu */
a:hover { color: var(--ol-orange); }

/* --------------------------------------------------------------------------
   "Bilgi ve Fiyat Al" pop-up'ı (proje detay sayfaları)
   -------------------------------------------------------------------------- */
.ol-pop-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 22, 31, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.ol-pop-overlay.acik { opacity: 1; visibility: visible; }
.ol-pop {
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  transform: translateY(26px) scale(.96);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
}
.ol-pop-overlay.acik .ol-pop { transform: none; }
.ol-pop-head {
  background: linear-gradient(160deg, #0d3d5c 0%, #06273a 70%);
  color: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 22px 22px 0 0;
}
.ol-pop-head h3 { color: #fff; font-size: 20px; margin: 0; }
.ol-pop-head small { display: block; color: #c4d2da; margin-top: 4px; font-size: 13px; }
.ol-pop-kapat {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background .3s ease;
}
.ol-pop-kapat:hover { background: #eb9b6a; }
.ol-pop-body { padding: 24px 26px; }
.ol-pop-body .satir { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ol-pop-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #06273a;
  margin: 0 0 6px;
}
.ol-pop-body input,
.ol-pop-body textarea {
  width: 100%;
  border: 1px solid rgba(6, 39, 58, .15);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  margin-bottom: 14px;
  background: #f7f9fa;
  outline: none;
  font-family: inherit;
  color: #06273a;
  transition: border-color .3s ease, background .3s ease;
}
.ol-pop-body input:focus,
.ol-pop-body textarea:focus { border-color: #eb9b6a; background: #fff; }
.ol-pop-gonder {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #f4bd97 0%, #eb9b6a 55%, #dd7a45 100%);
  transition: filter .3s ease, transform .2s ease;
}
.ol-pop-gonder:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ol-pop-gonder:disabled { opacity: .7; cursor: wait; transform: none; }
.ol-pop-mesaj { display: none; text-align: center; margin: 12px 0 0; font-size: 14px; font-weight: 600; }
.ol-pop-mesaj.ok { display: block; color: #1e7e34; }
.ol-pop-mesaj.hata { display: block; color: #b02a37; }
.ol-pop-alt { text-align: center; font-size: 14px; color: #77808b; margin: 16px 0 0; }
.ol-pop-alt a { color: #06273a; font-weight: 700; }
.ol-pop-alt a:hover { color: #eb9b6a; }
body.ol-pop-kilit { overflow: hidden; }
@media (max-width: 575.98px) {
  .ol-pop-body .satir { grid-template-columns: 1fr; }
  .ol-pop-head, .ol-pop-body { padding-left: 20px; padding-right: 20px; }
}

/* Yalnızca ekran okuyucular için (SEO/erişilebilirlik H1 vb.) */
.ol-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   İç sayfa başlık alanı (breadcrumb / page-header) — charcoal yerine lacivert
   (başlık metinleri zaten beyaz; sadece koyu zemin markaya uyarlanır)
   -------------------------------------------------------------------------- */
.page-header { background-color: var(--ol-navy) !important; }
.page-header .overlay { background-color: var(--ol-navy-deep) !important; }

/* --------------------------------------------------------------------------
   Footer — koyu alan marka laciverti tonunda (metinler zaten beyaz)
   -------------------------------------------------------------------------- */
.footer-section .footer-bg:before { background-color: var(--ol-navy-deep) !important; }
.footer-section .footer-shade { background: rgba(6, 39, 58, .55) !important; }

/* --------------------------------------------------------------------------
   Emniyet: değişken yerine gold'u hardcode eden tek gradyan (home-6 hero)
   -------------------------------------------------------------------------- */
.hero-section-6 .hero-text span {
  background: linear-gradient(180deg, var(--ol-orange) 14.9%, rgba(235, 155, 106, 0) 70.95%) !important;
  -webkit-background-clip: text;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   Metin seçim rengi (küçük marka dokunuşu)
   -------------------------------------------------------------------------- */
::selection { background: var(--ol-orange); color: #fff; }
::-moz-selection { background: var(--ol-orange); color: #fff; }

/* --------------------------------------------------------------------------
   Proje/portfolyo hover imleci: "View" -> "Projeyi İncele" (2 satır)
   -------------------------------------------------------------------------- */
.mt-cursor-view:after {
  content: "Projeyi\A İncele" !important;
  white-space: pre;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   Hakkımızda bölümü — ortak bileşen stilleri (ana sayfa + hakkimizda.html)
   -------------------------------------------------------------------------- */

/* Başlık vurgusu: yatay marka gradienti */
.about-content-3 .section-heading .section-title span {
  background: linear-gradient(90deg, #f4bd97 0%, #eb9b6a 48%, #dd7a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* İstatistik kartları (ikon + sayaç + etiket) */
.about-content-3 .about-items.ol-stat-cards {
  align-items: stretch;
  column-gap: 24px;
}
.about-content-3 .about-items .ol-stat-card {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid rgba(28, 28, 29, .10);
  border-radius: 18px;
  box-shadow: 0 20px 45px -28px rgba(28, 28, 29, .35);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-content-3 .about-items .ol-stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--tl-color-theme-primary);
  box-shadow: 0 28px 55px -26px rgba(235, 155, 106, .5);
}
.about-content-3 .about-items .ol-stat-card .ol-stat-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 24px;
  color: var(--tl-color-theme-primary);
  background: rgba(235, 155, 106, .13);
  transition: background .35s ease, color .35s ease;
}
.about-content-3 .about-items .ol-stat-card:hover .ol-stat-icon {
  background: var(--tl-color-theme-primary);
  color: #fff;
}
.about-content-3 .about-items .ol-stat-card .ol-stat-num {
  font-family: var(--tl-ff-heading);
  color: var(--tl-color-heading-primary);
  font-size: 44px;
  line-height: 1;
  margin: 0 0 4px 0;
  display: flex;
  align-items: baseline;
}
.about-content-3 .about-items .ol-stat-card .ol-stat-num .odometer { font: inherit; }
.about-content-3 .about-items .ol-stat-card .ol-stat-num em {
  font-style: normal;
  color: var(--tl-color-theme-primary);
}
.about-content-3 .about-items .ol-stat-card .ol-stat-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--tl-color-text-body);
}

/* --------------------------------------------------------------------------
   Üst menü: TÜM menü çubuğunun (logo + menü + telefon + butonlar) arkasına
   köşeleri yuvarlatılmış cam (glass) bar — referans tasarımdaki gibi.
   (yalnızca masaüstü; mobil offcanvas menü etkilenmez)
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .header .primary-header-inner {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 28px;
    margin-top: 14px;
  }

  /* Cam bar içinde menü linklerini kompaktlaştır (yalnızca 1. seviye;
     açılır alt menü linkleri etkilenmez) */
  .header .primary-header-inner .header-menu-wrap .mobile-menu-items > ul > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* Sabitlenen (sticky) durumda kompakt kal */
  .header .primary-header.fixed .primary-header-inner {
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 6px 28px;
  }

  /* Sabitlenen menüde şablonun tam genişlik lacivert zemini ve gölgesi kalksın —
     yalnızca şeffaf cam kapsül görünür (istek üzerine). */
  .header .primary-header.fixed {
    background-color: transparent;
    box-shadow: none;
  }

  /* Okunurluk: sabitlenen kapsüle hafif koyu cam tonu — blur sayesinde
     şeffaflık hissi korunur ama beyaz zeminlerde yazıların arkasında her
     zaman koyu bir katman bulunur. Ek güvence olarak ince metin gölgesi. */
  .header .primary-header.fixed .primary-header-inner {
    background: rgba(6, 39, 58, .45);
    border-color: rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    box-shadow: 0 14px 34px -18px rgba(4, 22, 31, .45);
  }
  .header .primary-header.fixed .mobile-menu-items > ul > li > a,
  .header .primary-header.fixed .header-contact {
    text-shadow: 0 1px 10px rgba(4, 22, 31, .4);
  }
}

/* Açılır alt menü: şablonda top:98px eski yüksek menüye göreydi; kompakt cam
   kapsülde araya boşluk girip hover kopuyordu. Kapsülün hemen altına sabitle. */
@media (min-width: 1200px) {
  .header .primary-header-inner .header-menu-wrap .mobile-menu-items > ul > li > ul {
    top: 100%;
  }
}

/* Yan menü logoları: SVG'lerde width olmadığından açık genişlik gerekli
   (aksi halde inline-block içinde 0 genişliğe düşüp görünmez olur) */
.side-menu-logo img,
.mobile-side-menu .side-menu-head img {
  width: 150px;
}

/* --------------------------------------------------------------------------
   Blog kartları (ana sayfa carousel) — bordered kart tasarımı
   Diğer kartlarla (istatistik/iletişim) aynı tasarım dili: ince kenarlık,
   yuvarlatılmış köşe, hover'da kalkma + turuncu kenarlık + yumuşak gölge.
   -------------------------------------------------------------------------- */
.blog-section .post-card {
  background: #fff;
  border: 1px solid rgba(6, 39, 58, .10);
  border-radius: 24px;
  padding: 16px 16px 28px;
  height: 100%;
  box-shadow: 0 18px 40px -30px rgba(6, 39, 58, .28);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.blog-section .post-card:hover {
  transform: translateY(-8px);
  border-color: var(--tl-color-theme-primary);
  box-shadow: 0 30px 60px -28px rgba(235, 155, 106, .45);
}

/* Görsel kart içinde: iç radius; sabit yükseklik YOK — görsel kendi oranında
   TAM görünür (object-fit:cover kırpması yapılmaz, logo/alt kısım kesilmez) */
.blog-section .post-card .post-thumb {
  height: auto;
  border-radius: 16px;
  margin-bottom: 22px;
}
.blog-section .post-card .post-thumb img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* İçerik iç boşluğu */
.blog-section .post-card .post-content { padding: 0 12px; }

/* Meta satırı: tarih/yazar arasında turuncu ayraç noktası */
.blog-section .post-card .post-meta li { position: relative; }
.blog-section .post-card .post-meta li + li { padding-left: 16px; }
.blog-section .post-card .post-meta li + li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tl-color-theme-primary);
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Carousel slaytları eşit yükseklikte dursun */
.blog-section .blog-carousel .swiper-slide { height: auto; }

/* Swiper'ın overflow:hidden'ı hover'da yukarı kalkan kartın üstünü ve alttaki
   gölgeyi kırpıyordu. Konteynere üst/alt iç boşluk verip negatif margin ile
   dengele: kart kalkınca kendi alanı içinde kalır, kırpılmaz. */
.blog-section .blog-carousel.swiper {
  padding-top: 14px;
  margin-top: -14px;
  padding-bottom: 44px;
  margin-bottom: -44px;
}

/* --------------------------------------------------------------------------
   Footer — menü başlıklarına göre zenginleştirilmiş tasarım
   -------------------------------------------------------------------------- */

/* Sütun başlıkları: altına kısa turuncu vurgu çizgisi */
.footer-widget .widget-header .widget-title {
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.footer-widget .widget-header .widget-title:after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--tl-color-theme-primary);
  position: absolute;
  left: 0;
  bottom: 0;
}

/* İletişim sütunu: ikon rozetli satırlar */
.ol-footer-contact { display: flex; flex-direction: column; gap: 14px; }
.ol-footer-contact .ol-f-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tl-color-common-white);
  font-size: 15px;
  transition: color .25s ease;
}
.ol-footer-contact a.ol-f-item:hover { color: var(--tl-color-theme-primary); }
.ol-footer-contact .ol-f-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(235, 155, 106, .16);
  color: var(--tl-color-theme-primary);
  font-size: 15px;
  transition: background .25s ease, color .25s ease;
}
.ol-footer-contact a.ol-f-item:hover .ol-f-icon {
  background: var(--tl-color-theme-primary);
  color: #fff;
}

/* Sosyal medya: metin linkleri yerine yuvarlak ikon rozetleri */
.footer-widget .social-list.ol-social-pills {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-widget .social-list.ol-social-pills li:before { display: none !important; }
.footer-widget .social-list.ol-social-pills li:not(:last-of-type):before { display: none !important; }
.footer-widget .social-list.ol-social-pills li a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-size: 15px;
  color: var(--tl-color-common-white);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-widget .social-list.ol-social-pills li a:hover {
  background: var(--tl-color-theme-primary);
  border-color: var(--tl-color-theme-primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer bölüm linkleri için yumuşak kaydırma */
html { scroll-behavior: smooth; }

/* --------------------------------------------------------------------------
   Footer logosu: şeffaf cam kutu + hover'da turuncu pırıltı süpürmesi
   -------------------------------------------------------------------------- */
.footer-section .footer-widget .widget-header .footer-logo { max-width: none; }

.footer-section .footer-widget .footer-logo a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .35s ease, background .35s ease;
}
.footer-section .footer-widget .footer-logo a:hover {
  border-color: rgba(235, 155, 106, .6);
  background: rgba(235, 155, 106, .08);
}

/* SVG logoda width/height özniteliği yok (yalnızca viewBox); inline-block cam
   kutu içinde 0px'e çöküyordu — açık genişlik ver. */
.footer-section .footer-widget .footer-logo a img {
  display: block;
  width: 250px;
  height: auto;
}

/* Pırıltı şeridi: hover'da soldan sağa süpürülür */
.footer-section .footer-widget .footer-logo a::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  width: 45%;
  left: -70%;
  background: linear-gradient(115deg,
      transparent 0%,
      rgba(235, 155, 106, .10) 30%,
      rgba(235, 155, 106, .55) 50%,
      rgba(235, 155, 106, .10) 70%,
      transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .8s ease;
}
.footer-section .footer-widget .footer-logo a:hover::after {
  left: 140%;
}

/* --------------------------------------------------------------------------
   Footer alt kısım düzeni: dev arka plan yazısı kaldırıldı; ona yer açan
   büyük alt boşluk sıfırlandı. Copyright: sol telif + sağ web tasarım logosu.
   -------------------------------------------------------------------------- */
.footer-section { padding-bottom: 0; }

.copyright-content.ol-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
}
.copyright-content.ol-copyright .ol-webdesign {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d0d0;
  font-size: 15px;
}
.copyright-content.ol-copyright .ol-webdesign img {
  height: 26px;
  width: auto;
  display: block;
}

/* Mobilde alt alta ortalı dursun */
@media (max-width: 767px) {
  .copyright-content.ol-copyright { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   Hakkımızda bölümü — MOBİL düzen (ana sayfa + hakkimizda.html)
   Masaüstünde iki görsel absolute kolaj; dar ekranda üst üste biniyordu.
   Mobilde normal akışa al: alt alta, tam genişlik, rozet görselin üstünde.
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .about-img-wrap-3 {
    height: auto;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .about-img-wrap-3 .about-img-1,
  .about-img-wrap-3 .about-img-2 {
    position: static;
    width: 100%;
    max-width: 100%;
  }
  /* Görseller kendi oranında TAM görünür (kırpma yok) */
  .about-img-wrap-3 .about-img-1 {
    height: auto;
    margin-bottom: 16px;
  }
  .about-img-wrap-3 .about-img-2 { height: auto; }
  .about-img-wrap-3 .about-img-1 img,
  .about-img-wrap-3 .about-img-2 img {
    height: auto;
    width: 100%;
  }

  /* Deneyim rozeti: alt görselin sol-alt köşesine kompakt otursun */
  .about-img-wrap-3 .about-counter {
    left: 16px;
    bottom: 16px;
    padding: 18px 16px;
    border-radius: 14px;
  }
  .about-img-wrap-3 .about-counter .title { font-size: 36px; margin-bottom: 4px; }
  .about-img-wrap-3 .about-counter p { font-size: 14px; }

  /* İstatistik kartları: alt alta tam genişlik (dikey boşluk) */
  .about-content-3 .about-items.ol-stat-cards {
    flex-direction: column;
    row-gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   Copyright barı: marka adı + web tasarım logosu (UI/UX dokunuşları)
   -------------------------------------------------------------------------- */

/* "Oluşum Grup": turuncu marka vurgusu + hover'da alttan büyüyen çizgi */
.ol-copyright .ol-brand-name {
  font-family: var(--tl-ff-heading);
  color: var(--tl-color-theme-primary);
  position: relative;
  padding-bottom: 2px;
  transition: color .25s ease;
}
.ol-copyright .ol-brand-name:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
  transition: width .35s ease;
}
.ol-copyright .ol-brand-name:hover { color: #f4bd97; }
.ol-copyright .ol-brand-name:hover:after { width: 100%; }

/* Web tasarım logosu: cam hap (pill) içinde, hover'da turuncu kenar + kalkma */
.ol-copyright .ol-webdesign a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  transition: border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.ol-copyright .ol-webdesign a img {
  /* SVG'de width özniteliği yok; açık boyut şart (aksi halde 0'a çöker) */
  height: 20px;
  width: auto;
  display: block;
  opacity: .9;
  transition: opacity .3s ease;
}
.ol-copyright .ol-webdesign a:hover {
  border-color: rgba(235, 155, 106, .6);
  background: rgba(235, 155, 106, .08);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(235, 155, 106, .5);
}
.ol-copyright .ol-webdesign a:hover img { opacity: 1; }

/* --------------------------------------------------------------------------
   Kayan yazı (iletişim bölümü): line-height:1, Türkçe İ/Ü noktalarını ve
   Ş/Ç kuyruklarını kırpıyordu (overflow:hidden'a takılıyor). Satır kutusunu
   diakritiklere yer açacak kadar büyüt.
   -------------------------------------------------------------------------- */
.running-text ul li { line-height: 1.28; }


/* --------------------------------------------------------------------------
   Hakkımızda "17 Yıllık Deneyim" rozeti — tema uyumlu tasarım + hareket
   Marka gradienti, yumuşak turuncu gölge, ince ışık kenarlığı; rozet
   soldan sağa süzülen zarif bir salınımla hareket eder.
   -------------------------------------------------------------------------- */
/* Hakkımızda rozeti: dönen dairesel marka imzası — lacivert daire çevresinde
   yavaşça dönen yazı, ortada turuncu zeminde logo ev işareti. */
.about-img-wrap-3 .about-counter.ol-spin-badge {
  width: 172px;
  height: 172px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0d3d5c 0%, #06273a 68%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 24px 50px -18px rgba(4, 22, 31, .65),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.ol-spin-badge .ol-spin-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: olSpinDonme 18s linear infinite;
  will-change: transform;
}
@keyframes olSpinDonme { to { transform: rotate(360deg); } }
.ol-spin-badge .ol-spin-text text {
  fill: #fff;
  font-family: var(--tl-ff-heading);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.9px;
}
.ol-spin-badge .ol-spin-core {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4bd97 0%, #eb9b6a 55%, #dd7a45 100%);
  box-shadow: 0 12px 26px -10px rgba(235, 155, 106, .6);
}
.ol-spin-badge .ol-spin-core svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}
@media (max-width: 991.98px) {
  .about-img-wrap-3 .about-counter.ol-spin-badge {
    width: 128px;
    height: 128px;
    padding: 0;
    border-radius: 50%;
  }
  .ol-spin-badge .ol-spin-text text { font-size: 12.5px; letter-spacing: 1.4px; }
  .ol-spin-badge .ol-spin-core { width: 50px; height: 50px; }
  .ol-spin-badge .ol-spin-core svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .ol-spin-badge .ol-spin-text { animation: none; }
}

/* --------------------------------------------------------------------------
   Üst menü LED şerit overlay'i — tüm sayfalarda ortak (script her sayfada)
   -------------------------------------------------------------------------- */
.ol-led-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   OLUŞUM GRUP preloader — "Blueprint'ten İnşaya"
   Logo, lacivert blueprint ızgarası üzerinde turuncu konturlarla kendini
   çizer; ardından marka renkleriyle dolar ve üzerinden ışık süzmesi geçer.
   (main.js'in bar zamanlayıcısı ve çıkış fade'i aynen kullanılır; eski
   bar/isim görselleri gizlenir.)
   -------------------------------------------------------------------------- */
.preloader { background: #041a27; }
.preloader .site-name { display: none !important; }
.preloader .preloader-gutters { opacity: 0 !important; }

.ol-preloader {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(6, 39, 58, .0) 0%, rgba(2, 12, 18, .65) 100%),
    #041a27;
}

/* blueprint ızgarası */
.ol-pre-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235, 155, 106, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 155, 106, .055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 132px 132px, 132px 132px, 44px 44px, 44px 44px;
  mask-image: radial-gradient(90% 70% at 50% 45%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 45%, #000 30%, transparent 100%);
}

.ol-pre-stage { position: relative; display: grid; justify-items: center; row-gap: 34px; }

.ol-pre-logo-wrap {
  position: relative;
  width: min(560px, 74vw);
  overflow: hidden;
  border-radius: 8px;
}
.ol-pre-logo { display: block; width: 100%; height: auto; overflow: visible; }
.ol-pre-logo .ol-o { fill: #eb9b6a; }
.ol-pre-logo .ol-w { fill: #fff; }

/* ışık süzmesi */
.ol-pre-shine {
  position: absolute;
  top: -30%;
  bottom: -30%;
  width: 34%;
  left: 0;
  /* animasyon başlayana dek ekran dışında bekle */
  transform: translateX(-260%) skewX(-18deg);
  background: linear-gradient(100deg,
      transparent 0%,
      rgba(255, 224, 198, .10) 35%,
      rgba(255, 224, 198, .26) 50%,
      rgba(255, 224, 198, .10) 65%,
      transparent 100%);
  filter: blur(9px);
  pointer-events: none;
}

/* ilerleme çizgisi + yüzde */
.ol-pre-meta { display: flex; align-items: center; gap: 16px; }
.ol-pre-line {
  width: 210px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.ol-pre-line span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
}
.ol-pre-pct {
  font-family: var(--tl-ff-heading);
  font-size: 13px;
  letter-spacing: .14em;
  color: #9fb2bd;
  min-width: 44px;
}

/* ==========================================================================
   PROJE DETAY SAYFASI (anka-plaza.html / meridian-office.html)
   Zengin, modern detay düzeni: bilgi kartları, açıklama + yapışkan özet,
   özellik listesi, lightbox'lı galeri, CTA bandı.
   ========================================================================== */

/* --- Bilgi kartları bandı --- */
.ol-pd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -56px;              /* banner ile iç içe: modern bindirme */
  position: relative;
  z-index: 5;
}
.ol-pd-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(6, 39, 58, .10);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 24px 50px -30px rgba(6, 39, 58, .45);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ol-pd-stat:hover {
  transform: translateY(-6px);
  border-color: var(--tl-color-theme-primary);
  box-shadow: 0 30px 60px -28px rgba(235, 155, 106, .5);
}
.ol-pd-stat .ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(235, 155, 106, .13);
  color: var(--tl-color-theme-primary);
  font-size: 22px;
}
.ol-pd-stat b {
  display: block;
  font-family: var(--tl-ff-heading);
  font-weight: 400;
  color: var(--tl-color-heading-primary);
  font-size: 18px;
  line-height: 1.25;
}
.ol-pd-stat small {
  display: block;
  font-size: 13px;
  color: #7e909c;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* --- Açıklama + yapışkan özet kartı --- */
.ol-pd-summary {
  position: sticky;
  top: 110px;
  background: linear-gradient(160deg, #06273a 0%, #041a27 100%);
  border-radius: 22px;
  padding: 34px 30px;
  color: #fff;
  overflow: hidden;
}
.ol-pd-summary:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(235, 155, 106, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 155, 106, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 20%, transparent 100%);
  pointer-events: none;
}
.ol-pd-summary h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.ol-pd-summary h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--tl-color-theme-primary);
  border-radius: 2px;
}
.ol-pd-summary ul { list-style: none; margin: 0 0 26px 0; padding: 0; position: relative; }
.ol-pd-summary ul li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0; /* 10+ satırlı özet tablo kutuya rahat sığsın */
  border-bottom: 1px dashed rgba(255, 255, 255, .14);
  font-size: 15px;
  color: #c4d2da;
}
.ol-pd-summary ul li:last-child { border-bottom: none; }
.ol-pd-summary ul li b { color: #fff; font-weight: 500; text-align: right; }
.ol-pd-summary .ol-pd-btns { display: grid; gap: 12px; position: relative; }
.ol-pd-summary .ol-pd-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--tl-ff-heading);
  font-size: 15px;
  transition: all .3s ease;
}
.ol-pd-summary .ol-pd-btns .btn-main {
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
  color: #06273a;
}
.ol-pd-summary .ol-pd-btns .btn-main:hover { filter: brightness(1.07); transform: translateY(-2px); }
.ol-pd-summary .ol-pd-btns .btn-ghost {
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}
.ol-pd-summary .ol-pd-btns .btn-ghost:hover { border-color: var(--tl-color-theme-primary); color: var(--tl-color-theme-primary); }

/* --- Özellikler --- */
.ol-pd-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
  margin-top: 26px;
}
.ol-pd-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--tl-color-text-body);
  background: #fff;
  border: 1px solid rgba(6, 39, 58, .08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .3s ease, transform .3s ease;
}
.ol-pd-features li:hover { border-color: rgba(235, 155, 106, .5); transform: translateX(4px); }
.ol-pd-features li i { color: var(--tl-color-theme-primary); font-size: 17px; flex-shrink: 0; }

/* --- Galeri --- */
.ol-pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-pd-gallery a {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ol-pd-gallery a.gizli { display: none; }
.ol-pd-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.ol-pd-gallery a:hover img { transform: scale(1.07); }
.ol-pd-gallery a:after {
  content: "\2b";                 /* + işareti */
  font-family: var(--tl-ff-heading);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 39, 58, 0) 30%, rgba(6, 39, 58, .55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.ol-pd-gallery a:hover:after { opacity: 1; }

/* --- CTA bandı --- */
.ol-pd-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(120deg, #06273a 0%, #0b3349 60%, #06273a 100%);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.ol-pd-cta:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 155, 106, .35), transparent 70%);
}
.ol-pd-cta h3 { color: #fff; font-size: 30px; margin: 0 0 6px 0; }
.ol-pd-cta p { color: #b9c8d1; margin: 0; }
.ol-pd-cta .tl-primary-btn { position: relative; }

/* --- Bölüm başlıkları --- */
.ol-pd-h {
  font-size: 30px;
  color: var(--tl-color-heading-primary);
  margin-bottom: 22px;
  position: relative;
  padding-left: 16px;
}
.ol-pd-h:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f4bd97, #dd7a45);
}

/* --- Responsive --- */
@media (max-width: 1199.98px) {
  .ol-pd-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .ol-pd-summary { position: static; margin-top: 30px; }
  .ol-pd-gallery { grid-template-columns: repeat(2, 1fr); }
  .ol-pd-cta { padding: 36px 26px; }
}
@media (max-width: 575.98px) {
  .ol-pd-stats { grid-template-columns: 1fr; margin-top: -40px; }
  .ol-pd-features { grid-template-columns: 1fr; }
  .ol-pd-gallery { grid-template-columns: 1fr; }
}


/* --- Proje detay: galeri filtre pilleri + sayaç (referans yapı) --- */
.ol-pd-gal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ol-pd-gal-head .ol-pd-h { margin-bottom: 0; }
.ol-pd-count {
  font-family: var(--tl-ff-heading);
  font-size: 14px;
  color: #7e909c;
  background: rgba(6, 39, 58, .05);
  border: 1px solid rgba(6, 39, 58, .08);
  padding: 8px 16px;
  border-radius: 30px;
}
.ol-pd-count b { color: var(--tl-color-theme-primary); font-weight: 600; }
.ol-pd-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  padding: 0;
  list-style: none;
}
.ol-pd-filter button {
  font-family: var(--tl-ff-heading);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid rgba(6, 39, 58, .14);
  background: #fff;
  color: var(--tl-color-heading-primary);
  cursor: pointer;
  transition: all .3s ease;
}
.ol-pd-filter button:hover {
  border-color: var(--tl-color-theme-primary);
  color: var(--tl-color-theme-primary);
}
.ol-pd-filter button.aktif {
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
  border-color: transparent;
  color: #06273a;
}

/* --- Yan sütun: özet + harita birlikte sticky --- */
.ol-pd-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 24px;
}
.ol-pd-side .ol-pd-summary { position: static; top: auto; }

/* --- Harita kartı --- */
.ol-pd-map {
  background: #fff;
  border: 1px solid rgba(6, 39, 58, .10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px -30px rgba(6, 39, 58, .35);
}
.ol-pd-map .map-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
}
.ol-pd-map .map-head .ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(235, 155, 106, .13);
  color: var(--tl-color-theme-primary);
  font-size: 17px;
}
.ol-pd-map .map-head b {
  display: block;
  font-family: var(--tl-ff-heading);
  font-weight: 400;
  color: var(--tl-color-heading-primary);
  font-size: 16px;
}
.ol-pd-map .map-head small {
  display: block;
  font-size: 12.5px;
  color: #7e909c;
  line-height: 1.4;
}
.ol-pd-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  filter: grayscale(.85) contrast(1.04);
  transition: filter .45s ease;
}
.ol-pd-map:hover iframe { filter: grayscale(0); }

@media (max-width: 991.98px) {
  .ol-pd-side { position: static; }
}

/* ==========================================================================
   PROJE DETAY — SİNEMATİK SCROLL DENEYİMİ (.ol-cine)
   Scroll ilerledikçe video zamanı akar (scrub); sahne ekranda pinlenir,
   metin sahneleri (beat) ilerlemeye bağlı belirir/kaybolur.
   ========================================================================== */
.ol-cine {
  position: relative;
  background: #041a27;
}
.ol-cine-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  transform: translateY(var(--cine-y, 0px));
  will-change: transform;
}
.ol-cine-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* sinematik karartma: üst/alt bantlar + kenar vinyeti */
.ol-cine-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 100% at 50% 50%, rgba(4, 22, 31, 0) 55%, rgba(4, 22, 31, .55) 100%),
    linear-gradient(180deg, rgba(4, 22, 31, .62) 0%, rgba(4, 22, 31, 0) 24%, rgba(4, 22, 31, 0) 72%, rgba(4, 22, 31, .68) 100%);
  pointer-events: none;
}

/* metin sahneleri */
.ol-cine-beat {
  position: absolute;
  left: 8%;
  bottom: 16%;
  max-width: 560px;
  opacity: 0;
  pointer-events: none;
}
.ol-cine-beat.sag { left: auto; right: 8%; text-align: right; }
.ol-cine-beat small {
  display: inline-block;
  font-family: var(--tl-ff-heading);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f4bd97;
  background: rgba(6, 39, 58, .5);
  border: 1px solid rgba(235, 155, 106, .35);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ol-cine-beat h3 {
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.08;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}
.ol-cine-beat h3 em {
  font-style: normal;
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* kaydırma ipucu */
.ol-cine-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tl-ff-heading);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  transition: opacity .4s ease;
}
.ol-cine-hint .tekerlek {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .7);
  border-radius: 12px;
  position: relative;
}
.ol-cine-hint .tekerlek:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: #eb9b6a;
  transform: translateX(-50%);
  animation: olWheel 1.6s ease-in-out infinite;
}
@keyframes olWheel {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ilerleme çizgisi */
.ol-cine-progress {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, .14);
  border-radius: 3px;
}
.ol-cine-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--cine-p, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #f4bd97, #eb9b6a);
  border-radius: 3px;
}

/* Mobil / hareket azaltma: pin+scrub yerine sade 100vh video */
.ol-cine.sade { height: 100vh !important; }
.ol-cine.sade .ol-cine-hint,
.ol-cine.sade .ol-cine-progress { display: none; }
.ol-cine.sade .ol-cine-beat:first-of-type { opacity: 1; }
@media (max-width: 991.98px) {
  .ol-cine-beat { left: 6%; right: 6%; bottom: 14%; max-width: none; }
  .ol-cine-beat.sag { text-align: left; }
}

/* ==========================================================================
   PROJE DETAY — VİDEO SAYFA ARKA PLANI (.ol-cine-bg)
   Video, sayfanın sabit arka planıdır; içerik üzerinde akar, video tüm
   sayfa scroll'una bağlı oynar. Mobil/hareket azaltmada poster gösterilir.
   ========================================================================== */
body.ol-cine-bg { background: #041a27; }

.ol-page-cine {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.ol-page-cine video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* video üzeri gradient kaldırıldı (istek üzerine) — video olduğu gibi görünür;
   footer'ın kendi karartması (.footer-shade) korunur */
.ol-page-cine .shade { position: absolute; inset: 0; background: none; }
.ol-page-cine.poster-mod .shade { background: rgba(4, 22, 31, .35); }

/* içerik videonun üstünde */
body.ol-cine-bg #antra-smooth-wrapper,
body.ol-cine-bg #antra-smooth-content { position: relative; z-index: 1; }
body.ol-cine-bg #antra-smooth-content { background: transparent; }

/* --- koyu zemin tipografi/bileşen uyarlamaları --- */
body.ol-cine-bg .ol-pd-h { color: #fff; }
body.ol-cine-bg .ol-pd-h + p,
body.ol-cine-bg section p.mb-20,
body.ol-cine-bg section p.mb-0 { color: #c6d3db; }
body.ol-cine-bg .ol-pd-count {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #c6d3db;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.ol-cine-bg .ol-pd-features li {
  background: rgba(255, 255, 255, .95);
}
body.ol-cine-bg .ol-pd-stat { box-shadow: 0 24px 50px -26px rgba(0, 0, 0, .6); }
body.ol-cine-bg .ol-pd-summary {
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .65);
}
body.ol-cine-bg .ol-pd-cta {
  border: 1px solid rgba(255, 255, 255, .12);
}
/* Footer, video arka planlı sayfalarda da anasayfadakiyle birebir aynı:
   kendi koyu görseli ve karartmasıyla görünür (özel kural yok). */

/* Video arka planlı sayfalarda banner şeffaf: video ilk pikselden itibaren
   tek kesintisiz sahne olur (başlık okunurluğunu shade katmanı sağlar) */
body.ol-cine-bg .page-header { background: transparent !important; }
body.ol-cine-bg .page-header .bg-img,
body.ol-cine-bg .page-header .overlay { display: none; }

/* --- Okunurluk: sol içerik cam paneli (özet kartıyla aynı tasarım dili) --- */
body.ol-cine-bg .ol-pd-panel {
  background: linear-gradient(165deg, rgba(4, 22, 31, .74) 0%, rgba(6, 39, 58, .52) 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  padding: 36px 38px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
body.ol-cine-bg .ol-pd-panel p { color: #dbe5eb; }
body.ol-cine-bg .ol-pd-h { text-shadow: 0 2px 18px rgba(0, 0, 0, .5); }
body.ol-cine-bg .page-header .title,
body.ol-cine-bg .page-header .sub-title { text-shadow: 0 3px 22px rgba(0, 0, 0, .55); }
/* panel içindeki özellik kartları hafif saydam beyaz kalsın */
body.ol-cine-bg .ol-pd-panel .ol-pd-features li { background: rgba(255, 255, 255, .96); }
@media (max-width: 767.98px) {
  body.ol-cine-bg .ol-pd-panel { padding: 24px 20px; }
}

/* Proje detay CTA bandındaki telefon numarası: marka turuncusu
   (yalnızca normal durum; hover şablondaki gibi BEYAZ kalır) */
.ol-pd-cta .tl-primary-btn {
  color: #eb9b6a !important;
}
.ol-pd-cta .tl-primary-btn:hover {
  color: var(--tl-color-common-white) !important;
}
