/* =========================================================
   TETNAK LOJİSTİK — Ekol-inspired Design System
   ========================================================= */

/* ---- Variables ---- */
:root {
  --primary: #282879;
  --primary-light: #3A3AA0;
  --primary-lighter: #5C5CCF;
  --primary-dark: #1B1B5A;
  --primary-deep: #12123D;

  --accent: #C6A47E;
  --accent-light: #E5C9A8;

  --dark: #0D0D0D;
  --dark-soft: #1A1A1A;
  --light: #F5F5F7;
  --light-warm: #FAFAFA;
  --gray: #777777;
  --gray-light: #AAAAAA;
  --gray-lighter: #E0E0E0;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);

  --ff-primary: 'Poppins', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;

  --header-h: 80px;
  --section-py: clamp(80px, 10vw, 160px);
  --container-w: 1280px;
  --container-px: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--primary); color: var(--white); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ---- Typography ---- */
.section-tag {
  display: inline-block;
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-tag--light {
  color: var(--accent-light);
}

.section-title {
  font-family: var(--ff-primary);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.section-title--light {
  color: var(--white);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-primary);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn i { font-size: 12px; transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(3px); }

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(40, 40, 121, 0.25);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn--full { width: 100%; justify-content: center; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner { text-align: center; }

.loader__logo {
  font-family: var(--ff-primary);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 14px;
  margin-bottom: 48px;
}

.loader__bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 20px;
  overflow: hidden;
}

.loader__bar {
  width: 0%;
  height: 100%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.loader__counter {
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor.is-hover {
  width: 12px;
  height: 12px;
  background: var(--accent);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(40, 40, 121, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
  opacity: 0.3;
}

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  z-index: 1001;
  background: var(--primary-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.topbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.topbar__item:hover { color: var(--white); }
.topbar__item i { font-size: 10px; }

.topbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
}

/* Top bar social */
.topbar__social {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar__social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.topbar__social a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Top bar language */
.topbar__lang {
  position: relative;
}

.topbar__lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar__lang-btn:hover { color: var(--white); }
.topbar__lang-btn i { font-size: 7px; transition: transform 0.3s ease; }
.topbar__lang.is-open .topbar__lang-btn i { transform: rotate(180deg); }

.topbar__lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 120px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s var(--ease);
  z-index: 100;
}

.topbar__lang.is-open .topbar__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topbar__lang-option {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--gray);
  border-radius: var(--radius);
  transition: all 0.15s ease;
}

.topbar__lang-option:hover { background: var(--light); color: var(--dark); }
.topbar__lang-option.is-active { color: var(--primary); font-weight: 600; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.is-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  height: 64px;
}

.header.is-scrolled .header__nav-link { color: var(--dark); }
.header.is-scrolled .header__nav-link:hover { color: var(--primary); }
.header.is-scrolled .header__burger span { background: var(--dark); }

/* İç sayfalar: hero yok — header her zaman okunaklı (beyaz zemin) */
.header--inner {
  top: 36px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.header--inner .header__nav-link {
  color: var(--dark);
}

.header--inner .header__nav-link:hover {
  color: var(--primary);
}

.header--inner .header__burger span {
  background: var(--dark);
}

.header--inner .header__logo-img {
  filter: none !important;
}

.header--inner.is-scrolled {
  top: 0;
  height: 64px;
}

@media (max-width: 992px) {
  .header--inner {
    top: 0;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

/* Nav */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-item { position: relative; }

.header__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 10px 18px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header__nav-link:hover { color: var(--white); }

/* Simple Dropdown */
.header__drop {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
  z-index: 100;
}

.header__nav-item--has-sub:hover > .header__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__drop:not(.header__drop--two-col):not(.header__drop--mega-hizmet) {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 8px;
  min-width: 240px;
}

.header__drop-link {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.header__drop-link:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 20px;
}

/* Two column dropdown */
.header__drop--two-col {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 8px;
  min-width: 460px;
}

.header__drop-col {
  padding: 8px;
  flex: 1;
}

.header__drop-col + .header__drop-col {
  border-left: 1px solid var(--border);
}

.header__drop-heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  padding: 6px 16px 10px;
}

/* Hizmetler — iki sütunlu mega (walker + mega-menu-hizmet.php) */
.header__drop--mega-hizmet {
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: min(640px, calc(100vw - 48px));
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.header__nav-item--has-sub:hover > .header__drop--mega-hizmet {
  transform: translate(-50%, 0);
}

.header__drop--mega-hizmet .header__nav-mega-panel {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__drop-mega-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.12);
  padding: 28px 32px 32px;
  position: relative;
  overflow: hidden;
}

.header__drop-mega-cols {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.header__drop--mega-hizmet .header__drop-col {
  flex: 1;
  min-width: 0;
  padding: 0 20px 0 0;
}

.header__drop--mega-hizmet .header__drop-col + .header__drop-col {
  border-left: 1px solid var(--border);
  padding-left: 28px;
  padding-right: 0;
}

.header__drop--mega-hizmet .header__drop-heading {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 0 0 14px;
  margin: 0;
  color: #1a1f4a;
}

.header__drop--mega-hizmet .header__drop-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__drop--mega-hizmet .header__drop-list > li {
  margin: 0;
  padding: 0;
}

.header__drop--mega-hizmet .header__drop-link {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5c6470;
  white-space: normal;
  border-radius: 0;
}

.header__drop--mega-hizmet .header__drop-link:hover {
  padding-left: 0;
  background: transparent;
  color: var(--primary);
}

@media (max-width: 576px) {
  .header__drop--mega-hizmet {
    left: 0;
    transform: translateY(6px);
    min-width: 100%;
  }
  .header__nav-item--has-sub:hover > .header__drop--mega-hizmet {
    transform: translateY(0);
  }
  .header__drop-mega-cols {
    flex-direction: column;
  }
  .header__drop--mega-hizmet .header__drop-col + .header__drop-col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 8px;
  }
}

/* CTA Button */
.header__cta-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.header__cta-btn:hover {
  background: var(--accent-light);
  color: var(--primary-deep);
  transform: translateY(-1px);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  z-index: 2;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.header__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(15, 18, 60, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu__inner {
  width: 100%;
  max-width: 520px;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc(var(--header-h, 72px) + 24px) 24px 40px;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__list > li {
  margin: 0;
  padding: 0;
}

.mobile-menu__list > li.menu-item-has-children > .sub-menu:not(.mobile-menu__sub) {
  display: none;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--ff-primary);
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 600;
  color: var(--white);
  padding: 12px 0;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.mobile-menu__link:hover { color: var(--accent); }

.mobile-menu__has-sub > .mobile-menu__link {
  cursor: pointer;
}

/* Mobile submenu arrow */
.mobile-menu__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.mobile-menu__has-sub.is-open > .mobile-menu__link .mobile-menu__arrow {
  transform: rotate(180deg);
}

/* Mobile submenu */
.mobile-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.mobile-menu__has-sub.is-open .mobile-menu__sub {
  max-height: min(52vh, 420px);
  overflow-y: auto;
}

.mobile-menu__sub li {
  margin: 0;
  padding: 0;
}

.mobile-menu__sub li a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  padding: 8px 0;
  transition: color 0.2s ease;
  line-height: 1.35;
}

.mobile-menu__sub li a:hover {
  color: var(--accent);
}

/* Mobile tracking button */
.mobile-menu__tracking {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.mobile-menu__tracking:hover {
  background: var(--primary-light);
}

.mobile-menu__footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__phone, .mobile-menu__email {
  font-size: 14px;
  color: var(--gray);
}

body.mobile-nav-open {
  overflow: hidden;
}

/* =========================================================
   HERO — Cinematic fullscreen
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero__bg { position: absolute; inset: 0; }

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.swiper-slide-active .hero__bg-img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.88) 0%,
    rgba(13, 13, 13, 0.60) 50%,
    rgba(13, 13, 13, 0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.hero__content-inner { max-width: 700px; }

.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--ff-primary);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  color: var(--accent-light);
  font-style: normal;
}

.hero__subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__tag i {
  margin-right: 6px;
  font-size: 11px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Controls */
.hero__controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--ff-primary);
  font-weight: 500;
  color: var(--white);
}

.hero__counter-current { font-size: 18px; }
.hero__counter-sep { font-size: 12px; color: rgba(255,255,255,0.3); }
.hero__counter-total { font-size: 12px; color: rgba(255,255,255,0.4); }

.hero__progress {
  width: 100px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.hero__progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.3s linear;
}

.hero__arrows { display: flex; gap: 8px; }

.hero__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  transition: all 0.3s ease;
}

.hero__arrow:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

/* Hero Scroll */
.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
  font-weight: 500;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  padding: 20px 0;
  background: var(--primary-deep);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  font-family: var(--ff-primary);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  padding: 0 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT — Clean two-column layout
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.about__visual { position: relative; }

.about__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--primary);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(40, 40, 121, 0.3);
}

.about__badge-num {
  font-family: var(--ff-primary);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.about__badge-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.about__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text:last-of-type { margin-bottom: 32px; }

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about__highlight {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about__highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.about__highlight h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.about__highlight p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================================
   SERVICES — Accordion/List layout (Ekol-inspired)
   ========================================================= */
.services {
  background: var(--light);
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services__header-right {
  max-width: 440px;
}

.services__header-right p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

/* Accordion Items */
.services__accordion {
  display: flex;
  flex-direction: column;
}

.services__item {
  border-top: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

.services__item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.services__item:hover {
  background: var(--white);
}

.services__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 40px;
  cursor: default;
}

.services__item-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.services__item-num {
  font-family: var(--ff-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 1px;
  min-width: 28px;
}

.services__item-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.services__item:hover .services__item-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.services__item-title {
  font-family: var(--ff-primary);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.services__item-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.services__item-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 380px;
  display: none;
}

.services__item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.services__item-link i { font-size: 11px; transition: transform 0.3s ease; }
.services__item-link:hover i { transform: translateX(4px); }

/* Toggle button */
.services__item-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.services__item-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.services__item-toggle i {
  font-size: 11px;
  transition: transform 0.4s var(--ease);
}

.services__item--expandable.is-open .services__item-toggle i {
  transform: rotate(45deg);
}

/* Expandable body */
.services__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.services__item--expandable.is-open .services__item-body {
  max-height: 400px;
}

.services__sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  padding: 0 0 32px 68px;
}

.services__sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.services__sub-item:hover {
  background: var(--light);
}

.services__sub-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-soft);
}

.services__sub-item i {
  font-size: 10px;
  color: var(--gray-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.services__sub-item:hover i {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

/* Show desc on larger screens */
@media (min-width: 992px) {
  .services__item-desc { display: block; }
}

/* =========================================================
   KPI STRIP — minimal sayılar (Hizmetler öncesi)
   ========================================================= */
.kpi-strip {
  background: #f8f9fa;
  padding: clamp(52px, 7vw, 96px) 0;
}

.kpi-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 56px);
}

.kpi-strip__item {
  flex: 1 1 160px;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kpi-strip__value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a237e;
}

.kpi-strip__label {
  font-family: var(--ff-primary);
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.45;
  color: #555555;
  margin: 0.55rem 0 0;
}

/* =========================================================
   WHY US — Card grid
   ========================================================= */
.why__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.why__top-right {
  max-width: 440px;
}

.why__top-right p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why__card {
  background: var(--light);
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.why__card:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.06);
}

.why__card-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.why__card-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.why__card:hover .why__card-icon {
  background: var(--primary);
  color: var(--white);
}

.why__card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why__card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* =========================================================
   ECO / SUSTAINABILITY
   ========================================================= */
.eco {
  position: relative;
  overflow: hidden;
}

.eco__bg {
  position: absolute;
  inset: 0;
}

.eco__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 40, 13, 0.92) 0%, rgba(18, 18, 61, 0.85) 100%);
}

.eco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eco__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7BC67E;
  margin-bottom: 28px;
  border: 1px solid rgba(123,198,126,0.25);
}

.eco__title {
  font-family: var(--ff-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.eco__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.eco__text strong {
  font-weight: 600;
  color: #7BC67E;
}

.eco__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.eco__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

.eco__badge i {
  font-size: 14px;
  color: #7BC67E;
}

.eco__visual {
  position: relative;
}

.eco__img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
  .eco__grid { grid-template-columns: 1fr; gap: 40px; }
  .eco__visual { max-width: 480px; }
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 0 0 var(--section-py);
}

.cta__box {
  background: var(--primary-deep);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-family: var(--ff-primary);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact__top {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-item {
  display: flex;
  gap: 18px;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}

.contact__info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact__info-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact__input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  color: var(--dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40, 40, 121, 0.06);
}

.contact__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23777' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  padding-top: clamp(60px, 8vw, 100px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.footer__logo-text {
  font-family: var(--ff-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 5px;
}

.footer__logo-sub {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 5.5px;
  color: var(--accent);
  margin-top: 2px;
}

.footer__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social { display: flex; gap: 10px; }

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

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

.footer__contact-col ul { display: flex; flex-direction: column; gap: 14px; }

.footer__contact-col li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer__contact-col li i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer__contact-col a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer__contact-col a:hover { color: var(--accent-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__bottom-links { display: flex; gap: 24px; }

.footer__bottom-links a {
  color: rgba(255,255,255,0.25);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover { color: var(--accent); }

/* =========================================================
   ANIMATION CLASSES
   ========================================================= */
.reveal-up, .reveal-left, .reveal-right, .fade-in, .scale-in {
  opacity: 0;
}

.no-js .reveal-up, .no-js .reveal-left, .no-js .reveal-right,
.no-js .fade-in, .no-js .scale-in {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .topbar { display: none; }
  .header { top: 0; }
  .header.is-mobile-nav-open { z-index: 10051; }
  .header__nav { display: none; }
  .header__cta-btn { display: none; }
  .header__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 480px; }

  .services__header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .services__item-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services__item-right { justify-content: flex-start; }
  .services__item-desc { display: block; }
  .services__sub-grid { padding-left: 0; }

  .kpi-strip__row {
    justify-content: center;
    gap: 40px 24px;
  }

  .kpi-strip__item {
    flex: 1 1 calc(50% - 16px);
    max-width: none;
  }

  .why__top { flex-direction: column; gap: 20px; align-items: flex-start; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .cta__box { flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; }

  .hero__scroll { display: none; }
  .hero__content-inner { max-width: 100%; }
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }

  .hero__btns { flex-direction: column; align-items: flex-start; }
  .hero__controls { bottom: 24px; gap: 16px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }

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

  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; justify-content: center; }

  .about__badge { right: 10px; bottom: -10px; padding: 20px 24px; }
  .about__badge-num { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .kpi-strip__item { flex: 1 1 100%; }
  .fixed-widgets { bottom: 12px; right: 12px; }
  .fixed-widgets__aeo-img { width: 60px; }
}

/* =========================================================
   LOGO IMAGE OVERRIDES
   ========================================================= */
.loader__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__logo-img {
  height: 32px;
  width: auto;
  transition: filter 0.4s ease;
}

/* On transparent header, invert logo to white */
.header:not(.is-scrolled) .header__logo-img {
  filter: brightness(0) invert(1);
}

.footer__logo-img {
  width: 100%;
  
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

/* =========================================================
   HERO VIDEO
   ========================================================= */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide--video .hero__bg-img--fallback {
  display: none;
}

/* If video fails to load, show fallback image */
.hero__slide--video .hero__bg-video[data-failed="true"] {
  display: none;
}

.hero__slide--video .hero__bg-video[data-failed="true"] ~ .hero__bg-img--fallback {
  display: block;
}

/* =========================================================
   FIXED WIDGETS — AEO + Tracking
   ========================================================= */
.fixed-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fixed-widgets__tracking {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(40, 40, 121, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fixed-widgets__tracking i {
  font-size: 14px;
}

.fixed-widgets__tracking:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(40, 40, 121, 0.45);
}

.fixed-widgets__aeo {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.fixed-widgets__aeo-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.fixed-widgets__aeo-link:hover {
  opacity: 0.92;
}

.fixed-widgets__aeo-img {
  width: 80px;
  height: auto;
  display: block;
}

/* =========================================================
   FOOTER — Heading margin-top for Haberler
   ========================================================= */
.footer__heading--mt {
  margin-top: 24px;
}

/* =========================================================
   WORDPRESS — menü & iç sayfa
   ========================================================= */
.header__nav-list > .menu-item {
  position: relative;
}

.header__nav-list .sub-menu.header__drop {
  list-style: none;
  margin: 0;
}

/* İç sayfa — hero tarzı başlık + breadcrumb (üst boşluk margin ile değil padding ile) */
.tetnak-inner-hero {
  position: relative;
  z-index: 50;
  display: flex;
  padding: 150px 0 90px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark) center / cover no-repeat;
}

@media (max-width: 992px) {
  .tetnak-inner-hero {
    padding: 120px 0 72px;
  }
}

@media (max-width: 576px) {
  .tetnak-inner-hero {
    padding: 96px 0 56px;
  }
}

.tetnak-inner-hero__bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.02);
}

.tetnak-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(40, 40, 121, 0.88) 0%,
    rgba(20, 20, 60, 0.75) 45%,
    rgba(10, 10, 30, 0.82) 100%
  );
}

.tetnak-inner-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.tetnak-inner-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.tetnak-inner-hero__crumbs-item {
  display: inline-flex;
  align-items: center;
}

.tetnak-inner-hero__crumbs-link {
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.tetnak-inner-hero__crumbs-link:hover {
  color: var(--white);
}

.tetnak-inner-hero__crumbs-current {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.tetnak-inner-hero__crumbs-sep {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  padding: 0 6px;
  list-style: none;
}

.tetnak-inner-hero__crumbs-sep i {
  opacity: 0.9;
}

.tetnak-inner-hero__title {
  margin: 0;
  max-width: 920px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
}

.tetnak-inner-hero__desc {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.tetnak-inner-hero__desc p {
  margin: 0 0 0.65em;
}

.tetnak-inner-hero__desc p:last-child {
  margin-bottom: 0;
}

.tetnak-inner-hero__desc a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tetnak-inner-hero__desc a:hover {
  color: var(--white);
}

.tetnak-archive__actions {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) var(--container-px) clamp(48px, 6vw, 80px);
  text-align: center;
}

.tetnak-archive,
.tetnak-page,
.tetnak-single {
  padding: 0;
  margin: 0;
}

.tetnak-archive__head {
  max-width: var(--container-w);
  margin: 0 auto var(--container-px);
  padding: 0 var(--container-px);
}

.tetnak-archive__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
}

.tetnak-archive__intro {
  max-width: var(--container-w);
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: clamp(28px, 3vw, 40px) var(--container-px);
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.tetnak-archive__intro-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}

.tetnak-archive__intro-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
}

.tetnak-archive__intro-bilingual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}

@media (max-width: 768px) {
  .tetnak-archive__intro-bilingual {
    grid-template-columns: 1fr;
  }
}

.tetnak-archive__intro-sub {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.tetnak-archive__intro-col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}

.tetnak-archive__intro-col--en p {
  color: var(--gray);
}

.tetnak-seed-lead {
  font-size: 1.05em;
  line-height: 1.65;
}

.tetnak-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.tetnak-archive__card {
  margin: 0;
}

.tetnak-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tetnak-card-link:hover {
  box-shadow: 0 12px 40px rgba(40, 40, 121, 0.12);
  transform: translateY(-2px);
}

.tetnak-card-link__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.tetnak-card-link__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(130deg, rgba(40, 40, 121, 0.12), rgba(2, 165, 242, 0.18));
  color: var(--primary-deep);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tetnak-card-link__body {
  padding: 20px 22px 24px;
}

.tetnak-card-link__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.tetnak-card-link__ex {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}


.tetnak-pagination {
  max-width: var(--container-w);
  margin: clamp(26px, 4vw, 38px) auto 0;
  padding: 0 var(--container-px);
}

.tetnak-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.tetnak-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tetnak-pagination .page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tetnak-pagination .page-numbers.current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.tetnak-pagination .page-numbers.prev,
.tetnak-pagination .page-numbers.next {
  min-width: auto;
  padding: 0 16px;
}


.tetnak-single__content,
.tetnak-page__content {
  font-size: 16px;
  line-height: 1.8;
}

/* İletişim sayfası (slug: iletisim) */
.tetnak-page--contact {
  padding-top: clamp(20px, 3vw, 40px);
}

.page-contact-hero {
  padding-bottom: 0;
}

.page-contact-hero .section-tag {
  margin-bottom: 12px;
}

.page-contact-hero__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary-deep);
  line-height: 1.12;
  max-width: 18ch;
}

.page-contact-main {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.page-contact-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.page-contact-hours-bar {
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 32px);
  background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(40, 40, 121, 0.05);
}

.page-contact-hours-bar__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-contact-hours-bar__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
}

.page-contact-map--full {
  width: 100%;
  max-width: 100%;
}

.page-contact-card {
  background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 12px 40px rgba(40, 40, 121, 0.06);
}

.page-contact-card__title {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--primary-deep);
}

.page-contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact-card__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark);
}

.page-contact-card__item + .page-contact-card__item {
  margin-top: 18px;
}

.page-contact-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(40, 40, 121, 0.08);
  color: var(--primary);
  font-size: 16px;
}

.page-contact-card__text a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(40, 40, 121, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-contact-card__text a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.page-contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: #e8e6e1;
  box-shadow: 0 12px 40px rgba(40, 40, 121, 0.06);
}

.page-contact-map__frame {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 420px);
  border: 0;
}

.page-contact-form-wrap {
  padding-top: 0;
  background: linear-gradient(180deg, #fafbfd 0%, #ffffff 45%);
}

.page-contact-form-wrap .page-contact__form {
  max-width: 800px;
}

@media (max-width: 992px) {
  .page-contact-locations {
    grid-template-columns: 1fr;
  }
}

/* Sayfa hiyerarşisi — sol bölüm menüsü (Kurumsal > Hakkımızda …) */
.tetnak-page-layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 48px);
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px) clamp(48px, 6vw, 80px);
}

.tetnak-page-sidebar {
  flex: 0 0 min(100%, 280px);
  position: sticky;
  top: calc(var(--header-h, 72px) + 24px);
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(40, 40, 121, 0.04) 0%, transparent 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.tetnak-page-sidebar__title {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--primary-deep);
}

.tetnak-page-sidebar__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tetnak-page-sidebar__title-link:hover {
  color: var(--accent);
}

.tetnak-page-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tetnak-page-sidebar__item + .tetnak-page-sidebar__item {
  margin-top: 4px;
}

.tetnak-page-sidebar__link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gray);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.tetnak-page-sidebar__link:hover {
  background: rgba(40, 40, 121, 0.06);
  color: var(--primary);
}

.tetnak-page-sidebar__item.is-current .tetnak-page-sidebar__current {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary-deep);
  background: rgba(40, 40, 121, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin-left: -3px;
}

.tetnak-page-layout__main {
  flex: 1;
  min-width: 0;
}

.tetnak-page--with-sidebar .tetnak-page__content {
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .tetnak-page-layout {
    flex-direction: column;
    gap: 28px;
  }

  .tetnak-page-sidebar {
    flex: none;
    width: 100%;
    position: static;
    padding: 20px 20px 20px 20px;
    border-left: none;
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-md);
    background: #f8f9fc;
  }

  .tetnak-page-sidebar__item.is-current .tetnak-page-sidebar__current {
    margin-left: 0;
  }
}

/* Elementor / geniş bloklar: tema konteyneri ile hizalı, metin okunabilirliği için iç paragraflar */
.tetnak-page__content .elementor-widget-text-editor > .elementor-widget-container,
.tetnak-single__content .elementor-widget-text-editor > .elementor-widget-container {
  max-width: 72ch;
}

.tetnak-page__content .elementor-section.elementor-section-boxed > .elementor-container,
.tetnak-single__content .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container-w);
}

.tetnak-single__content p,
.tetnak-page__content p {
  margin-bottom: 1em;
}


/* Hizmet iç sayfa widget */
.tetnak-hizmet-widget {
  margin: clamp(20px, 3vw, 32px) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 30px);
  background: linear-gradient(145deg, #f9faff 0%, #ffffff 70%);
  box-shadow: 0 12px 36px rgba(40, 40, 121, 0.08);
}

.tetnak-hizmet-widget__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.tetnak-hizmet-widget__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.tetnak-hizmet-widget__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  color: var(--primary-deep);
}

.tetnak-hizmet-widget__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gray);
}

.tetnak-hizmet-widget__body p:last-child {
  margin-bottom: 0;
}

.tetnak-hizmet-widget__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.tetnak-hizmet-widget__list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.55;
  color: var(--dark);
}

.tetnak-hizmet-widget__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--primary);
}

.tetnak-hizmet-widget--primary {
  border-top: 4px solid var(--primary);
}

.tetnak-hizmet-widget--primary .tetnak-hizmet-widget__icon {
  background: rgba(40, 40, 121, 0.1);
  color: var(--primary);
}

.tetnak-hizmet-widget--accent {
  border-top: 4px solid var(--accent);
}

.tetnak-hizmet-widget--accent .tetnak-hizmet-widget__icon {
  background: rgba(2, 165, 242, 0.14);
  color: #0287c7;
}

.tetnak-hizmet-widget--accent .tetnak-hizmet-widget__list li::before {
  background: var(--accent);
}

.tetnak-hizmet-widget--dark {
  border-top: 4px solid var(--dark);
  background: linear-gradient(145deg, rgba(31, 34, 43, 0.98), rgba(45, 50, 63, 0.98));
}

.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__title,
.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__subtitle,
.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__body,
.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__body p,
.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__list li {
  color: rgba(255, 255, 255, 0.93);
}

.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.tetnak-hizmet-widget--dark .tetnak-hizmet-widget__list li::before {
  background: var(--accent);
}

@media (max-width: 768px) {
  .tetnak-hizmet-widget {
    padding: 18px;
  }
}

.services__empty {
  padding: 24px;
  text-align: center;
  color: var(--gray);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}

/* Contact Form 7 — Elementor shortcode + tema (.tetnak-cf7) */
.tetnak-cf7,
.tetnak-cf7 .wpcf7 {
  max-width: 560px;
}

.tetnak-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 18px;
}

.tetnak-cf7 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.tetnak-cf7 input[type="text"],
.tetnak-cf7 input[type="email"],
.tetnak-cf7 input[type="tel"],
.tetnak-cf7 input[type="url"],
.tetnak-cf7 select,
.tetnak-cf7 textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tetnak-cf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.tetnak-cf7 input:focus,
.tetnak-cf7 select:focus,
.tetnak-cf7 textarea:focus {
  outline: none;
  border-color: rgba(40, 40, 121, 0.45);
  box-shadow: 0 0 0 3px rgba(40, 40, 121, 0.12);
}

.tetnak-cf7 input[type="submit"],
.tetnak-cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tetnak-cf7 input[type="submit"]:hover,
.tetnak-cf7 .wpcf7-submit:hover {
  background: var(--accent-light);
  color: var(--primary-deep);
}

.tetnak-cf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
  color: #c0392b;
}

.tetnak-cf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: var(--radius);
  border-width: 1px;
}

.tetnak-cf7-placeholder {
  margin: 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius-md);
}


/* Elementor — Görsel + Metin bilgi kartı */
.tetnak-bilgi-karti {
  margin: clamp(20px, 3vw, 34px) 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(145deg, #f9faff 0%, #ffffff 72%);
  box-shadow: 0 12px 36px rgba(40, 40, 121, 0.08);
}

.tetnak-bilgi-karti--right .tetnak-bilgi-karti__media {
  order: 2;
}

.tetnak-bilgi-karti__media {
  width: 100%;
}

.tetnak-bilgi-karti__img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.tetnak-bilgi-karti__img--ph {
  background: linear-gradient(140deg, rgba(40, 40, 121, 0.16), rgba(2, 165, 242, 0.22));
}

.tetnak-bilgi-karti__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-deep);
}

.tetnak-bilgi-karti__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--gray);
}

.tetnak-bilgi-karti__body {
  margin-top: 14px;
}

.tetnak-bilgi-karti__body p:last-child {
  margin-bottom: 0;
}

.tetnak-bilgi-karti__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tetnak-bilgi-karti__btn:hover {
  background: var(--primary-light);
}

.tetnak-bilgi-karti--accent {
  border-top: 4px solid var(--accent);
}

.tetnak-bilgi-karti--accent .tetnak-bilgi-karti__btn {
  background: var(--accent);
  color: var(--primary-deep);
}

.tetnak-bilgi-karti--accent .tetnak-bilgi-karti__btn:hover {
  background: var(--accent-light);
}

.tetnak-bilgi-karti--dark {
  border-top: 4px solid var(--dark);
  background: linear-gradient(145deg, rgba(31, 34, 43, 0.98), rgba(45, 50, 63, 0.98));
}

.tetnak-bilgi-karti--dark .tetnak-bilgi-karti__title,
.tetnak-bilgi-karti--dark .tetnak-bilgi-karti__subtitle,
.tetnak-bilgi-karti--dark .tetnak-bilgi-karti__body,
.tetnak-bilgi-karti--dark .tetnak-bilgi-karti__body p {
  color: rgba(255, 255, 255, 0.93);
}

.tetnak-bilgi-karti--dark .tetnak-bilgi-karti__btn {
  background: var(--accent);
  color: var(--primary-deep);
}

@media (max-width: 900px) {
  .tetnak-bilgi-karti {
    grid-template-columns: 1fr;
  }

  .tetnak-bilgi-karti--right .tetnak-bilgi-karti__media {
    order: 0;
  }
}




/* Hizmet otomatik section tasarımı */
.tetnak-svc-auto {
  margin: 0 0 clamp(22px, 3vw, 36px);
  background: #f7f8fb;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.tetnak-svc-auto__hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 54px);
}

.tetnak-svc-auto--plain-hero .tetnak-svc-auto__hero {
  background: transparent;
  color: var(--dark);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 2.6vw, 32px);
  align-items: center;
  padding-bottom: 20px;
}

.tetnak-svc-auto--plain-hero .tetnak-svc-auto__title {
  color: var(--primary-deep);
}

.tetnak-svc-auto--plain-hero .tetnak-svc-auto__lead {
  color: var(--dark);
}

.tetnak-svc-auto__cover {
  padding: 0;
}

.tetnak-svc-auto__cover-img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .tetnak-svc-auto--plain-hero .tetnak-svc-auto__hero {
    grid-template-columns: 1fr;
  }
}

.tetnak-svc-auto__tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: .92;
}

.tetnak-svc-auto__title {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
}

.tetnak-svc-auto__lead {
  margin: 14px 0 0;
  max-width: 72ch;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}

.tetnak-svc-auto__detail,
.tetnak-svc-auto__ops,
.tetnak-svc-auto__cta {
  padding: clamp(30px, 4vw, 54px);
}

.tetnak-svc-auto__detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.tetnak-svc-auto__article p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--dark);
}

.tetnak-svc-auto__article p.is-lead {
  font-size: 1.05rem;
}

.tetnak-svc-auto__side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.tetnak-svc-auto__side h3 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
}

.tetnak-svc-auto__side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tetnak-svc-auto__side li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}

.tetnak-svc-auto__side li i {
  color: var(--accent);
  margin-top: 4px;
}

.tetnak-svc-auto__stats {
  background: #101247;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: clamp(22px, 3vw, 36px) var(--container-px);
}

.tetnak-svc-auto__stat {
  text-align: center;
}

.tetnak-svc-auto__stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.tetnak-svc-auto__stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.tetnak-svc-auto__ops-head span,
.tetnak-svc-auto__cta > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}

.tetnak-svc-auto__ops-head h3,
.tetnak-svc-auto__cta h3 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  color: var(--primary-deep);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.tetnak-svc-auto__ops-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tetnak-svc-auto__op-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.tetnak-svc-auto__op-card h4 {
  margin: 0;
  font-size: 15px;
  color: var(--primary-deep);
}

.tetnak-svc-auto__op-card p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.tetnak-svc-auto__quote {
  padding: clamp(38px, 5vw, 76px) var(--container-px);
  background-size: cover;
  background-position: center;
}

.tetnak-svc-auto__quote p {
  margin: 0 auto;
  max-width: var(--container-w);
  color: #fff;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.tetnak-svc-auto__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tetnak-svc-auto__btn {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.tetnak-svc-auto__btn--primary {
  background: var(--primary);
  color: #fff;
}

.tetnak-svc-auto__btn--ghost {
  background: #fff;
  color: var(--primary-deep);
  border: 1px solid var(--border);
}

@media (max-width: 992px) {
  .tetnak-svc-auto__detail-grid,
  .tetnak-svc-auto__ops-grid,
  .tetnak-svc-auto__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .tetnak-svc-auto__detail-grid,
  .tetnak-svc-auto__ops-grid,
  .tetnak-svc-auto__stats {
    grid-template-columns: 1fr;
  }

  .tetnak-svc-auto__title,
  .tetnak-svc-auto__ops-head h3,
  .tetnak-svc-auto__cta h3 {
    max-width: 100%;
  }
}

/* Elementor widget: Tetnak Hizmet Sayfa Bloğu */
.tetnak-svc-page {
  margin: clamp(20px, 3vw, 36px) 0;
  background: #f7f8fb;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tetnak-svc-page__hero {
  padding: clamp(24px, 3vw, 44px);
}

.tetnak-svc-page__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}

.tetnak-svc-page__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}

.tetnak-svc-page__title {
  margin: 10px 0 0;
  color: var(--primary-deep);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.tetnak-svc-page__lead {
  margin: 14px 0 0;
  line-height: 1.65;
  color: var(--dark);
}

.tetnak-svc-page__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tetnak-svc-page__btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.tetnak-svc-page__btn--primary {
  background: var(--primary);
  color: #fff;
}

.tetnak-svc-page__btn--ghost {
  background: #fff;
  color: var(--primary-deep);
  border-color: var(--border);
}

.tetnak-svc-page__visual {
  position: relative;
}

.tetnak-svc-page__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.tetnak-svc-page__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(16, 18, 71, 0.9);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 12px;
}

.tetnak-svc-page__detail,
.tetnak-svc-page__features,
.tetnak-svc-page__cta {
  padding: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--border);
}

.tetnak-svc-page__label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}

.tetnak-svc-page__detail-title {
  margin: 10px 0 0;
  color: var(--primary-deep);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tetnak-svc-page__detail-text p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--dark);
}

.tetnak-svc-page__features ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.tetnak-svc-page__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.tetnak-svc-page__features li i {
  margin-top: 4px;
  color: var(--accent);
}

.tetnak-svc-page__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tetnak-svc-page__cta h4 {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.15;
}

.tetnak-svc-page__cta p {
  margin: 8px 0 0;
  color: var(--gray);
}

@media (max-width: 992px) {
  .tetnak-svc-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tetnak-svc-page__hero,
  .tetnak-svc-page__detail,
  .tetnak-svc-page__features,
  .tetnak-svc-page__cta {
    padding: 18px;
  }
}
