/*
 * Oto Tamir Teması — style.css v2
 * Açık tema: beyaz zemin, #ffcc00 sarı vurgu, koyu gri yazı.
 * BEM metodolojisi · mobile-first · WCAG 2.1 AA
 *
 * İÇİNDEKİLER
 * 1.  Değişkenler & Sistem
 * 2.  Reset & Base
 * 3.  Container & Grid
 * 4.  Top Bar
 * 5.  Header & Nav
 * 6.  Mobil Nav
 * 7.  Hero
 * 8.  Butonlar
 * 9.  Section Ortak
 * 10. Servis Kartları
 * 11. Neden Biz
 * 12. Süreç Adımları
 * 13. Sayaç / Stats Banner
 * 14. Referanslar / Testimonial
 * 15. Blog Kartları
 * 16. CTA Section
 * 17. Breadcrumb & Page Hero
 * 18. Blog & İçerik Detayı
 * 19. Footer
 * 20. İletişim Sayfası
 * 21. SSS / Accordion
 * 22. Formlar
 * 23. Sayfalama & Etiketler
 * 24. Sidebar
 * 25. Marka Şeridi
 * 26. Yüzen Elemanlar
 * 27. Utility & Spacing
 * 28. Animasyonlar
 * 29. Responsive
 * 30. Print
 */

/* ═══════════════════════════════════════════════════════════════════════════
   1. DEĞİŞKENLER & SİSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* ── Renk Sistemi ────────────────────────────────────────────────────── */
  /* Zemin renkleri */
  --ot-bg:        #f8f9fa;   /* Sayfa genel zemini */
  --ot-bg-alt:    #f1f4f8;   /* Alternatif section zemini */
  --ot-surface:   #ffffff;   /* Kart, modal, input zemini */
  --ot-surface-2: #eef2f7;   /* Hover / subtle bg */

  /* Yazı renkleri */
  --ot-text:      #1a202c;   /* Birincil metin */
  --ot-text-2:    #4a5568;   /* İkincil metin */
  --ot-text-3:    #718096;   /* Soluk / placeholder metin */
  --ot-text-inv:  #ffffff;   /* Koyu zemin üstü metin */

  /* Vurgu renkleri */
  /* Primary renk (tema tarafından override edilir) */
  --ot-primary:        #ffcc00;
  --ot-primary-dark:   #e6b800;
  --ot-primary-light:  #fff8cc;
  --ot-primary-text:   #92600a;
  --ot-primary-rgb:    255,204,0;   /* rgba() için */
  --ot-on-primary:     #1a202c;     /* Primary zemin üstü metin */
  /* Geriye dönük uyumluluk aliasları */
  --ot-yellow:        var(--ot-primary);
  --ot-yellow-dark:   var(--ot-primary-dark);
  --ot-yellow-light:  var(--ot-primary-light);
  --ot-yellow-text:   var(--ot-primary-text);

  /* Kenar & ayraç */
  --ot-border:     #e2e8f0;
  --ot-border-2:   #cbd5e0;

  /* Durum renkleri */
  --ot-red:    #e53e3e;
  --ot-green:  #38a169;
  --ot-blue:   #3182ce;

  /* ── Tipografi ───────────────────────────────────────────────────────── */
  --ot-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Yazı boyutu skalası (type scale 1.25) */
  --ot-text-xs:   0.75rem;     /* 12px */
  --ot-text-sm:   0.875rem;    /* 14px */
  --ot-text-base: 1rem;        /* 16px */
  --ot-text-lg:   1.125rem;    /* 18px */
  --ot-text-xl:   1.25rem;     /* 20px */
  --ot-text-2xl:  1.5rem;      /* 24px */
  --ot-text-3xl:  1.875rem;    /* 30px */
  --ot-text-4xl:  2.25rem;     /* 36px */
  --ot-text-5xl:  3rem;        /* 48px */
  --ot-text-6xl:  3.75rem;     /* 60px */

  /* Satır aralıkları */
  --ot-leading-tight:  1.25;
  --ot-leading-snug:   1.375;
  --ot-leading-normal: 1.6;
  --ot-leading-relaxed:1.75;

  /* ── Boşluk Sistemi (4px base × 2 scale) ────────────────────────────── */
  --ot-space-1:  0.25rem;   /*  4px */
  --ot-space-2:  0.5rem;    /*  8px */
  --ot-space-3:  0.75rem;   /* 12px */
  --ot-space-4:  1rem;      /* 16px */
  --ot-space-5:  1.25rem;   /* 20px */
  --ot-space-6:  1.5rem;    /* 24px */
  --ot-space-8:  2rem;      /* 32px */
  --ot-space-10: 2.5rem;    /* 40px */
  --ot-space-12: 3rem;      /* 48px */
  --ot-space-16: 4rem;      /* 64px */
  --ot-space-20: 5rem;      /* 80px */
  --ot-space-24: 6rem;      /* 96px */
  --ot-space-32: 8rem;      /* 128px */

  /* Section dikey padding */
  --ot-section-sm: 1.75rem;   /*  28px — sıkışık bölümler */
  --ot-section-md: 2.5rem;    /*  40px — standart bölüm  */
  --ot-section-lg: 3.5rem;    /*  56px — CTA / özel      */

  /* ── Köşe Yuvarlaklığı ───────────────────────────────────────────────── */
  --ot-radius-xs: 0.2rem;
  --ot-radius-sm: 0.375rem;
  --ot-radius:    0.5rem;
  --ot-radius-md: 0.625rem;
  --ot-radius-lg: 0.75rem;
  --ot-radius-xl: 1rem;
  --ot-radius-2xl:1.5rem;
  --ot-radius-full: 9999px;

  /* ── Gölgeler ────────────────────────────────────────────────────────── */
  --ot-shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --ot-shadow-sm: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --ot-shadow:    0 4px 8px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --ot-shadow-md: 0 8px 16px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.05);
  --ot-shadow-lg: 0 16px 32px rgba(0,0,0,0.1), 0 6px 12px rgba(0,0,0,0.06);
  --ot-shadow-xl: 0 24px 48px rgba(0,0,0,0.12),0 8px 16px rgba(0,0,0,0.07);
  --ot-shadow-yellow: 0 4px 20px rgba(var(--ot-primary-rgb),0.5);
  --ot-shadow-primary: 0 4px 20px rgba(var(--ot-primary-rgb),0.35);

  /* ── Geçişler ────────────────────────────────────────────────────────── */
  --ot-ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ot-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ot-dur-100:  100ms;
  --ot-dur-150:  150ms;
  --ot-dur-200:  200ms;
  --ot-dur-300:  300ms;
  --ot-dur-500:  500ms;

  /* ── Layout ──────────────────────────────────────────────────────────── */
  --ot-container:   1240px;
  --ot-top-bar-h:   0px;   /* Topbar aktif değilse 0, aktifse 40px yap */
  --ot-ann-h:       0px;   /* Duyuru bandı yüksekliği (JS ile set edilir) */
  --ot-header-h:    80px;
  --ot-total-top:   calc(var(--ot-top-bar-h) + var(--ot-header-h));
  --ot-z-topbar:    1100;
  --ot-z-header:    1000;
  --ot-z-mobile:    999;
  --ot-z-overlay:   998;
  --ot-z-float:     100;
  --ot-z-toast:     9000;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ot-font);
  font-size: var(--ot-text-base);
  line-height: var(--ot-leading-normal);
  color: var(--ot-text);
  background-color: var(--ot-bg);
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* Core CMS varsayılan stillerini sıfırla */
body > .header, body > main, body > .footer { all: unset; display: block; }
.header, .footer, .section, .container { all: unset !important; }

img, video, picture { max-width: 100%; height: auto; display: block; }

svg {
  overflow: hidden;
  vertical-align: middle;
  flex-shrink: 0;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; transition: color var(--ot-dur-150); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: var(--ot-leading-tight); font-weight: 700; }
p { line-height: var(--ot-leading-relaxed); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--ot-space-4);
  z-index: 99999;
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  font-weight: 700;
  font-size: var(--ot-text-sm);
  padding: var(--ot-space-3) var(--ot-space-6);
  border-radius: var(--ot-radius);
  transition: top var(--ot-dur-150);
}
.skip-link:focus { top: var(--ot-space-4); }

/* ═══════════════════════════════════════════════════════════════════════════
   3. CONTAINER & GRİD
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-container {
  width: 100%;
  max-width: var(--ot-container);
  margin-inline: auto;
  padding-inline: var(--ot-space-4);
}
@media (min-width: 640px)  { .ot-container { padding-inline: var(--ot-space-6); } }
@media (min-width: 1024px) { .ot-container { padding-inline: var(--ot-space-10); } }

.ot-grid {
  display: grid;
  gap: var(--ot-space-6);
}
.ot-grid--2  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ot-grid--3  { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ot-grid--4  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 768px) {
  .ot-grid--2  { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ot-grid--3  { grid-template-columns: repeat(3, 1fr); }
  .ot-grid--4  { grid-template-columns: repeat(4, 1fr); }
}

/* Sidebar layout — iki class adı da desteklenir */
.ot-layout-sidebar,
.ot-layout--sidebar {
  display: grid;
  gap: var(--ot-space-10);
  align-items: start;
}
@media (min-width: 1024px) {
  .ot-layout-sidebar,
  .ot-layout--sidebar { grid-template-columns: 1fr 300px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. TOP BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--ot-z-topbar);
  height: var(--ot-top-bar-h);
  background: var(--ot-text);
  color: rgba(255,255,255,0.85);
  font-size: var(--ot-text-xs);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.ot-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ot-space-4);
  width: 100%;
}

.ot-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--ot-space-5);
  flex-wrap: wrap;
}

.ot-topbar__item {
  display: flex;
  align-items: center;
  gap: var(--ot-space-2);
  white-space: nowrap;
}
.ot-topbar__item svg { width: 13px; height: 13px; color: var(--ot-yellow); flex-shrink: 0; }
.ot-topbar__item a { color: inherit; transition: color var(--ot-dur-150); }
.ot-topbar__item a:hover { color: var(--ot-yellow); }

.ot-topbar__right {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  flex-shrink: 0;
}

.ot-topbar__social {
  display: flex;
  align-items: center;
  gap: var(--ot-space-2);
}
.ot-topbar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--ot-radius-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--ot-dur-150), background var(--ot-dur-150);
}
.ot-topbar__social a:hover { color: var(--ot-yellow); background: rgba(255,255,255,0.08); }
.ot-topbar__social svg { width: 14px; height: 14px; }

.ot-topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-1);
  padding: 3px var(--ot-space-3);
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  font-weight: 700;
  border-radius: var(--ot-radius-sm);
  font-size: var(--ot-text-xs);
  transition: background var(--ot-dur-150);
}
.ot-topbar__cta:hover { background: var(--ot-primary-dark); color: var(--ot-on-primary); }

/* Mobile: bazı elemanları gizle */
@media (max-width: 639px) {
  .ot-topbar__item--hours { display: none; }
  .ot-topbar__item--email  { display: none; }
}
@media (max-width: 767px) {
  .ot-topbar__social { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. HEADER & NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-header {
  position: fixed;
  top: calc(var(--ot-top-bar-h) + var(--ot-ann-h, 0px));
  left: 0;
  right: 0;
  z-index: var(--ot-z-header);
  height: var(--ot-header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ot-border);
  transition: box-shadow var(--ot-dur-300) var(--ot-ease),
              border-color var(--ot-dur-300) var(--ot-ease);
}
/* Header içindeki randevu butonu — HTML'de .ot-btn-appoint classı kullanılıyor */


/* ── Dark Header ──────────────────────────────────────────────────────────── */
.ot-header--dark {
  background: #1a202c;
  border-bottom-color: rgba(255,255,255,.08);
}
.ot-header--dark.ot-header--scrolled {
  background: rgba(17, 24, 39, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  border-bottom-color: rgba(255,255,255,.06);
}

/* ── Split Header — topbar yüksekliği otomatik, header aşağı iner ─────────── */
.ot-header--split {
  height: auto;
  overflow: visible;
}
.ot-header--split > .ot-container {
  height: auto;
  display: block;
}

/* ── Branded Header — çok katmanlı, auto yükseklik ─────────────────────────── */
.ot-header--branded {
  height: auto;
  overflow: visible;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
.ot-header--branded > .ot-container {
  height: auto;
  display: block;
  padding: 0;
  max-width: 100%;
}
/* Topbar e-posta mobilde gizle */
@media (max-width: 639px) {
  .ot-topbar-email-hide { display: none !important; }
}

.ot-header--scrolled {
  box-shadow: var(--ot-shadow-md);
  border-bottom-color: var(--ot-border-2);
}

.ot-header > .ot-container {
  height: 100%;
}

.ot-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--ot-space-6);
}

/* Logo */
.ot-header__logo {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.ot-header__logo-icon {
  width: 46px;
  height: 46px;
  background: var(--ot-yellow);
  border-radius: var(--ot-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ot-text);
  flex-shrink: 0;
  box-shadow: var(--ot-shadow-sm);
}
.ot-header__logo-icon svg { width: 24px; height: 24px; }

.ot-header__logo-text { line-height: var(--ot-leading-tight); }

.ot-header__logo-name {
  display: block;
  font-size: var(--ot-text-xl);
  font-weight: 800;
  color: var(--ot-text);
  letter-spacing: -0.02em;
}
.ot-header__logo-name em {
  font-style: normal;
  color: var(--ot-yellow-text);
}

.ot-header__logo-tagline {
  display: block;
  font-size: var(--ot-text-xs);
  color: var(--ot-text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* Ana nav */
.ot-nav {
  display: none;
  flex: 1;
  align-items: center;
  gap: var(--ot-space-1);
}
@media (min-width: 1024px) { .ot-nav { display: flex; } }

.ot-nav__link {
  position: relative;
  padding: 13px var(--ot-space-4);
  font-size: var(--ot-text-sm);
  font-weight: 600;
  color: var(--ot-text-2);
  border-radius: var(--ot-radius);
  transition: color var(--ot-dur-150), background var(--ot-dur-150);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.ot-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--ot-space-3);
  right: var(--ot-space-3);
  height: 2px;
  background: var(--ot-yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--ot-dur-200) var(--ot-ease);
}
.ot-nav__link:hover { color: var(--ot-text); background: var(--ot-surface-2); }
.ot-nav__link--active { color: var(--ot-text); }
.ot-nav__link--active::after,
.ot-nav__link:hover::after { transform: scaleX(1); }

/* ── Dropdown menü ───────────────────────────────────────────────────────────── */
.ot-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ot-has-dropdown > a.ot-nav__link { display: inline-flex; align-items: center; gap: 4px; }
.ot-dd-chevron { transition: transform var(--ot-dur-200) var(--ot-ease); flex-shrink: 0; opacity: .6; }
.ot-has-dropdown:hover .ot-dd-chevron { transform: rotate(180deg); }
.ot-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: var(--ot-bg, #fff);
  border: 1.5px solid var(--ot-border, #e5e7eb);
  border-radius: var(--ot-radius-lg, 10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--ot-dur-150) var(--ot-ease), transform var(--ot-dur-150) var(--ot-ease), visibility var(--ot-dur-150);
}
.ot-has-dropdown:hover .ot-dropdown,
.ot-has-dropdown:focus-within .ot-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ot-dropdown__item {
  display: block;
  padding: 9px 18px;
  font-size: var(--ot-text-sm);
  font-weight: 500;
  color: var(--ot-text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ot-dur-100), color var(--ot-dur-100);
}
.ot-dropdown__item:hover,
.ot-dropdown__item--active { background: var(--ot-surface-2, #f3f4f6); color: var(--ot-text); }
.ot-dropdown__item--active { font-weight: 700; }

/* Geniş dropdown — 2 sütun (8+ öğe) */
.ot-dropdown--wide {
  min-width: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 0;
}
.ot-dropdown--wide .ot-dropdown__item {
  white-space: nowrap;
}
.otb-nav .ot-dropdown--wide { min-width: 780px; }

/* Branded header dropdown (dark nav bar) */
.otb-nav__link.ot-has-sub { display: inline-flex; align-items: center; gap: 4px; }
.otb-nav .ot-has-dropdown { position: relative; display: inline-flex; align-items: stretch; }
.otb-nav .ot-dropdown { top: 100%; background: #1e293b; border-color: rgba(255,255,255,.12); }
.otb-nav .ot-dropdown__item { color: rgba(255,255,255,.72); }
.otb-nav .ot-dropdown__item:hover,
.otb-nav .ot-dropdown__item--active { background: rgba(255,255,255,.08); color: #fff; }

/* ── Yeni Mobil Navigasyon ─────────────────────────────────────────────── */
.ot-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ot-border);
  flex-shrink: 0;
}
.ot-mobile-nav__brand { text-decoration: none; display: flex; align-items: center; }
.ot-mobile-nav__brand-name { font-size: 1.1rem; font-weight: 800; color: var(--ot-text); }
.ot-mobile-nav__close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ot-bg-alt); border: 1px solid var(--ot-border);
  color: var(--ot-text-2); cursor: pointer;
  transition: background .15s, color .15s;
}
.ot-mobile-nav__close:hover { background: var(--ot-border); color: var(--ot-text); }

.ot-mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Tek bağlantı öğesi */
.ot-mn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ot-text);
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.ot-mn-item:hover { background: var(--ot-bg-alt); }
.ot-mn-item--active { color: var(--ot-primary-text); background: var(--ot-primary-light); }

/* Üst menü — alt öğeli (accordion) */
.ot-mn-group { border-radius: 10px; }
.ot-mn-item--parent {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  border-radius: 10px;
}
.ot-mn-item--parent[aria-expanded="true"] { background: var(--ot-bg-alt); border-radius: 10px 10px 0 0; }
.ot-mn-chevron { transition: transform .25s; flex-shrink: 0; color: var(--ot-text-3); }
.ot-mn-item--parent[aria-expanded="true"] .ot-mn-chevron { transform: rotate(180deg); }

/* Alt menü paneli */
.ot-mn-sub {
  display: none;
  background: var(--ot-bg-alt);
  border-radius: 0 0 10px 10px;
  padding: 8px 10px 12px;
}
.ot-mn-sub.is-open { display: block; }

/* Sub başlık: kategori adı + tümünü gör */
.ot-mn-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ot-border);
}
.ot-mn-group__title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ot-text-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ot-mn-group__all {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ot-primary-text);
  text-decoration: none;
  white-space: nowrap;
}

/* Alt öğe grid */
.ot-mn-sub__grid { display: flex; flex-direction: column; gap: 2px; }
.ot-mn-sub__grid--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

.ot-mn-sub__link {
  display: block;
  padding: 8px 10px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--ot-text-2);
  text-decoration: none;
  border-radius: 7px;
  transition: background .12s, color .12s;
  line-height: 1.35;
}
.ot-mn-sub__link:hover { background: var(--ot-surface); color: var(--ot-text); }
.ot-mn-sub__link--active { background: var(--ot-primary-light); color: var(--ot-primary-text); font-weight: 600; }

/* Footer */
.ot-mobile-nav__footer {
  flex-shrink: 0;
  padding: 16px 20px;
  border-top: 1px solid var(--ot-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--ot-bg);
}
.ot-mn-footer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--ot-bg-alt);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ot-text);
  text-decoration: none;
  border: 1px solid var(--ot-border);
}
.ot-mn-footer__phone svg { color: var(--ot-primary-text); }

/* Header sağ */
.ot-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  flex-shrink: 0;
}

.ot-header__phone {
  display: none;
  align-items: center;
  gap: var(--ot-space-2);
  padding: 13px var(--ot-space-4);
  font-size: var(--ot-text-sm);
  font-weight: 700;
  color: var(--ot-text);
  border-radius: var(--ot-radius);
  transition: background var(--ot-dur-150);
}
@media (min-width: 768px) { .ot-header__phone { display: flex; } }
.ot-header__phone:hover { background: var(--ot-surface-2); }
.ot-header__phone svg { width: 16px; height: 16px; color: var(--ot-yellow-text); flex-shrink: 0; }

.ot-header__appoint,
.ot-btn-appoint {
  display: none;
  padding: 13px var(--ot-space-6);
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  font-weight: 700;
  font-size: var(--ot-text-sm);
  border-radius: var(--ot-radius);
  transition: background var(--ot-dur-150), transform var(--ot-dur-150), box-shadow var(--ot-dur-150);
  white-space: nowrap;
  box-shadow: var(--ot-shadow-sm);
  text-decoration: none;
}
@media (min-width: 768px) {
  .ot-header__appoint,
  .ot-btn-appoint { display: block; }
}
.ot-header__appoint:hover,
.ot-btn-appoint:hover {
  background: var(--ot-yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--ot-shadow-yellow);
  color: var(--ot-text);
}

/* Hamburger */
.ot-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--ot-surface-2);
  border: 1px solid var(--ot-border);
  border-radius: var(--ot-radius);
  flex-shrink: 0;
  transition: border-color var(--ot-dur-150), background var(--ot-dur-150);
}
@media (min-width: 1024px) { .ot-hamburger { display: none; } }
.ot-hamburger:hover { border-color: var(--ot-yellow); background: var(--ot-yellow-light); }

.ot-hamburger__line {
  width: 18px;
  height: 2px;
  background: var(--ot-text);
  border-radius: 2px;
  transition: transform var(--ot-dur-300) var(--ot-ease), opacity var(--ot-dur-300);
}
.ot-hamburger.is-open .ot-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ot-hamburger.is-open .ot-hamburger__line:nth-child(2) { opacity: 0; }
.ot-hamburger.is-open .ot-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   6. MOBİL NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-mobile-nav {
  display: none;
  position: fixed;
  top: var(--ot-total-top);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--ot-z-mobile);
  background: var(--ot-bg, #fff);
  border-top: 3px solid var(--ot-primary, #ffcc00);
  flex-direction: column;
  overflow: hidden;
}
.ot-mobile-nav.is-open { display: flex; }

.ot-mobile-nav__contact-item {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
}
.ot-mobile-nav__contact-item svg { width: 16px; height: 16px; color: var(--ot-yellow-text); }

/* ═══════════════════════════════════════════════════════════════════════════
   7. HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--ot-total-top);
  background-color: var(--ot-bg-alt);
  overflow: hidden;
}

.ot-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(var(--ot-primary-rgb),0.18) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 5%  80%, rgba(var(--ot-primary-rgb),0.08) 0%, transparent 60%),
    linear-gradient(160deg, #f1f4f8 0%, #f8f9fa 50%, #f0f4ff 100%);
  pointer-events: none;
}

.ot-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.ot-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: var(--ot-space-10);
  align-items: center;
  padding-block: var(--ot-space-10);
}
@media (min-width: 1024px) {
  .ot-hero__inner { grid-template-columns: 1fr 1fr; padding-block: var(--ot-space-10) var(--ot-space-12); }
}

.ot-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-2);
  padding: var(--ot-space-2) var(--ot-space-4);
  background: var(--ot-yellow-light);
  border: 1.5px solid rgba(var(--ot-primary-rgb),0.5);
  border-radius: var(--ot-radius-full);
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--ot-space-5);
}
.ot-hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--ot-yellow);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.ot-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-5);
}
.ot-hero__title-accent {
  color: var(--ot-yellow-text);
  position: relative;
}
.ot-hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ot-yellow);
  border-radius: 2px;
  opacity: 0.5;
}

.ot-hero__desc {
  font-size: var(--ot-text-lg);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-8);
  max-width: 520px;
}

.ot-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-3);
  margin-bottom: var(--ot-space-10);
}

.ot-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-6) var(--ot-space-10);
  padding-top: var(--ot-space-8);
  border-top: 2px solid var(--ot-border);
}

.ot-hero__stat-num {
  font-size: var(--ot-text-3xl);
  font-weight: 900;
  color: var(--ot-yellow-text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.ot-hero__stat-label {
  font-size: var(--ot-text-xs);
  color: var(--ot-text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--ot-space-1);
}

/* Hero görsel */
.ot-hero__visual { display: none; position: relative; }
@media (min-width: 1024px) { .ot-hero__visual { display: block; } }

.ot-hero__img-wrap {
  position: relative;
  border-radius: var(--ot-radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ot-surface);
  border: 2px solid var(--ot-border);
  box-shadow: var(--ot-shadow-xl);
}
.ot-hero__img { width: 100%; height: 100%; object-fit: cover; }

.ot-hero__img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--ot-space-3);
  color: var(--ot-text-3);
  font-size: var(--ot-text-sm);
}
.ot-hero__img-placeholder svg { width: 56px; height: 56px; opacity: 0.35; }

.ot-hero__badge-float {
  position: absolute;
  bottom: var(--ot-space-6);
  right: var(--ot-space-6);
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-4) var(--ot-space-5);
  box-shadow: var(--ot-shadow-primary);
  text-align: center;
  min-width: 110px;
}
.ot-hero__badge-float-num {
  font-size: var(--ot-text-2xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ot-on-primary);
}
.ot-hero__badge-float-text {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
  color: var(--ot-text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   7b. HERO VARYANTLARI — Ortak yardımcılar
   ═══════════════════════════════════════════════════════════════════════════ */

/* Işık renginde badge (koyu arka planlar için) */
.ot-hero__badge--light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.ot-hero__badge--light::before { background: var(--ot-yellow); }

/* Koyu arka planlarda açık başlık */
.ot-hero__title--light { color: #fff; }

/* Koyu arka planlarda açık açıklama */
.ot-hero__desc--light { color: rgba(255,255,255,0.75); }

/* Ortalanmış aksiyon satırı */
.ot-hero__actions--center { justify-content: center; }

/* Açık ghost buton (koyu arka plan) */
.ot-btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.ot-btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Beyaz dolgu buton (koyu arka plan) */
.ot-btn--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.ot-btn--light:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Koyu arka planlarda stat numarası */
.ot-hero__stat-num--light  { color: var(--ot-yellow); }
.ot-hero__stat-label--light { color: rgba(255,255,255,0.6); }

/* ── VARYANT 2: Tam Ekran Slayt ──────────────────────────────────────────── */
.ot-hero--slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--ot-total-top);
  overflow: hidden;
}

.ot-slider__track {
  position: absolute;
  inset: 0;
}
.ot-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.ot-slider__slide--active { opacity: 1; }

.ot-slider__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.ot-hero--slider__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--ot-space-16);
}

.ot-hero--slider__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-6) var(--ot-space-10);
  padding-top: var(--ot-space-8);
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Slayt kontrolleri */
.ot-slider__controls {
  position: absolute;
  bottom: var(--ot-space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--ot-space-4);
}
.ot-slider__prev,
.ot-slider__next {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  color: white;
  flex-shrink: 0;
}
.ot-slider__prev svg, .ot-slider__next svg { width: 18px; height: 18px; }
.ot-slider__prev:hover, .ot-slider__next:hover { background: rgba(255,255,255,0.3); }

.ot-slider__dots { display: flex; gap: 8px; align-items: center; }
.ot-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: all .2s; padding: 0;
}
.ot-slider__dot--active {
  background: var(--ot-yellow);
  width: 22px;
  border-radius: 4px;
}

.ot-slider__label-wrap {
  position: absolute;
  bottom: var(--ot-space-8);
  right: var(--ot-space-8);
  z-index: 3;
}
.ot-slider__label {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── VARYANT 3: Karanlık Minimal ─────────────────────────────────────────── */
.ot-hero--dark {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--ot-total-top);
  background: #0a0f1e;
  overflow: hidden;
}

.ot-hero--dark__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  gap: 24%;
}
.ot-hero--dark__line {
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.04);
  height: 100%;
}

.ot-hero--dark__glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(var(--ot-primary-rgb),0.18) 0%, transparent 65%);
  pointer-events: none;
}

.ot-hero--dark__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: var(--ot-space-16) var(--ot-space-12);
}

.ot-hero--dark__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--ot-space-5);
}
.ot-hero--dark__title-light { color: #fff; }

.ot-hero--dark__stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: var(--ot-space-12);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.ot-hero--dark__stat {
  padding: var(--ot-space-5) var(--ot-space-8);
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  text-align: center;
}
.ot-hero--dark__stat:last-child { border-right: none; }

.ot-hero--dark__img-strip {
  display: flex;
  gap: 10px;
  margin-top: var(--ot-space-10);
  justify-content: center;
}
.ot-hero--dark__img-strip img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.5;
  filter: grayscale(60%);
  transition: opacity .3s, filter .3s;
}
.ot-hero--dark__img-strip img:hover { opacity: 1; filter: none; }
@media (max-width: 640px) {
  .ot-hero--dark__img-strip { display: none; }
}

/* ── VARYANT 4: Bölünmüş Ekran ───────────────────────────────────────────── */
.ot-hero--split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}
@media (min-width: 900px) {
  .ot-hero--split { grid-template-columns: 1fr 1fr; }
}

.ot-hero--split__left {
  background: #0a0f1e;
  display: flex;
  align-items: center;
  padding: calc(var(--ot-total-top) + var(--ot-space-10)) var(--ot-space-10) var(--ot-space-10);
  position: relative;
  overflow: hidden;
}
.ot-hero--split__left::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--ot-primary-rgb),0.15) 0%, transparent 65%);
  pointer-events: none;
}
.ot-hero--split__left-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.ot-hero--split__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-4) var(--ot-space-8);
  padding-top: var(--ot-space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--ot-space-8);
}
.ot-hero--split__stat { text-align: left; }

.ot-hero--split__list {
  list-style: none;
  padding: 0;
  margin: var(--ot-space-8) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-3);
}
.ot-hero--split__list li {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  font-size: var(--ot-text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ot-hero--split__list svg {
  width: 16px; height: 16px;
  color: var(--ot-yellow);
  flex-shrink: 0;
}

.ot-hero--split__right {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}
@media (min-width: 900px) { .ot-hero--split__right { min-height: 100vh; } }

.ot-hero--split__mosaic {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  height: 100%;
  padding: 6px;
  background: #0a0f1e;
}
.ot-hero--split__mosaic-main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
}
.ot-split-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.ot-split-img--active { opacity: 1; }

.ot-hero--split__mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 130px;
}
.ot-hero--split__mosaic-sm {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
.ot-hero--split__mosaic-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ot-hero--split__badge-float {
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-4) var(--ot-space-4);
  text-align: center;
}

/* ── VARYANT 5: Geniş Görsel Overlay ────────────────────────────────────── */
.ot-hero--gradient {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--ot-total-top);
  overflow: hidden;
}

.ot-hero--gradient__bg-wrap {
  position: absolute;
  inset: 0;
}
.ot-hero--gradient__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: kenburns 12s ease-in-out infinite alternate;
}
.ot-hero--gradient__bg--active { opacity: 1; }

@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%,-2%); }
}

.ot-hero--gradient__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.ot-hero--gradient__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--ot-space-6);
  padding-block: var(--ot-space-12);
  width: 100%;
}

.ot-hero--gradient__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--ot-radius-2xl);
  padding: var(--ot-space-10) var(--ot-space-10);
  max-width: 740px;
  width: 100%;
}

.ot-hero--gradient__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: var(--ot-space-4);
}
.ot-hero--gradient__desc {
  font-size: var(--ot-text-lg);
  color: rgba(255,255,255,0.8);
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ot-hero--gradient__stat-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-4) var(--ot-space-8);
  gap: 0;
  max-width: 740px;
  width: 100%;
}
.ot-hero--gradient__stat { padding: var(--ot-space-3) var(--ot-space-6); text-align: center; }
.ot-hero--gradient__stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}

.ot-hero--gradient__nav {
  position: absolute;
  bottom: var(--ot-space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. BUTONLAR
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ot-space-2);
  padding: var(--ot-space-3) var(--ot-space-7);
  font-weight: 700;
  font-size: var(--ot-text-base);
  font-family: var(--ot-font);
  border-radius: var(--ot-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ot-dur-150) var(--ot-ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ot-btn:focus-visible { outline: 3px solid var(--ot-yellow); outline-offset: 3px; }
.ot-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Birincil: tema primary rengi */
.ot-btn--primary {
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  border-color: var(--ot-primary);
  box-shadow: var(--ot-shadow-sm);
}
.ot-btn--primary:hover {
  background: var(--ot-primary-dark);
  border-color: var(--ot-primary-dark);
  color: var(--ot-on-primary);
  transform: translateY(-2px);
  box-shadow: var(--ot-shadow-primary);
}
.ot-btn--primary:active { transform: translateY(0); }

/* İkincil: outline */
.ot-btn--outline {
  background: transparent;
  color: var(--ot-text-2);
  border-color: var(--ot-border-2);
}
.ot-btn--outline:hover {
  border-color: var(--ot-yellow);
  color: var(--ot-yellow-text);
  background: var(--ot-yellow-light);
}

/* Hayalet */
.ot-btn--ghost {
  background: transparent;
  color: var(--ot-text-2);
  border-color: transparent;
  padding-inline: var(--ot-space-3);
}
.ot-btn--ghost:hover { color: var(--ot-yellow-text); background: var(--ot-surface-2); }

/* CTA (sarı zemin üzerinde koyu) */
.ot-btn--dark {
  background: var(--ot-text);
  color: var(--ot-yellow);
  border-color: var(--ot-text);
}
.ot-btn--dark:hover {
  background: #2d3748;
  border-color: #2d3748;
  color: var(--ot-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CTA outline (sarı zemin üzerinde) */
.ot-btn--outline-dark {
  background: transparent;
  color: var(--ot-text);
  border-color: rgba(0,0,0,0.25);
}
.ot-btn--outline-dark:hover { background: rgba(0,0,0,0.07); border-color: var(--ot-text); }

/* CTA palette-aware butonlar — primary renk değişince otomatik uyum sağlar */
.ot-btn--cta-solid {
  background: var(--ot-on-primary, #1a202c);
  color: var(--ot-primary, #ffcc00);
  border-color: var(--ot-on-primary, #1a202c);
}
.ot-btn--cta-solid:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ot-btn--cta-outline {
  background: transparent;
  color: var(--ot-on-primary, #1a202c);
  border-color: var(--ot-on-primary, #1a202c);
}
.ot-btn--cta-outline:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* Boyutlar */
.ot-btn--xs  { padding: var(--ot-space-1) var(--ot-space-3);  font-size: var(--ot-text-xs); }
.ot-btn--sm  { padding: var(--ot-space-2) var(--ot-space-5);  font-size: var(--ot-text-sm); }
.ot-btn--lg  { padding: var(--ot-space-4) var(--ot-space-10); font-size: var(--ot-text-lg); }
.ot-btn--xl  { padding: var(--ot-space-5) var(--ot-space-12); font-size: var(--ot-text-xl); }
.ot-btn--block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   9. SECTİON ORTAK
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-section       { padding-block: var(--ot-section-md); }
.ot-section--sm   { padding-block: var(--ot-section-sm); }
.ot-section--lg   { padding-block: var(--ot-section-lg); }
.ot-section--alt  { background: var(--ot-bg-alt); }
.ot-section--white { background: var(--ot-surface); }
.ot-section--yellow { background: var(--ot-yellow); }

.ot-section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--ot-space-8);
}

.ot-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-2);
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--ot-space-4);
}
.ot-section__eyebrow::before,
.ot-section__eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ot-yellow);
  border-radius: 2px;
}

.ot-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: var(--ot-leading-tight);
  color: var(--ot-text);
  margin-bottom: var(--ot-space-4);
}

.ot-section__desc {
  font-size: var(--ot-text-lg);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════
   17. BREADCRUMB & PAGE HERO (Kayıp CSS Geri Eklendi)
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-page-hero {
  padding-top: calc(var(--ot-total-top) + var(--ot-space-8));
  padding-bottom: var(--ot-space-4);
  background: var(--ot-bg);
}
.ot-page-hero__eyebrow {
  font-size: var(--ot-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ot-primary-text);
  margin-bottom: var(--ot-space-2);
  letter-spacing: 0.05em;
}
.ot-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ot-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.ot-page-hero__desc {
  font-size: var(--ot-text-lg);
  color: var(--ot-text-2);
  margin-top: var(--ot-space-4);
}

.ot-breadcrumb {
  background: var(--ot-bg);
  border-bottom: 1px solid var(--ot-border);
  padding: var(--ot-space-3) 0 var(--ot-space-4);
}
.ot-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ot-space-2);
  font-size: var(--ot-text-xs);
  color: var(--ot-text-3);
  font-weight: 500;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ot-breadcrumb__item a {
  color: var(--ot-text-2);
  text-decoration: none;
  transition: color var(--ot-dur-150);
}
.ot-breadcrumb__item a:hover {
  color: var(--ot-primary-text);
}
.ot-breadcrumb__item--active {
  color: var(--ot-text);
  font-weight: 700;
}
.ot-breadcrumb__sep {
  margin-inline: var(--ot-space-1);
  color: var(--ot-border-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. SERVİS KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-service-card {
  position: relative;
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-8);
  transition: border-color var(--ot-dur-300) var(--ot-ease),
              transform   var(--ot-dur-300) var(--ot-ease),
              box-shadow  var(--ot-dur-300) var(--ot-ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ot-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ot-yellow), var(--ot-yellow-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ot-dur-300) var(--ot-ease);
}

.ot-service-card:hover {
  border-color: rgba(var(--ot-primary-rgb),0.5);
  transform: translateY(-5px);
  box-shadow: var(--ot-shadow-lg);
}
.ot-service-card:hover::before { transform: scaleX(1); }

.ot-service-card__header {
  display: flex;
  align-items: center;
  gap: var(--ot-space-4);
  margin-bottom: var(--ot-space-6);
}

.ot-service-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--ot-yellow-light);
  border: 1.5px solid rgba(var(--ot-primary-rgb),0.3);
  border-radius: var(--ot-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ot-yellow-text);
  transition: background var(--ot-dur-200), border-color var(--ot-dur-200);
}
.ot-service-card__icon svg { width: 26px; height: 26px; }

.ot-service-card:hover .ot-service-card__icon {
  background: var(--ot-primary);
  border-color: var(--ot-primary-dark);
  color: var(--ot-on-primary);
}

.ot-service-card__title {
  font-size: var(--ot-text-xl);
  font-weight: 700;
  color: var(--ot-text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ot-service-card__desc {
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-6);
  flex: 1;
}

.ot-service-card__title-link {
  color: inherit;
  text-decoration: none;
}
.ot-service-card__title-link:hover {
  text-decoration: underline;
}

.ot-service-card__img-link {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.ot-service-card__img-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ot-service-card__img-link:hover img { transform: scale(1.04); }

.ot-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-2);
  font-size: var(--ot-text-sm);
  font-weight: 700;
  color: var(--ot-yellow-text);
  margin-top: auto;
  text-decoration: none;
  transition: gap var(--ot-dur-150);
}
.ot-service-card__link:hover { gap: var(--ot-space-3); }
.ot-service-card__link svg { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════════════════════════════════
   11. NEDEN BİZ
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-why-grid {
  display: grid;
  gap: var(--ot-space-5);
}
@media (min-width: 640px)  { .ot-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ot-why-grid { grid-template-columns: repeat(4, 1fr); } }

.ot-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--ot-space-8) var(--ot-space-6);
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  transition: border-color var(--ot-dur-200), box-shadow var(--ot-dur-200), transform var(--ot-dur-200);
}
.ot-why-item:hover {
  border-color: rgba(var(--ot-primary-rgb),0.4);
  box-shadow: var(--ot-shadow-md);
  transform: translateY(-3px);
}

.ot-why-item__icon {
  width: 64px; height: 64px;
  background: var(--ot-yellow-light);
  border-radius: var(--ot-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--ot-space-5);
  color: var(--ot-yellow-text);
}
.ot-why-item__icon svg { width: 28px; height: 28px; }

.ot-why-item__title {
  font-size: var(--ot-text-base);
  font-weight: 700;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-2);
}
.ot-why-item__desc { font-size: var(--ot-text-sm); color: var(--ot-text-2); line-height: var(--ot-leading-relaxed); }

/* ═══════════════════════════════════════════════════════════════════════════
   12. SÜREÇ ADIMLARI
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-process {
  display: grid;
  gap: var(--ot-space-6);
  position: relative;
}
@media (min-width: 768px) {
  .ot-process { grid-template-columns: repeat(4, 1fr); }
  .ot-process::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--ot-yellow) 0%, var(--ot-yellow-dark) 100%);
    z-index: 0;
  }
}

.ot-process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--ot-space-6) var(--ot-space-4);
}

.ot-process__num {
  width: 64px; height: 64px;
  background: var(--ot-surface);
  border: 3px solid var(--ot-yellow);
  border-radius: var(--ot-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--ot-space-5);
  font-size: var(--ot-text-xl);
  font-weight: 900;
  color: var(--ot-yellow-text);
  box-shadow: var(--ot-shadow-sm);
}

.ot-process__title {
  font-size: var(--ot-text-base);
  font-weight: 700;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-2);
}
.ot-process__desc { font-size: var(--ot-text-sm); color: var(--ot-text-2); line-height: var(--ot-leading-relaxed); }

/* ═══════════════════════════════════════════════════════════════════════════
   13. STATS BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-stats-bar {
  padding-block: var(--ot-space-10);
  background: var(--ot-primary);
}

.ot-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ot-space-8);
}
@media (min-width: 768px)  { .ot-stats-bar__grid { grid-template-columns: repeat(4, 1fr); } }

.ot-stats-bar__item {
  text-align: center;
  padding: var(--ot-space-4);
  border-right: 1px solid rgba(var(--ot-primary-rgb),0.15);
}
.ot-stats-bar__item:last-child { border-right: none; }
@media (max-width: 767px) {
  .ot-stats-bar__item:nth-child(2n) { border-right: none; }
}

.ot-stats-bar__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--ot-on-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.ot-stats-bar__label {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: rgba(var(--ot-primary-rgb),0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--ot-space-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   14. REFERANSLAR / TESTİMONİAL
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-testimonial-grid {
  display: grid;
  gap: var(--ot-space-6);
}
@media (min-width: 768px)  { .ot-testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ot-testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.ot-testimonial {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-7);
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-5);
  transition: box-shadow var(--ot-dur-200), transform var(--ot-dur-200);
}
.ot-testimonial:hover { box-shadow: var(--ot-shadow-md); transform: translateY(-3px); }

.ot-testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--ot-yellow);
}
.ot-testimonial__stars svg { width: 16px; height: 16px; fill: currentColor; }

.ot-testimonial__quote {
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  font-style: italic;
  flex: 1;
}
.ot-testimonial__quote::before { content: '"'; color: var(--ot-yellow); font-size: 2em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; font-style: normal; }

.ot-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  padding-top: var(--ot-space-4);
  border-top: 1px solid var(--ot-border);
}

.ot-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: var(--ot-radius-full);
  overflow: hidden;
  background: var(--ot-yellow-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--ot-yellow-text);
  font-size: var(--ot-text-base);
  flex-shrink: 0;
}

.ot-testimonial__name  { font-size: var(--ot-text-sm); font-weight: 700; color: var(--ot-text); }
.ot-testimonial__role  { font-size: var(--ot-text-xs); color: var(--ot-text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════
   15. BLOG KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-blog-card {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ot-dur-300), transform var(--ot-dur-300), box-shadow var(--ot-dur-300);
}
.ot-blog-card:hover {
  border-color: rgba(var(--ot-primary-rgb),0.4);
  transform: translateY(-4px);
  box-shadow: var(--ot-shadow-lg);
}

.ot-blog-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ot-surface-2);
}
.ot-blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ot-dur-500) var(--ot-ease);
}
.ot-blog-card:hover .ot-blog-card__img { transform: scale(1.05); }

.ot-blog-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ot-border-2);
}
.ot-blog-card__img-placeholder svg { width: 48px; height: 48px; }

.ot-blog-card__body {
  padding: var(--ot-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ot-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ot-space-3);
  font-size: var(--ot-text-xs);
  color: var(--ot-text-3);
  margin-bottom: var(--ot-space-3);
}
.ot-blog-card__cat {
  color: var(--ot-yellow-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--ot-yellow-light);
  padding: 2px var(--ot-space-2);
  border-radius: var(--ot-radius-sm);
}

.ot-blog-card__title {
  font-size: var(--ot-text-lg);
  font-weight: 700;
  color: var(--ot-text);
  line-height: var(--ot-leading-snug);
  letter-spacing: -0.02em;
  margin-bottom: var(--ot-space-3);
  flex: 1;
}
.ot-blog-card__title a:hover { color: var(--ot-yellow-text); }

.ot-blog-card__excerpt {
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ot-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--ot-space-4);
  border-top: 1px solid var(--ot-border);
  margin-top: auto;
}

.ot-blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-1);
  font-size: var(--ot-text-sm);
  font-weight: 700;
  color: var(--ot-yellow-text);
  transition: gap var(--ot-dur-150);
}
.ot-blog-card__read:hover { gap: var(--ot-space-2); }
.ot-blog-card__read svg  { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   15b. BLOG FİLTRE TABLARI + CAMPAIGN KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Filtre Tab Satırı ─── */
.ot-blog-filter {
  padding: var(--ot-space-6) 0;
  border-bottom: 1.5px solid var(--ot-border);
  margin-bottom: var(--ot-space-10);
}
.ot-blog-filter__inner {
  display: flex;
  align-items: center;
  gap: var(--ot-space-3);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.ot-blog-filter__inner::-webkit-scrollbar { display: none; }

.ot-blog-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-2);
  white-space: nowrap;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--ot-border);
  color: var(--ot-text-2);
  background: transparent;
  text-decoration: none;
  transition: background var(--ot-dur-150), border-color var(--ot-dur-150), color var(--ot-dur-150);
  flex-shrink: 0;
}
.ot-blog-tab:hover {
  border-color: var(--ot-yellow);
  color: var(--ot-yellow-text);
  background: rgba(var(--ot-primary-rgb), 0.06);
}
.ot-blog-tab--active,
.ot-blog-tab--active:hover {
  background: var(--ot-yellow);
  border-color: var(--ot-yellow);
  color: #111;
}
.ot-blog-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(0,0,0,0.15);
  color: inherit;
}
.ot-blog-tab--active .ot-blog-tab__count { background: rgba(0,0,0,0.2); }

/* ─── Campaign Card Izgarası ─── */
.ot-campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1024px) {
  .ot-campaign-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ot-campaign-grid { grid-template-columns: 1fr; }
}

/* ─── Campaign Card ─── */
.ot-camp-card {
  display: flex;
  flex-direction: column;
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  transition: border-color var(--ot-dur-300), transform var(--ot-dur-300), box-shadow var(--ot-dur-300);
}
.ot-camp-card:hover {
  border-color: rgba(var(--ot-primary-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.ot-camp-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ot-surface-2);
  flex-shrink: 0;
}
.ot-camp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ot-dur-500) var(--ot-ease);
  display: block;
}
.ot-camp-card:hover .ot-camp-card__img { transform: scale(1.06); }

.ot-camp-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ot-border-2);
}
.ot-camp-card__placeholder svg { width: 44px; height: 44px; }

.ot-camp-card__label {
  position: absolute;
  top: var(--ot-space-3);
  left: var(--ot-space-3);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ot-yellow);
  color: #111;
  line-height: 1.4;
  pointer-events: none;
}

.ot-camp-card__body {
  padding: var(--ot-space-5) var(--ot-space-5) 0;
  flex: 1;
}
.ot-camp-card__title {
  font-size: var(--ot-text-base);
  font-weight: 700;
  color: var(--ot-text);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ot-camp-card__title a { color: inherit; }
.ot-camp-card__title a:hover { color: var(--ot-yellow-text); }

.ot-camp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--ot-space-4) var(--ot-space-5);
  margin-top: var(--ot-space-3);
  border-top: 1px solid var(--ot-border);
}
.ot-camp-card__date {
  font-size: 0.75rem;
  color: var(--ot-text-3);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.ot-camp-card__date svg { width: 13px; height: 13px; flex-shrink: 0; }

.ot-camp-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--ot-border);
  color: var(--ot-text-2);
  transition: background var(--ot-dur-150), border-color var(--ot-dur-150), color var(--ot-dur-150);
  flex-shrink: 0;
}
.ot-camp-card__arrow svg { width: 14px; height: 14px; }
.ot-camp-card__arrow:hover {
  background: var(--ot-yellow);
  border-color: var(--ot-yellow);
  color: #111;
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-cta {
  position: relative;
  padding-block: var(--ot-section-lg);
  background: linear-gradient(135deg, var(--ot-yellow) 0%, var(--ot-yellow-dark) 100%);
  overflow: hidden;
}
.ot-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 480px; height: 480px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.ot-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 320px; height: 320px;
  background: rgba(0,0,0,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.ot-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--ot-space-8);
}
@media (min-width: 768px) {
  .ot-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.ot-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--ot-text);
  letter-spacing: -0.03em;
  line-height: var(--ot-leading-tight);
}
.ot-cta__desc {
  font-size: var(--ot-text-base);
  color: rgba(0,0,0,0.65);
  margin-top: var(--ot-space-3);
  max-width: 480px;
  line-height: var(--ot-leading-relaxed);
}
.ot-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   17. BREADCRUMb & PAGE HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-breadcrumb {
  padding-block: var(--ot-space-3);
  border-bottom: 1px solid var(--ot-border);
  background: var(--ot-surface);
}
.ot-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ot-space-2);
  font-size: var(--ot-text-xs);
  color: var(--ot-text-3);
}
.ot-breadcrumb__item         { display: flex; align-items: center; gap: var(--ot-space-2); }
.ot-breadcrumb__item a       { color: var(--ot-text-2); transition: color var(--ot-dur-150); }
.ot-breadcrumb__item a:hover { color: var(--ot-yellow-text); }
.ot-breadcrumb__item--active { color: var(--ot-text); font-weight: 600; }
.ot-breadcrumb__sep          { color: var(--ot-border-2); font-size: 10px; }

.ot-page-hero {
  margin-top: var(--ot-total-top);
  padding-top: var(--ot-space-6);
  padding-bottom: var(--ot-space-6);
  background: linear-gradient(160deg, var(--ot-bg-alt) 0%, var(--ot-surface) 100%);
  border-bottom: 1px solid var(--ot-border);
}
.ot-page-hero__eyebrow {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--ot-space-3);
}
.ot-page-hero__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-4);
  line-height: var(--ot-leading-tight);
}
.ot-page-hero__desc {
  font-size: var(--ot-text-lg);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════
   18. BLOG & İÇERİK DETAYı
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-post-header {
  margin-top: var(--ot-total-top);
  padding-top: var(--ot-space-6);
  padding-bottom: var(--ot-space-6);
  background: linear-gradient(160deg, var(--ot-bg-alt) 0%, var(--ot-surface) 100%);
  border-bottom: 1px solid var(--ot-border);
}

.ot-post-body {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.ot-post-body p,
.ot-post-body h2,
.ot-post-body h3,
.ot-post-body h4,
.ot-post-body ul,
.ot-post-body ol,
.ot-post-body blockquote {
  width: 100%;
  max-width: 100%;
}

/* İlk öğenin üst boşluğunu sıfırla */
.ot-post-body > :first-child { margin-top: 0; }

.ot-post-body h2,
.ot-post-body h3,
.ot-post-body h4 {
  font-weight: 700;
  color: var(--ot-text);
  margin-top: var(--ot-space-8);
  margin-bottom: var(--ot-space-4);
  letter-spacing: -0.025em;
}
.ot-post-body h2 { font-size: var(--ot-text-2xl); }
.ot-post-body h3 { font-size: var(--ot-text-xl); }
.ot-post-body h4 { font-size: var(--ot-text-lg); }

.ot-post-body p  {
  font-size: var(--ot-text-base);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-5);
}

.ot-post-body a { color: var(--ot-yellow-text); text-decoration: underline; text-underline-offset: 3px; }

.ot-post-body ul, .ot-post-body ol {
  list-style: initial;
  padding-left: var(--ot-space-6);
  margin-bottom: var(--ot-space-6);
  color: var(--ot-text-2);
}
.ot-post-body li { margin-bottom: var(--ot-space-2); line-height: var(--ot-leading-relaxed); }

.ot-post-body blockquote {
  border-left: 4px solid var(--ot-yellow);
  padding-left: var(--ot-space-6);
  margin-block: var(--ot-space-8);
  color: var(--ot-text-2);
  font-size: var(--ot-text-lg);
  font-style: italic;
  background: var(--ot-yellow-light);
  padding: var(--ot-space-5) var(--ot-space-6);
  border-radius: 0 var(--ot-radius-lg) var(--ot-radius-lg) 0;
}

.ot-post-body img {
  border-radius: var(--ot-radius-xl);
  margin-block: var(--ot-space-8);
  border: 1.5px solid var(--ot-border);
  box-shadow: var(--ot-shadow);
}

.ot-post-body code {
  background: var(--ot-surface-2);
  border: 1px solid var(--ot-border);
  padding: 2px 6px;
  border-radius: var(--ot-radius-sm);
  font-size: 0.9em;
  color: var(--ot-yellow-text);
}

.ot-post-body pre {
  background: var(--ot-text);
  border-radius: var(--ot-radius-lg);
  padding: var(--ot-space-6);
  overflow-x: auto;
  margin-bottom: var(--ot-space-6);
}
.ot-post-body pre code { background: none; border: none; padding: 0; color: #e2e8f0; }

/* ═══════════════════════════════════════════════════════════════════════════
   19. FOOTER (Koyu Arka Plan — Sabit Renkler)
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-footer {
  background: #1a202c;
  color: #cbd5e1;
  border-top: none;
}

/* Footer ana grid */
.ot-footer__main,
.ot-footer__top {
  display: grid;
  gap: var(--ot-space-10);
  padding-block: var(--ot-space-12);
}
@media (min-width: 768px)  {
  .ot-footer__main, .ot-footer__top { grid-template-columns: 2fr 1fr 1fr; }
}

/* Footer grid alias (4 sütunlu varyant) */
.ot-footer__grid {
  display: grid;
  gap: var(--ot-space-10);
}
@media (min-width: 768px)  { .ot-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .ot-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.ot-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--ot-space-3);
  margin-bottom: var(--ot-space-5);
  text-decoration: none;
}
.ot-footer__logo-icon {
  width: 42px; height: 42px;
  background: var(--ot-primary, #ffcc00);
  border-radius: var(--ot-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--ot-on-primary, #1a202c);
  flex-shrink: 0;
}
.ot-footer__logo-icon svg { width: 22px; height: 22px; }
.ot-footer__logo-text { line-height: var(--ot-leading-tight); }

.ot-footer__logo-name {
  display: block;
  font-size: var(--ot-text-base);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.ot-footer__logo-sub {
  display: block;
  font-size: var(--ot-text-xs);
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.ot-footer__desc {
  font-size: var(--ot-text-sm);
  color: #94a3b8;
  line-height: var(--ot-leading-relaxed);
  margin-bottom: var(--ot-space-6);
  max-width: 300px;
}

.ot-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-3);
  margin-bottom: var(--ot-space-6);
}
.ot-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ot-space-3);
  font-size: var(--ot-text-sm);
  color: #94a3b8;
}
.ot-footer__contact-item svg { width: 15px; height: 15px; color: #64748b; flex-shrink: 0; margin-top: 2px; }
.ot-footer__contact-item a { color: #cbd5e1; transition: color var(--ot-dur-150); }
.ot-footer__contact-item a:hover { color: #fff; }

.ot-footer__social {
  display: flex;
  gap: var(--ot-space-2);
}
.ot-footer__social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ot-radius);
  color: #94a3b8;
  transition: all var(--ot-dur-150);
}
.ot-footer__social-link:hover {
  background: var(--ot-primary, #ffcc00);
  border-color: var(--ot-primary, #ffcc00);
  color: var(--ot-on-primary, #1a202c);
}
.ot-footer__social-link svg { width: 16px; height: 16px; }

/* Menü Başlık ve Linkler */
.ot-footer__col-title,
.ot-footer__menu-title {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--ot-space-5);
  padding-bottom: var(--ot-space-3);
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.ot-footer__col-links,
.ot-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-3);
}
.ot-footer__col-link,
.ot-footer__menu-link {
  display: flex;
  align-items: center;
  gap: var(--ot-space-2);
  font-size: var(--ot-text-sm);
  color: #94a3b8;
  transition: color var(--ot-dur-150), gap var(--ot-dur-150);
}
.ot-footer__col-link:hover,
.ot-footer__menu-link:hover { color: #fff; gap: var(--ot-space-3); }
.ot-footer__col-link::before,
.ot-footer__menu-link::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #475569;
  flex-shrink: 0;
  transition: background var(--ot-dur-150);
}
.ot-footer__col-link:hover::before,
.ot-footer__menu-link:hover::before { background: var(--ot-primary, #ffcc00); }

/* Telif */
.ot-footer__copy,
.ot-footer__copyright { font-size: var(--ot-text-xs); color: var(--ot-text-inv, #fff); }

/* Çalışma saatleri */
.ot-footer__hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--ot-radius-lg);
  padding: var(--ot-space-5);
  margin-top: var(--ot-space-4);
}
.ot-footer__hours-title {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--ot-space-4);
}
.ot-footer__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--ot-text-xs);
  color: #94a3b8;
  padding-block: var(--ot-space-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ot-footer__hours-row:last-child { border-bottom: none; }
.ot-footer__hours-row strong { color: #cbd5e1; }

/* Footer alt bar */
.ot-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: var(--ot-space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ot-space-4);
}
.ot-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ot-space-4);
}
.ot-footer__legal a {
  font-size: var(--ot-text-xs);
  color: var(--ot-primary, #ffcc00);
  transition: color var(--ot-dur-150);
}
.ot-footer__legal a:hover { color: var(--ot-text-inv, #fff); }
.ot-footer__copyright a {
  color: var(--ot-primary, #ffcc00);
  text-decoration: none;
  transition: color var(--ot-dur-150);
}
.ot-footer__copyright a:hover { color: var(--ot-text-inv, #fff); }

/* ─── Footer stili varyantları ────────────────────── */
.ot-footer-style--minimal .ot-footer__top {
  display: none;
}
.ot-footer-style--minimal .ot-footer__bottom {
  border-top: none;
  padding-block: var(--ot-space-6);
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: var(--ot-space-2);
}

.ot-footer-style--simple .ot-footer__top,
.ot-footer-style--simple .ot-footer__main {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ot-footer-style--simple .ot-footer__top,
  .ot-footer-style--simple .ot-footer__main {
    grid-template-columns: 3fr 2fr;
  }
}

/* ─── Header stili varyantları ───────────────────────────────────────────── */

/* Centered header */
.ot-header-style--centered .ot-header__inner {
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-block: var(--ot-space-3);
  gap: var(--ot-space-2);
}
.ot-header-style--centered .ot-header {
  height: auto;
}
.ot-header-style--centered .ot-nav {
  justify-content: center;
}
.ot-header-style--centered .ot-header__right {
  margin-left: 0;
}

/* Minimal header */
.ot-header-style--minimal .ot-header__logo-icon { display: none; }
.ot-header-style--minimal .ot-header__logo-tagline { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   20. İLETİŞİM SAYFASI
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-contact-grid {
  display: grid;
  gap: var(--ot-space-10);
  align-items: start;
}
@media (min-width: 1024px) { .ot-contact-grid { grid-template-columns: 5fr 7fr; } }

.ot-contact-card {
  display: flex;
  gap: var(--ot-space-4);
  padding: var(--ot-space-5);
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-lg);
  margin-bottom: var(--ot-space-4);
  transition: border-color var(--ot-dur-150), box-shadow var(--ot-dur-150);
}
.ot-contact-card:hover { border-color: rgba(var(--ot-primary-rgb),0.4); box-shadow: var(--ot-shadow-sm); }

.ot-contact-card__icon {
  width: 46px; height: 46px;
  background: var(--ot-yellow-light);
  border-radius: var(--ot-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--ot-yellow-text);
  flex-shrink: 0;
}
.ot-contact-card__icon svg { width: 20px; height: 20px; }

.ot-contact-card__label {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--ot-space-1);
}
.ot-contact-card__value { font-size: var(--ot-text-base); color: var(--ot-text); font-weight: 600; }
.ot-contact-card__value a { color: var(--ot-text); transition: color var(--ot-dur-150); }
.ot-contact-card__value a:hover { color: var(--ot-yellow-text); }

.ot-hours-card {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-6);
  margin-top: var(--ot-space-6);
}
.ot-hours-card__title {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--ot-space-4);
  padding-bottom: var(--ot-space-3);
  border-bottom: 2px solid var(--ot-yellow-light);
}
.ot-hours-card__row {
  display: flex;
  justify-content: space-between;
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  padding-block: var(--ot-space-2);
  border-bottom: 1px solid var(--ot-border);
}
.ot-hours-card__row:last-child { border-bottom: none; }
.ot-hours-card__row strong { color: var(--ot-text); }
.ot-hours-card__row--closed { color: var(--ot-red); }

.ot-form-card {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-2xl);
  padding: var(--ot-space-8);
  box-shadow: var(--ot-shadow-md);
}
.ot-form-card__title {
  font-size: var(--ot-text-xl);
  font-weight: 800;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-2);
  letter-spacing: -0.02em;
}
.ot-form-card__subtitle {
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  margin-bottom: var(--ot-space-7);
  padding-bottom: var(--ot-space-5);
  border-bottom: 1px solid var(--ot-border);
}

.ot-map-wrap {
  margin-top: var(--ot-space-10);
  border-radius: var(--ot-radius-2xl);
  overflow: hidden;
  border: 1.5px solid var(--ot-border);
  aspect-ratio: 16/6;
  background: var(--ot-surface-2);
  box-shadow: var(--ot-shadow);
}
.ot-map-wrap iframe { width: 100%; height: 100%; display: block; }
.ot-map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--ot-space-3);
  color: var(--ot-text-3);
  font-size: var(--ot-text-sm);
}
.ot-map-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════════════════
   21. SSS / ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-3);
  max-width: 800px;
  margin-inline: auto;
}

.ot-faq-item {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-lg);
  overflow: hidden;
  transition: border-color var(--ot-dur-150), box-shadow var(--ot-dur-150);
}
.ot-faq-item.is-open {
  border-color: rgba(var(--ot-primary-rgb),0.5);
  box-shadow: var(--ot-shadow-sm);
}

.ot-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ot-space-4);
  padding: var(--ot-space-5) var(--ot-space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ot-font);
  font-size: var(--ot-text-base);
  font-weight: 700;
  color: var(--ot-text);
  transition: background var(--ot-dur-150);
}
.ot-faq-item__trigger:hover { background: var(--ot-surface-2); }
.ot-faq-item.is-open .ot-faq-item__trigger { background: var(--ot-yellow-light); color: var(--ot-yellow-text); }

.ot-faq-item__icon {
  width: 28px; height: 28px;
  background: var(--ot-surface-2);
  border-radius: var(--ot-radius-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--ot-dur-150), transform var(--ot-dur-300);
}
.ot-faq-item__icon svg { width: 16px; height: 16px; color: var(--ot-text-2); }
.ot-faq-item.is-open .ot-faq-item__icon { background: var(--ot-yellow); transform: rotate(180deg); }
.ot-faq-item.is-open .ot-faq-item__icon svg { color: var(--ot-text); }

.ot-faq-item__body {
  display: none;
  padding: 0 var(--ot-space-6) var(--ot-space-6);
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
  border-top: 1px solid var(--ot-border);
}
.ot-faq-item.is-open .ot-faq-item__body { display: block; }
.ot-faq-item__body p { margin-top: var(--ot-space-4); }

/* ═══════════════════════════════════════════════════════════════════════════
   22. FORMLAR
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-form-row {
  display: grid;
  gap: var(--ot-space-5);
}
@media (min-width: 640px) { .ot-form-row--2 { grid-template-columns: repeat(2, 1fr); } }

.ot-form-group { margin-bottom: var(--ot-space-5); }
.ot-form-group:last-child { margin-bottom: 0; }

.ot-form-label {
  display: block;
  font-size: var(--ot-text-sm);
  font-weight: 600;
  color: var(--ot-text);
  margin-bottom: var(--ot-space-2);
}
.ot-form-label span { color: var(--ot-red); margin-left: 2px; }

.ot-form-input,
.ot-form-textarea,
.ot-form-select {
  width: 100%;
  padding: var(--ot-space-3) var(--ot-space-4);
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius);
  color: var(--ot-text);
  font-size: var(--ot-text-base);
  font-family: var(--ot-font);
  transition: border-color var(--ot-dur-150), box-shadow var(--ot-dur-150);
  outline: none;
}
.ot-form-input::placeholder,
.ot-form-textarea::placeholder { color: var(--ot-text-3); }

.ot-form-input:focus,
.ot-form-textarea:focus,
.ot-form-select:focus {
  border-color: var(--ot-yellow);
  box-shadow: 0 0 0 3px rgba(var(--ot-primary-rgb),0.2);
}

.ot-form-input--error { border-color: var(--ot-red) !important; }
.ot-form-input--error:focus { box-shadow: 0 0 0 3px rgba(229,62,62,0.15) !important; }

.ot-form-textarea { resize: vertical; min-height: 140px; }

.ot-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--ot-space-3);
  cursor: pointer;
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  line-height: var(--ot-leading-relaxed);
}
.ot-form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--ot-yellow);
  flex-shrink: 0;
}

.ot-form-error {
  margin-top: var(--ot-space-2);
  font-size: var(--ot-text-xs);
  color: var(--ot-red);
  display: flex;
  align-items: center;
  gap: var(--ot-space-1);
}

.ot-alert {
  padding: var(--ot-space-4) var(--ot-space-5);
  border-radius: var(--ot-radius-lg);
  font-size: var(--ot-text-sm);
  margin-bottom: var(--ot-space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--ot-space-3);
  line-height: var(--ot-leading-relaxed);
}
.ot-alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.ot-alert--success { background: #f0fdf4; border: 1.5px solid #bbf7d0; color: #15803d; }
.ot-alert--error   { background: #fef2f2; border: 1.5px solid #fecaca; color: #b91c1c; }
.ot-alert--info    { background: #eff6ff; border: 1.5px solid #bfdbfe; color: #1d4ed8; }
.ot-alert--warning { background: #fffbeb; border: 1.5px solid #fde68a; color: #92600a; }

/* ═══════════════════════════════════════════════════════════════════════════
   23. SAYFALAMA & ETİKETLER
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ot-space-2);
  padding-top: var(--ot-space-8);
}
.ot-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: var(--ot-space-3);
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius);
  font-size: var(--ot-text-sm);
  font-weight: 600;
  color: var(--ot-text-2);
  transition: all var(--ot-dur-150);
  text-decoration: none;
}
.ot-pagination__btn:hover,
.ot-pagination__btn--active {
  background: var(--ot-yellow);
  border-color: var(--ot-yellow);
  color: var(--ot-text);
  box-shadow: var(--ot-shadow-yellow);
}
.ot-pagination__btn svg { width: 15px; height: 15px; }

.ot-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--ot-space-1) var(--ot-space-3);
  background: var(--ot-yellow-light);
  border: 1.5px solid rgba(var(--ot-primary-rgb),0.35);
  border-radius: var(--ot-radius-full);
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--ot-dur-150);
  text-decoration: none;
}
a.ot-tag:hover {
  background: var(--ot-yellow);
  border-color: var(--ot-yellow-dark);
  color: var(--ot-text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   24. SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-sidebar__widget {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  padding: var(--ot-space-6);
  margin-bottom: var(--ot-space-5);
}
.ot-sidebar__widget--sticky { position: sticky; top: calc(var(--ot-total-top) + var(--ot-space-6)); }
.ot-sidebar__widget--accent {
  background: var(--ot-yellow-light);
  border-color: rgba(var(--ot-primary-rgb),0.4);
}

.ot-sidebar__widget-title {
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-yellow-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--ot-space-5);
  padding-bottom: var(--ot-space-3);
  border-bottom: 2px solid var(--ot-yellow-light);
}

.ot-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: var(--ot-space-2);
}
.ot-sidebar__link {
  display: flex;
  align-items: center;
  gap: var(--ot-space-2);
  padding: var(--ot-space-2) var(--ot-space-1);
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  border-bottom: 1px solid var(--ot-border);
  transition: color var(--ot-dur-150), padding-left var(--ot-dur-150);
}
.ot-sidebar__link:hover { color: var(--ot-yellow-text); padding-left: var(--ot-space-2); }
.ot-sidebar__link svg   { width: 14px; height: 14px; color: var(--ot-yellow); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   25. MARKA ŞERİDİ
   ═══════════════════════════════════════════════════════════════════════════ */
.ot-brands {
  padding-block: var(--ot-space-10);
  border-block: 1px solid var(--ot-border);
  background: var(--ot-surface);
}
.ot-brands__label {
  text-align: center;
  font-size: var(--ot-text-xs);
  font-weight: 700;
  color: var(--ot-text-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--ot-space-6);
}
.ot-brands__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--ot-space-6) var(--ot-space-10);
}
.ot-brands__item {
  font-size: var(--ot-text-base);
  font-weight: 800;
  color: var(--ot-border-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--ot-dur-300);
}
.ot-brands__item:hover { color: var(--ot-text-3); }

/* ═══════════════════════════════════════════════════════════════════════════
   26. YÜZEN ELEMANLAR
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WhatsApp Animasyonlu Widget ─────────────────────────────────────────── */
.ot-wa-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: var(--ot-z-float, 9000);
  font-family: var(--font-body, 'Inter', sans-serif);
}

/* Ana toggle butonu */
.ot-wa-widget__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}
.ot-wa-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.ot-wa-widget__btn--open { background: #128c7e; }

/* ── Animasyon: PULSE (yayılan halkalar) ─────────────────────────────────── */
.ot-wa-widget--anim-pulse .ot-wa-widget__btn::before,
.ot-wa-widget--anim-pulse .ot-wa-widget__btn::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: ot-wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.ot-wa-widget--anim-pulse .ot-wa-widget__btn::before { width: 80px;  height: 80px;  animation-delay: 0s; }
.ot-wa-widget--anim-pulse .ot-wa-widget__btn::after  { width: 100px; height: 100px; animation-delay: 0.7s; }

@keyframes ot-wa-pulse {
  0%   { transform: scale(0.75); opacity: 1; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* ── Animasyon: BOUNCE (yukarı-aşağı sekme) ─────────────────────────────── */
.ot-wa-widget--anim-bounce .ot-wa-widget__btn {
  animation: ot-wa-bounce 1.8s ease-in-out infinite;
}
@keyframes ot-wa-bounce {
  0%, 100% { transform: translateY(0);   }
  30%       { transform: translateY(-9px); }
  50%       { transform: translateY(-4px); }
  70%       { transform: translateY(-7px); }
}

/* ── Animasyon: GLOW (parlaklık dalgası) ────────────────────────────────── */
.ot-wa-widget--anim-glow .ot-wa-widget__btn {
  animation: ot-wa-glow 2.2s ease-in-out infinite;
}
@keyframes ot-wa-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.9), 0 0 0 10px rgba(37,211,102,0.15); }
}

/* Açık durumdayken tüm animasyonları durdur */
.ot-wa-widget__btn--open,
.ot-wa-widget--anim-bounce .ot-wa-widget__btn--open,
.ot-wa-widget--anim-glow   .ot-wa-widget__btn--open { animation: none; }
.ot-wa-widget--anim-pulse  .ot-wa-widget__btn--open::before,
.ot-wa-widget--anim-pulse  .ot-wa-widget__btn--open::after { animation: none; opacity: 0; }

/* İkon geçişleri */
.ot-wa-widget__ico { width: 28px; height: 28px; transition: opacity 0.2s, transform 0.2s; }
.ot-wa-widget__ico--close { display: none; }
.ot-wa-widget__btn--open .ot-wa-widget__ico--wa    { display: none; }
.ot-wa-widget__btn--open .ot-wa-widget__ico--close { display: block; }

/* Açıklama baloncuğu */
.ot-wa-widget__bubble {
  display: none;
  position: absolute;
  bottom: 74px;
  left: 0;
  background: #fff;
  color: #1f2937;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 32px 10px 14px;
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: normal;
  word-break: keep-all;
  width: 210px;
  line-height: 1.4;
  animation: ot-wa-bubble-in 0.3s ease;
}
.ot-wa-widget__bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
}
@keyframes ot-wa-bubble-in {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ot-wa-widget__bubble-close {
  background: none; border: none; cursor: pointer;
  color: #9ca3af; font-size: 1rem; line-height: 1; padding: 0;
}

/* Panel */
.ot-wa-widget__panel {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.16);
  overflow: hidden;
  transform: scale(0.88) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), opacity 0.2s ease;
  transform-origin: bottom left;
}
.ot-wa-widget__panel--open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Panel başlık */
.ot-wa-widget__panel-head {
  background: #25d366;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.ot-wa-widget__panel-head-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ot-wa-widget__panel-title { font-weight: 700; font-size: 0.95rem; }
.ot-wa-widget__panel-sub   { font-size: 0.78rem; opacity: 0.85; margin-top: 1px; }
.ot-wa-widget__panel-close {
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); padding: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.ot-wa-widget__panel-close:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* Kişi listeleri */
.ot-wa-widget__contacts { padding: 8px 0; }
.ot-wa-widget__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.ot-wa-widget__contact:last-child { border-bottom: none; }
.ot-wa-widget__contact:hover { background: #f0fdf4; }
.ot-wa-widget__contact-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25d366;
  color: #fff; font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ot-wa-widget__contact-info { flex: 1; min-width: 0; }
.ot-wa-widget__contact-name {
  font-weight: 600; font-size: 0.88rem; color: #1f2937;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ot-wa-widget__contact-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: #6b7280; margin-top: 2px;
}
.ot-wa-widget__contact-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
}
.ot-wa-widget__contact-arrow { color: #9ca3af; flex-shrink: 0; }
.ot-wa-widget__contact:hover .ot-wa-widget__contact-arrow { color: #25d366; }

@media (max-width: 768px) {
  .ot-wa-widget__panel {
    width: 280px;
  }
}


/* Cookie banner */
.ot-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--ot-z-toast);
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--ot-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  padding: var(--ot-space-4) var(--ot-space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ot-space-4);
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
}
.ot-cookie-banner p,
.ot-cookie-banner__text { margin: 0; flex: 1; min-width: 240px; line-height: var(--ot-leading-relaxed); }
.ot-cookie-banner a,
.ot-cookie-banner__link { color: var(--ot-yellow-text); text-decoration: underline; }
.ot-cookie-banner__actions { display: flex; gap: var(--ot-space-2); flex-shrink: 0; }

/* Hizmet detay görseli */
.ot-service-feature-img {
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--ot-radius-2xl);
  margin-bottom: var(--ot-space-6);
  border: 1.5px solid var(--ot-border);
  background: var(--ot-surface-2);
  box-shadow: var(--ot-shadow-md);
}
.ot-service-feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder kutusu */
.ot-placeholder {
  background: var(--ot-surface-2);
  border: 1.5px dashed var(--ot-border-2);
  border-radius: var(--ot-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ot-space-2);
  color: var(--ot-text-3);
  font-size: var(--ot-text-sm);
  text-align: center;
  overflow: hidden;
}
.ot-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

/* ── Stats Grid (ana sayfa istatistik kutuları) ────────────────────────── */
.ot-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  border: 1px solid var(--ot-border);
}
@media (max-width: 640px) { .ot-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.ot-stats-grid__item {
  background: var(--ot-surface);
  padding: var(--ot-space-8) var(--ot-space-5);
  text-align: center;
  border-left: 1px solid var(--ot-border);
}
.ot-stats-grid__item:first-child { border-left: none; }
@media (max-width: 640px) {
  .ot-stats-grid__item:nth-child(odd) { border-left: none; }
}

.ot-stats-grid__num {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ot-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ot-stats-grid__suffix { font-size: 60%; }
.ot-stats-grid__label {
  font-size: var(--ot-text-xs);
  font-weight: 600;
  color: var(--ot-text-3);
  margin-top: var(--ot-space-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   27. UTİLİTY & SPACING
   ═══════════════════════════════════════════════════════════════════════════ */
/* Metin */
.ot-text-left   { text-align: left; }
.ot-text-center { text-align: center; }
.ot-text-right  { text-align: right; }

.ot-text-xs   { font-size: var(--ot-text-xs); }
.ot-text-sm   { font-size: var(--ot-text-sm); }
.ot-text-base { font-size: var(--ot-text-base); }
.ot-text-lg   { font-size: var(--ot-text-lg); }
.ot-text-xl   { font-size: var(--ot-text-xl); }

.ot-font-medium  { font-weight: 500; }
.ot-font-semibold{ font-weight: 600; }
.ot-font-bold    { font-weight: 700; }
.ot-font-extrabold{font-weight: 800; }
.ot-font-black   { font-weight: 900; }

.ot-text-muted { color: var(--ot-text-2); }
.ot-text-faint { color: var(--ot-text-3); }
.ot-text-yellow{ color: var(--ot-yellow-text); }

/* Margin top */
.ot-mt-0  { margin-top: 0; }
.ot-mt-1  { margin-top: var(--ot-space-1); }
.ot-mt-2  { margin-top: var(--ot-space-2); }
.ot-mt-3  { margin-top: var(--ot-space-3); }
.ot-mt-4  { margin-top: var(--ot-space-4); }
.ot-mt-5  { margin-top: var(--ot-space-5); }
.ot-mt-6  { margin-top: var(--ot-space-6); }
.ot-mt-8  { margin-top: var(--ot-space-8); }
.ot-mt-10 { margin-top: var(--ot-space-10); }
.ot-mt-12 { margin-top: var(--ot-space-12); }
.ot-mt-16 { margin-top: var(--ot-space-16); }

/* Margin bottom */
.ot-mb-0  { margin-bottom: 0; }
.ot-mb-2  { margin-bottom: var(--ot-space-2); }
.ot-mb-3  { margin-bottom: var(--ot-space-3); }
.ot-mb-4  { margin-bottom: var(--ot-space-4); }
.ot-mb-5  { margin-bottom: var(--ot-space-5); }
.ot-mb-6  { margin-bottom: var(--ot-space-6); }
.ot-mb-8  { margin-bottom: var(--ot-space-8); }
.ot-mb-10 { margin-bottom: var(--ot-space-10); }
.ot-mb-12 { margin-bottom: var(--ot-space-12); }

/* Padding */
.ot-p-4 { padding: var(--ot-space-4); }
.ot-p-6 { padding: var(--ot-space-6); }
.ot-p-8 { padding: var(--ot-space-8); }
.ot-px-4 { padding-inline: var(--ot-space-4); }
.ot-px-6 { padding-inline: var(--ot-space-6); }
.ot-py-4 { padding-block: var(--ot-space-4); }
.ot-py-6 { padding-block: var(--ot-space-6); }
.ot-py-8 { padding-block: var(--ot-space-8); }

/* Flexbox */
.ot-flex         { display: flex; }
.ot-flex-center  { display: flex; align-items: center; justify-content: center; }
.ot-flex-between { display: flex; align-items: center; justify-content: space-between; }
.ot-flex-col     { display: flex; flex-direction: column; }
.ot-flex-wrap    { flex-wrap: wrap; }
.ot-items-center { align-items: center; }
.ot-gap-2 { gap: var(--ot-space-2); }
.ot-gap-3 { gap: var(--ot-space-3); }
.ot-gap-4 { gap: var(--ot-space-4); }
.ot-gap-6 { gap: var(--ot-space-6); }
.ot-gap-8 { gap: var(--ot-space-8); }

/* Diğer */
.ot-divider {
  border: none;
  border-top: 1px solid var(--ot-border);
  margin-block: var(--ot-space-8);
}
.ot-divider--yellow { border-top: 2px solid var(--ot-yellow-light); }
.ot-rounded    { border-radius: var(--ot-radius); }
.ot-rounded-lg { border-radius: var(--ot-radius-lg); }
.ot-rounded-xl { border-radius: var(--ot-radius-xl); }
.ot-shadow     { box-shadow: var(--ot-shadow); }
.ot-shadow-md  { box-shadow: var(--ot-shadow-md); }

/* ═══════════════════════════════════════════════════════════════════════════
   28. ANİMASYONLAR
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.ot-anim-up    { animation: fadeInUp 0.5s var(--ot-ease) both; }
.ot-anim-fade  { animation: fadeIn  0.4s var(--ot-ease) both; }
.ot-anim-scale { animation: scaleIn 0.35s var(--ot-ease) both; }

.ot-anim-d1 { animation-delay: 0.1s; }
.ot-anim-d2 { animation-delay: 0.2s; }
.ot-anim-d3 { animation-delay: 0.3s; }
.ot-anim-d4 { animation-delay: 0.4s; }

/* Eski alias (geriye dönük uyumluluk) */
.ot-animate-up          { animation: fadeInUp 0.5s var(--ot-ease) both; }
.ot-animate-up--delay-1 { animation-delay: 0.1s; }
.ot-animate-up--delay-2 { animation-delay: 0.2s; }
.ot-animate-up--delay-3 { animation-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════════════
   29. RESPONSİVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .ot-hide-mobile  { display: none !important; }
  .ot-section { padding-block: var(--ot-space-12); }
  .ot-hero__inner { gap: var(--ot-space-8); }
}
@media (min-width: 768px)  { .ot-hide-tablet  { display: none !important; } }
@media (min-width: 1024px) { .ot-hide-desktop { display: none !important; } }

@media (max-width: 639px) {
  .ot-form-row--2 { grid-template-columns: 1fr; }
  .ot-cta__inner  { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   30. PRİNT
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
  .ot-topbar, .ot-header, .ot-mobile-nav,
  .ot-footer, .ot-wa-widget, .ot-cta,
  #ot-cookie-banner { display: none !important; }
  body { background: white !important; color: black !important; padding-top: 0 !important; font-size: 12pt; }
  main { padding-top: 0 !important; }
  a { color: inherit !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; opacity: 0.6; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  p { orphans: 3; widows: 3; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   31. CORE WEB VITALS & PERFORMANS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Azaltılmış hareket tercihi: animasyonları kapat (erişilebilirlik + CLS) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ot-animate-up, .ot-anim-up, .ot-anim-fade, .ot-anim-scale {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* content-visibility: fold altı bölümleri tembel render (INP/LCP iyileştirmesi)
   İlk ot-section (hero ile aynı vp'de) kapsam dışı tutulur; diğerleri lazy render. */
.ot-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}

/* Layout shift önleme: görseller için aspect-ratio koruması */
.ot-blog-card__img,
.ot-service-detail__img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ot-service-detail__img {
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  margin-bottom: var(--ot-space-6);
  border: 1.5px solid var(--ot-border);
}

.ot-working-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--ot-text-sm);
  color: var(--ot-text-2);
  padding-block: var(--ot-space-2);
  border-bottom: 1px solid var(--ot-border);
  gap: var(--ot-space-4);
}
.ot-working-hours__row:last-of-type { border-bottom: none; }
.ot-working-hours__row strong { color: var(--ot-text); font-weight: 600; }

/* Skip link görünürlüğü (erişilebilirlik + SEO crawl kalitesi) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ot-yellow);
  color: #000;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--ot-radius) var(--ot-radius);
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Görüntü hata placeholder */
.ot-img-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: var(--ot-bg-alt);
  color: var(--ot-border-2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. PREMIUM BLOG KARTLARI (ot-bc)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Grid: İlk kart büyük (featured), geri kalanlar 3'lü ─── */
.ot-blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ot-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ot-bc--featured {
    grid-column: 1 / -1; /* tam genişlik */
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 380px;
  }
}
@media (min-width: 1024px) {
  .ot-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Kart Temel ─── */
.ot-bc {
  background: var(--ot-surface);
  border: 1.5px solid var(--ot-border);
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ot-ease),
              box-shadow 0.3s var(--ot-ease),
              border-color 0.3s var(--ot-ease);
  position: relative;
}
.ot-bc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(var(--ot-primary-rgb), 0.4);
}

/* ─── Görsel Sarmalayıcı ─── */
.ot-bc__img-link {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}
.ot-bc__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ot-bg-alt);
}
.ot-bc--featured .ot-bc__img-wrap {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}
.ot-bc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ot-ease);
}
.ot-bc:hover .ot-bc__img {
  transform: scale(1.06);
}

/* ─── Karanlık overlay (hover'da belirginleşir) ─── */
.ot-bc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ot-bc:hover .ot-bc__overlay {
  opacity: 1;
}

/* ─── Kategori Etiketi ─── */
.ot-bc__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ot-primary);
  color: var(--ot-on-primary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: var(--ot-radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ─── Placeholder (görsel yoksa) ─── */
.ot-bc__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ot-bg-alt), var(--ot-surface-2));
}
.ot-bc__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
  color: var(--ot-text-3);
}

/* ─── İçerik Gövdesi ─── */
.ot-bc__body {
  padding: 22px 24px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ot-bc--featured .ot-bc__body {
  padding: 32px 36px;
  justify-content: center;
}

/* ─── Meta Bilgisi (Tarih + Okuma Süresi) ─── */
.ot-bc__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ot-bc__date,
.ot-bc__read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ot-text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ot-bc__date svg,
.ot-bc__read-time svg {
  color: var(--ot-primary-text);
  flex-shrink: 0;
}

/* ─── Başlık ─── */
.ot-bc__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ot-text);
}
.ot-bc--featured .ot-bc__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.ot-bc__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.ot-bc__title a:hover {
  color: var(--ot-primary-text);
}

/* ─── Özet ─── */
.ot-bc__excerpt {
  font-size: 0.875rem;
  color: var(--ot-text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ot-bc--featured .ot-bc__excerpt {
  font-size: 0.95rem;
  -webkit-line-clamp: 4;
}

/* ─── Devamını Oku Butonu ─── */
.ot-bc__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ot-primary-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ot-border);
  transition: gap 0.2s var(--ot-ease), color 0.18s;
}
.ot-bc__cta svg {
  transition: transform 0.2s var(--ot-ease);
  flex-shrink: 0;
}
.ot-bc__cta:hover {
  gap: 10px;
  color: var(--ot-text);
}
.ot-bc__cta:hover svg {
  transform: translateX(3px);
}

/* ─── Featured kart: katı sol sınır çizgisi ─── */
.ot-bc--featured {
  border-left: 4px solid var(--ot-primary);
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .ot-bc--featured {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .ot-bc--featured .ot-bc__img-wrap {
    aspect-ratio: 16/9;
    min-height: unset;
    height: auto;
  }
}

