/* ============================================================
   MOKA UNITED — Klon Tasarım Sistemi
   Kaynak analiz: MOKA_UNITED_FRONTEND_ANALIZ.md
   ============================================================ */

/* ---------- 1. Tasarım Token'ları ---------- */
:root {
  /* Marka renkleri */
  --brand-blue: #0d3c94;        /* ana marka mavisi — başlıklar, buton metni */
  --neon-green: #2bfb97;        /* primary buton zemini */
  --neon-green-2: #33ffa3;      /* hover katman */
  --neon-green-3: #66ffba;      /* hover katman */
  --accent-green: #00ff8c;      /* gradyan vurgu */
  --ink: #1b1c1a;               /* koyu metin */
  --black: #000;
  --white: #fff;

  /* Bölüm zeminleri */
  --yellow-bg: #f8f2a7;
  --yellow-oval: #f4eb7b;
  --lilac-bg: #a89cec;
  --lilac-oval: #b4a9ef;
  --teal: #50dcc8;
  --teal-2: #1cc8b6;

  /* Nötr */
  --box-gray: #f8f8f8;
  --box-gray-2: #f3f3f3;
  --box-gray-3: #f0f0f0;
  --border-gray: #e2e2e2;

  /* Sayfa tema zeminleri */
  --theme-blue: #4daac6;
  --theme-yellow: #ffff9c;
  --theme-yellow-soft: rgba(255, 255, 156, .75);
  --theme-green-medium: #00ab92;
  --theme-green-dark: #064a45;
  --theme-green: #85ebbd;
  --theme-gray: #d5d1cb;
  --theme-light-gray: #d9dcde;

  /* Renkli şerit zeminleri */
  --colorful-green: #2bfb97;
  --colorful-yellow: #fef593;
  --colorful-blue: #219cc3;
  --colorful-darkbeige: #cec7c0;

  /* Yarıçaplar */
  --r-box: 16px;
  --r-mega: 24px;
  --r-pill: 188px;
  --r-count: 160px;
  --r-btn: 40px;

  /* Breakpoint referans (JS/okunabilirlik) */
  --bp-lg: 992px;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- 2. Reset & Temel ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -.011em;
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Sayfa tema zeminleri (body class) */
body.theme-blue        { background-color: var(--theme-blue); }
body.theme-yellow      { background-color: var(--theme-yellow); }
body.theme-yellow-soft { background-color: var(--theme-yellow-soft); }
body.theme-green-medium{ background-color: var(--theme-green-medium); }
body.theme-green-dark  { background-color: var(--theme-green-dark); color: var(--white); }
body.theme-gray        { background-color: var(--theme-gray); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. Tipografi ---------- */
h1, .h1 {
  font-weight: 800;
  font-size: clamp(42px, 3vw, 96px);
  color: var(--brand-blue);
  letter-spacing: -.04em;
  line-height: 1.05;
}
h2, .h2 {
  font-weight: 800;
  font-size: clamp(35px, 2.5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.1;
}
h3, .h3 {
  font-weight: 800;
  font-size: clamp(20px, 1.5vw, 40px);
  letter-spacing: -.04em;
}
h4, .h4 {
  font-weight: 300;
  font-size: clamp(20px, 1.5vw, 40px);
  letter-spacing: -.011em;
  line-height: 1.35;
}
h5, .h5 { font-weight: 700; font-size: clamp(16px, 1.3vw, 24px); }
p { line-height: 1.7; font-size: clamp(15px, 1vw, 18px); }
strong { font-weight: 800; }

/* Animasyonlu gradyan başlık (imza öğe) */
.multicolors {
  background: linear-gradient(269.79deg, #50dcc8 21.04%, #faf19d 50.46%, #00ff8c 81.77%);
  background-size: 150% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: anime 10s infinite linear;
}
@keyframes anime {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ---------- 4. Layout yardımcıları ---------- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 4vw; }
.container-fluid { width: 100%; padding: 0 4vw; }
.row { display: flex; flex-wrap: wrap; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.d-none { display: none !important; }
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.my-3 { margin: 1.5rem 0; } .my-4 { margin: 2rem 0; }

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
}

/* ---------- 5. Butonlar ---------- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-btn);
  font-weight: 800;
  font-size: clamp(13px, .95vw, 16px);
  text-transform: uppercase;
  letter-spacing: -.01em;
  padding: 16px 32px;
  max-height: 80px;
  overflow: hidden;
  transition: color .4s ease;
  z-index: 1;
  cursor: pointer;
}
.button::before, .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}

.button-primary { background-color: var(--neon-green); color: var(--brand-blue); }
.button-primary::before { background-color: var(--neon-green-3); }
.button-primary::after  { background-color: var(--neon-green-2); transition-delay: .05s; }
.button-primary:hover::before,
.button-primary:hover::after { transform: scaleX(1); }

.button-secondary {
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--brand-blue);
}
.button-secondary.on-dark { color: var(--white); border-color: var(--neon-green); }
.button-secondary::before { background-color: #ebfff6; }
.button-secondary::after  { background-color: #ccffe8; transition-delay: .05s; }
.button-secondary:hover { color: var(--brand-blue); border-color: #ccffe8; }
.button-secondary:hover::before,
.button-secondary:hover::after { transform: scaleX(1); }

.button-third {
  color: var(--ink);
  font-size: clamp(20px, 1.4vw, 28px);
  padding: 10px;
  background: transparent;
}
.button-icon::after { content: "→"; margin-left: 4px; }

/* ---------- 6. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4vw;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.site-header .logo { display: flex; align-items: center; }
.site-header .logo svg { height: 34px; width: auto; }

.main-menu { display: none; }
@media (min-width: 992px) {
  .main-menu { display: flex; gap: 8px; align-items: center; }
}
.menu-item { position: relative; }
.menu-item > a {
  display: flex; align-items: center; gap: 6px; padding: 14px 18px;
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  color: var(--ink); border-radius: 30px; transition: background .3s;
}
.menu-item:hover > a { background: var(--box-gray-2); }
.menu-caret { font-style: normal; font-size: 12px; transition: transform .3s; }
.menu-item:hover > a .menu-caret { transform: rotate(180deg); }

/* Büyük mega menü paneli (gerçek sitedeki kart-panel yapısı) —
   viewport merkezine sabitlenir, böylece kenardan taşmaz */
.mega-menu {
  position: fixed; top: 78px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  max-width: calc(100vw - 60px);
  padding: 24px; background: var(--white);
  border-radius: var(--r-mega);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
/* Görünmez köprü: menü öğesi ile panel arasındaki boşlukta hover kopmasın */
.menu-item::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 24px;
}
.menu-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu.items-3 { width: 720px; }
.mega-menu.items-4 { width: 940px; }
.mega-menu.items-5 { width: 1120px; max-width: calc(100vw - 60px); }

/* Mega menü kart öğesi — krem zemin, mavi yazı, sağ-altta görsel */
.mega-menu-item {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start;
  background: #f9f5ef; color: var(--brand-blue);
  font-weight: 800; font-size: clamp(15px, 1.05vw, 22px); line-height: 1.2;
  padding: 28px; border-radius: var(--r-box);
  flex: 1 1 200px; min-height: 200px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.mega-menu.items-5 .mega-menu-item { flex: 1 1 calc(20% - 16px); min-width: 190px; }
.mega-menu-item span { position: relative; z-index: 2; max-width: 70%; }
.mega-menu-item.has-img span { max-width: 65%; }
.mega-menu-item img {
  position: absolute; right: 12px; bottom: 12px;
  width: auto; max-width: 62%; max-height: 62%; object-fit: contain;
  transition: transform .4s ease;
}
.mega-menu-item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 0;
  background: var(--yellow-bg); z-index: 0; transition: height .4s ease;
}
.mega-menu-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13, 60, 148, .12); }
.mega-menu-item:hover::after { height: 46%; }
.mega-menu-item:hover img { transform: scale(1.06) rotate(-3deg); }

.header-buttons { display: flex; align-items: center; gap: 10px; }
.header-buttons .desktop-only { display: none; }
@media (min-width: 992px) { .header-buttons .desktop-only { display: inline-flex; } }

/* Dil dropdown */
.lang-wrapper { position: relative; }
.lang-button { display: flex; align-items: center; gap: 6px; font-weight: 700; padding: 10px 14px; border-radius: 30px; }
.lang-button:hover { background: var(--box-gray-2); }
.lang-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: var(--white); border-radius: var(--r-box);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12); padding: 8px; min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .3s;
}
.lang-wrapper:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; font-weight: 600; }
.lang-dropdown a:hover { background: var(--box-gray-2); }
.lang-dropdown .flag { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; }

/* Hamburger */
.hamburger {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--black); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
@media (min-width: 992px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 3px; border-radius: 3px; background: var(--white); transition: all .4s; }
.hamburger span:nth-child(3) { width: 14px; align-self: flex-start; margin-left: 15px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(41deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { width: 22px; margin-left: 0; transform: translateY(-8px) rotate(-41deg); }

/* Mobil menü overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 100px 6vw 40px;
  transform: translateX(100%); transition: transform .4s ease;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { display: block; padding: 16px 0; font-weight: 700; font-size: 20px; border-bottom: 1px solid #eee; }
.mobile-menu .sub a { padding-left: 20px; font-size: 16px; font-weight: 500; color: #555; }
.mobile-menu .m-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.mobile-menu .m-buttons a { border-bottom: none; text-align: center; }

/* ---------- 7. HERO (ana sayfa) ---------- */
.hero { padding: 60px 0 100px; }
.hero .row { align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1 1 45%; min-width: 300px; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text .lead { margin-bottom: 16px; }
.hero-text .lead p { font-weight: 300; font-size: clamp(16px, 1.3vw, 22px); color: #333; margin-bottom: 12px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-img { flex: 1 1 45%; min-width: 300px; display: flex; justify-content: center; }
.hero-img img { max-width: 520px; width: 100%; }

/* ---------- 8. Büyüme bölümü (fifth) ---------- */
.grow-section {
  position: relative; overflow: hidden;
  background: var(--brand-blue); color: var(--white);
  border-radius: 40px; margin: 40px 4vw; padding: 120px 8vw;
}
.grow-bg {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 30px; height: 100%; z-index: 0; opacity: .5;
}
.grow-bg .block { width: 18vw; max-width: 220px; border: 6vw solid #1d4baf; border-radius: 300px; height: 0; transition: height 1.2s cubic-bezier(.2,.8,.2,1); }
.grow-section.in .grow-bg .block.b1 { height: 40%; transition-delay: .1s; }
.grow-section.in .grow-bg .block.b2 { height: 70%; transition-delay: .25s; }
.grow-section.in .grow-bg .block.b3 { height: 90%; transition-delay: .4s; }
.grow-content { position: relative; z-index: 2; max-width: 640px; }
.grow-content h2 { color: var(--white); margin-bottom: 24px; }
.grow-content p { color: rgba(255, 255, 255, .85); margin-bottom: 14px; }
.grow-content .hero-buttons { margin-top: 24px; }

/* ---------- 9. Split içerik blokları ---------- */
.split { padding: 80px 0; }
.split .row { align-items: center; gap: 40px; }
.split .col { flex: 1 1 45%; min-width: 300px; }
.split .col.narrow { flex: 1 1 35%; }
.split h2 { margin-bottom: 20px; }
.split h4 { margin: 16px 0 24px; color: #333; }
.split .col-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.split img { border-radius: var(--r-box); }

/* ---------- 10. Referans slider ---------- */
.references { padding: 80px 0; text-align: center; }
.references h2 { margin-bottom: 50px; }
.marquee { overflow: hidden; width: 100%; margin: 14px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: scroll-x 30s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ref-item {
  height: 120px; min-width: 200px; border-radius: var(--r-pill);
  padding: 0 50px; display: flex; align-items: center; justify-content: center;
  background: var(--white); box-shadow: 0 4px 11px rgba(0, 0, 0, .06);
  font-weight: 800; font-size: 22px; color: #333; white-space: nowrap;
}

/* ---------- 11. Sayılarla bölümü ---------- */
.stats { padding: 80px 0; }
.stats .row { align-items: center; gap: 50px; }
.stats-boxes { flex: 1 1 45%; display: flex; flex-wrap: wrap; gap: 20px; min-width: 300px; }
.count-box {
  flex: 1 1 calc(50% - 20px); min-width: 200px; max-width: 260px;
  background: var(--black); color: var(--white); border-radius: var(--r-count);
  padding: 60px 3vw; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.count-box .icon { width: 56px; height: 56px; margin-bottom: 24px; color: var(--neon-green); }
.count-box .icon .ic { width: 100%; height: 100%; }
.count-box .number { font-size: clamp(40px, 4vw, 84px); font-weight: 800; line-height: 1; }
.count-box p { font-weight: 300; font-size: clamp(16px, 2vw, 28px); margin-top: 8px; color: #fff; }
.stats-text { flex: 1 1 45%; min-width: 300px; }
.stats-text h2 { margin-bottom: 24px; }
.stats-text p { color: #444; margin-bottom: 14px; }

/* ---------- 12. Accordion (SSS) ---------- */
.faq { padding: 60px 0; }
.faq > h2 { text-align: center; margin-bottom: 40px; }
.accordion { max-width: 980px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-item.hidden-item { display: none; }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; padding: 24px 20px; text-align: left;
  font-size: clamp(15px, 1.3vw, 24px); font-weight: 700; color: var(--brand-blue);
}
.accordion-header .chev { transition: transform .4s; font-size: 20px; flex-shrink: 0; }
.accordion-item.active .accordion-header .chev { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .5s ease; padding: 0 20px; }
.accordion-item.active .accordion-body { max-height: 1200px; }
.accordion-body-inner { padding: 0 0 24px; }
.accordion-body-inner p { color: #444; margin-bottom: 12px; }
.show-more-wrap { text-align: center; margin-top: 30px; }

/* ---------- 13. Kart-grid (landing) ---------- */
.landing-grid { padding: 40px 0 80px; }
.card-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card-comp { flex: 1 1 240px; min-width: 240px; max-width: 320px; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: rgba(194, 198, 201, .2); border-radius: var(--r-box);
  padding: 40px; min-height: 350px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card-comp.special .card { background: var(--white); }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, .1); }
.card-title {
  font-weight: 800; font-size: clamp(20px, 1.4vw, 32px); line-height: 1.15;
  color: var(--brand-blue); max-width: 80%; position: relative; z-index: 2;
}
.card-img {
  position: absolute; right: 24px; bottom: 24px;
  width: 110px; height: 110px; object-fit: contain; z-index: 1;
  transition: transform .4s ease;
}
.card:hover .card-img { transform: scale(1.08) rotate(-3deg); }
.landing.special { background: var(--brand-blue); padding: 60px 0; margin: 40px 0; }
.landing.special h3 { color: #fff; }
.landing.special h3 .multicolors { display: inline; }
.landing.special .card { background: #fff; }

/* ---------- 14. Transfer boxes (3'lü bilgi kutuları) ---------- */
.info-boxes { padding: 40px 0; }
.info-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.info-box {
  flex: 1 1 calc(33.333% - 20px); min-width: 260px;
  background: var(--box-gray); border-radius: var(--r-box); padding: 40px;
  display: flex; flex-direction: column;
}
.info-grid.cols-2 .info-box { flex: 1 1 calc(50% - 20px); }
.info-box .ib-icon { width: 60px; height: 60px; margin-bottom: 20px; border-radius: 14px; background: rgba(13,60,148,.08); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; }
.info-box .ib-icon .ic { width: 30px; height: 30px; }
.info-box h5 { margin-bottom: 16px; color: var(--brand-blue); }
.info-box p { color: #555; }

/* Genel ikon sarmalayıcı */
.ic { display: inline-flex; align-items: center; justify-content: center; }
.ic svg { width: 100%; height: 100%; display: block; }

/* Renkli şeritler */
.strip { padding: 100px 4vw; border-radius: var(--r-box); margin: 20px 0; }
.strip-green { background: var(--colorful-green); }
.strip-yellow { background: var(--colorful-yellow); }
.strip-blue { background: var(--colorful-blue); color: #fff; }
.strip-black { background: var(--black); color: #fff; }

/* Ribbon hero (ürün detay) */
.ribbon-hero { text-align: center; padding: 30px 0; }
.ribbon-hero h1 { margin-bottom: 20px; }
.band { width: 100%; height: 60px; background: repeating-linear-gradient(90deg, #ff5f6d 0 40px, #ffc371 40px 80px, #2bfb97 80px 120px, #4daac6 120px 160px, #a89cec 160px 200px); border-radius: 30px; margin: 20px 0; }

/* ---------- 15. İletişim ---------- */
.contact-page { padding: 40px 0 80px; }
.contact-page h1 { text-align: center; margin-bottom: 50px; }
.contact-row { display: flex; flex-wrap: wrap; gap: 24px; }
.contact-col { flex: 1 1 calc(50% - 24px); min-width: 300px; }
.contact-box {
  border: 1px solid var(--border-gray); border-radius: var(--r-box);
  padding: 40px; margin-bottom: 20px;
}
.contact-box.dark { background: var(--black); color: var(--white); }
.contact-box.dark h3, .contact-box.dark h5 { color: var(--white); }
.contact-box h5 { color: var(--neon-green); text-transform: uppercase; letter-spacing: .05em; }
.contact-box h3 { margin: 12px 0 24px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-group { flex: 1 1 calc(50% - 16px); min-width: 180px; margin-bottom: 16px; }
.form-group.full { flex: 1 1 100%; }
.form-control {
  width: 100%; padding: 16px 20px; border-radius: 12px;
  border: 1px solid #333; background: rgba(255, 255, 255, .05);
  color: var(--white); font-family: inherit; font-size: 15px;
}
.contact-box.dark .form-control::placeholder { color: #999; }
.form-control:focus { outline: none; border-color: var(--neon-green); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; font-size: 13px; color: #bbb; }
.form-check a { color: var(--neon-green); text-decoration: underline; }
.form-success, .form-error { display: none; text-align: center; padding: 20px 0; }
.contact-form.sent .form-fields { display: none; }
.contact-form.sent .form-success { display: block; }
.contact-side-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- 16. Yönetim kartları ---------- */
.team-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.team-card {
  flex: 1 1 calc(25% - 20px); min-width: 220px;
  background: var(--box-gray); border-radius: var(--r-box); padding: 24px;
  display: flex; flex-direction: column; transition: transform .3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card .avatar { width: 100%; aspect-ratio: 1; border-radius: 12px; background: linear-gradient(135deg, #d9dcde, #b4a9ef); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 800; color: #fff; }
.team-card h3 { font-size: 20px; display: flex; align-items: center; justify-content: space-between; }

/* ---------- 17. Pre-footer CTA (tenth) ---------- */
.cta-tenth {
  background: var(--brand-blue); color: var(--white);
  text-align: center; padding: 18vh 6vw 30vh;
  border-radius: 0 0 40vh 40vh; margin-top: 40px;
}
.cta-tenth h2 { font-size: clamp(30px, 4vw, 100px); line-height: 1.15; }
.cta-tenth h2 .muted { color: #6b8fd6; }
.cta-tenth .links-wrapper { max-width: 720px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 30px; align-items: center; }
.whatsapp-box { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; background: rgba(255,255,255,.08); padding: 24px 32px; border-radius: var(--r-box); }
.whatsapp-box .wa-icon { width: 48px; height: 48px; }
.whatsapp-box .wa-text small { display: block; opacity: .7; }
.whatsapp-box .wa-text .num { font-size: 22px; font-weight: 800; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.social-links a:hover { background: var(--neon-green); color: var(--brand-blue); }
.social-links svg { width: 22px; height: 22px; }

/* ---------- 18. FOOTER ---------- */
.site-footer { background: var(--white); padding: 40px 4vw 60px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-menu { flex: 1 1 55%; min-width: 320px; background: var(--box-gray-2); border-radius: var(--r-box); padding: 40px; display: flex; flex-wrap: wrap; gap: 30px; }
.footer-col { flex: 1 1 140px; }
.footer-col h5 { margin-bottom: 24px; text-transform: uppercase; }
.footer-col a { display: block; padding: 6px 0; color: #444; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--brand-blue); }
.footer-contact { flex: 1 1 35%; min-width: 300px; background: var(--box-gray-2); border-radius: var(--r-box); padding: 40px; }
.footer-contact h5 { margin-bottom: 20px; }
.office-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.office-tab { padding: 8px 14px; border-radius: 20px; background: #fff; font-size: 12px; font-weight: 600; }
.office-tab.active { background: var(--brand-blue); color: #fff; }
.office-pane { display: none; }
.office-pane.active { display: block; }
.office-pane .addr { font-size: 14px; line-height: 1.6; margin-bottom: 16px; color: #333; }
.office-info { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid #ddd; font-size: 13px; }
.office-info span:first-child { color: #888; }
.footer-partners { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid #ddd; }
.footer-partners .partner { font-size: 12px; font-weight: 700; color: #999; padding: 8px 14px; border: 1px solid #ddd; border-radius: 8px; }
.footer-bottom { text-align: center; margin: 40px 0 20px; }
.footer-bottom svg { height: 30px; margin: 0 auto; }
.footer-sub-menu { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-top: 20px; }
.footer-sub-menu a { font-size: 13px; color: #666; }
.footer-sub-menu a:hover { color: var(--brand-blue); }

/* Sabit mobil whatsapp */
.mobile-wa { position: fixed; right: 16px; bottom: 16px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.mobile-wa svg { width: 30px; height: 30px; }
@media (min-width: 992px) { .mobile-wa { display: none; } }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; padding: 20px 4vw 0; font-size: 13px; color: #888; }
.breadcrumb a:hover { color: var(--brand-blue); }
.breadcrumb .sep { color: #ccc; }

/* Page title (alt sayfa) */
.page-title { text-align: center; padding: 30px 4vw 10px; }
.page-title h1 { padding: 10px 0; }

/* ---------- 18b. Başvuru sayfası ---------- */
.apply-page { padding: 40px 0 80px; }
.apply-page > h1 { text-align: center; margin-bottom: 12px; }
.apply-page > .lead { text-align: center; color: #444; max-width: 640px; margin: 0 auto 50px; }
.apply-row { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.apply-form-col { flex: 1 1 55%; min-width: 320px; }
.apply-benefits-col { flex: 1 1 35%; min-width: 300px; padding: 20px 0; }
.apply-benefits-col h2 { margin-bottom: 24px; }
.benefit-list li { position: relative; padding: 14px 0 14px 40px; border-bottom: 1px solid #eee; font-size: clamp(15px,1.1vw,18px); color: #333; }
.benefit-list li::before { content: "✓"; position: absolute; left: 0; top: 12px; width: 26px; height: 26px; background: var(--neon-green); color: var(--brand-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.apply-help { margin-top: 30px; padding: 24px; background: var(--box-gray-2); border-radius: var(--r-box); }
.apply-help p { margin-bottom: 12px; font-weight: 600; }
.fg-label { display: block; margin-bottom: 12px; color: #bbb; font-size: 14px; font-weight: 600; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-grid label { display: flex; align-items: center; gap: 8px; color: #ddd; font-size: 14px; cursor: pointer; }
.checkbox-grid input { width: 18px; height: 18px; accent-color: var(--neon-green); }
select.form-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
select.form-control option { color: #1b1c1a; }

/* ---------- 18b-2. Çok adımlı başvuru sihirbazı ---------- */
.apply-wizard { max-width: 860px; margin: 0 auto; }
.wizard-progress { display: flex; gap: 8px; margin-bottom: 30px; }
.wp-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; color: #999; font-size: clamp(11px,1vw,14px); font-weight: 600; text-align: center; }
.wp-step .wp-num { width: 40px; height: 40px; border-radius: 50%; background: #eee; color: #999; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; transition: all .3s; z-index: 2; }
.wp-step::before { content: ""; position: absolute; top: 20px; left: -50%; width: 100%; height: 3px; background: #eee; z-index: 1; }
.wp-step:first-child::before { display: none; }
.wp-step.active .wp-num, .wp-step.done .wp-num { background: var(--neon-green); color: var(--brand-blue); }
.wp-step.active, .wp-step.done { color: var(--brand-blue); }
.wp-step.done::before { background: var(--neon-green); }

.wizard-card { background: var(--white); border: 1px solid var(--border-gray); border-radius: 24px; padding: 40px; box-shadow: 0 20px 60px rgba(13,60,148,.06); }
.form-step { display: none; animation: fadeStep .4s ease; }
.form-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.form-step h3 { color: var(--brand-blue); margin-bottom: 6px; }
.form-step .step-sub { color: #777; margin-bottom: 28px; font-size: 15px; }

/* Açık form alanları (başvuru) */
.apply-light .form-group { margin-bottom: 18px; }
.apply-light .fld-label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: #555; }
.apply-light .form-control { background: #f6f7f9; border: 1px solid #e2e5ea; color: var(--ink); border-radius: 12px; padding: 15px 18px; }
.apply-light .form-control::placeholder { color: #9aa0a8; }
.apply-light .form-control:focus { border-color: var(--brand-blue); background: #fff; }
.apply-light select.form-control option { color: var(--ink); }

/* Ürün seçim kartları (radio/checkbox kart) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.choice-card { position: relative; border: 2px solid #e2e5ea; border-radius: var(--r-box); padding: 20px; cursor: pointer; transition: all .25s; display: flex; align-items: flex-start; gap: 12px; }
.choice-card:hover { border-color: var(--neon-green); }
.choice-card input { margin-top: 3px; width: 20px; height: 20px; accent-color: var(--brand-blue); flex-shrink: 0; }
.choice-card .cc-title { font-weight: 700; color: var(--brand-blue); display: block; }
.choice-card .cc-desc { font-size: 13px; color: #777; margin-top: 4px; }
.choice-card:has(input:checked) { border-color: var(--brand-blue); background: #f2f7ff; }

.biz-type { display: flex; flex-wrap: wrap; gap: 10px; }
.biz-type label { flex: 1; min-width: 120px; text-align: center; border: 2px solid #e2e5ea; border-radius: 12px; padding: 14px; cursor: pointer; font-weight: 600; color: #555; transition: all .25s; }
.biz-type input { display: none; }
.biz-type label:has(input:checked) { border-color: var(--brand-blue); background: #f2f7ff; color: var(--brand-blue); }

.step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.step-nav .spacer { flex: 1; }
.summary-box { background: #f6f7f9; border-radius: var(--r-box); padding: 24px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e6e8ec; font-size: 14px; gap: 16px; }
.summary-row:last-child { border-bottom: none; }
.summary-row .sr-label { color: #888; }
.summary-row .sr-val { color: var(--ink); font-weight: 600; text-align: right; }
.wizard-success { display: none; text-align: center; padding: 40px 20px; }
.wizard-success.show { display: block; }
.wizard-success .ok-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--neon-green); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-size: 44px; margin: 0 auto 24px; }
.apply-wizard.completed .wizard-progress, .apply-wizard.completed .apply-form-wrap { display: none; }

/* Güven şeridi */
.apply-trust { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.apply-trust .t-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; font-weight: 600; }
.apply-trust .t-item::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: var(--neon-green); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }

/* ===== İTİRAZ / İşlem Sorgulama Sihirbazı ===== */
.dispute-wizard .dispute-screen { display: none; animation: fadeStep .4s ease; }
.dispute-wizard .dispute-screen.active { display: block; }
.kvkk-note { display: flex; gap: 12px; align-items: flex-start; background: var(--box-gray-2); border-radius: var(--r-box); padding: 16px 18px; margin-bottom: 24px; font-size: 13px; color: #555; }
.kvkk-note .kn-ic { font-size: 18px; flex-shrink: 0; }
.kvkk-note a { color: var(--brand-blue); font-weight: 600; }
.dispute-attempts { background: #fff4e5; border: 1px solid #ffd9a0; color: #8a5a00; border-radius: 12px; padding: 12px 16px; font-size: 13px; margin: 16px 0; }
.dispute-attempts.danger { background: #fdeaea; border-color: #f5b5b5; color: #a12727; }
.dispute-result-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800; margin-bottom: 20px; }
.dispute-result-icon.ok { background: var(--neon-green); color: var(--brand-blue); }
.dispute-result-icon.warn { background: #fdeaea; color: #c23a3a; }
.dispute-result-icon.info { background: #e7edfb; color: var(--brand-blue); }
.disclosure-card { background: var(--box-gray); border-radius: var(--r-box); padding: 28px; margin: 20px 0; display: flex; gap: 18px; align-items: flex-start; }
.disclosure-card .dc-logo { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; flex-shrink: 0; }
.disclosure-card .dc-body strong { display: block; color: var(--brand-blue); font-size: 16px; margin-bottom: 4px; }
.disclosure-card .dc-body span { display: block; color: #666; font-size: 13.5px; }
.disclosure-card .dc-amount { margin-top: 10px; font-weight: 800; color: var(--ink); font-size: 18px; }
.dispute-choice-nav { flex-wrap: wrap; }
.dispute-fineprint { font-size: 12px; color: #999; margin-top: 12px; }

/* ---- Talep formu: destekleyici belge yükleme ---- */
.fld-optional { font-weight: 400; color: #999; font-size: 12px; }
.dispute-file-drop { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: var(--box-gray); border: 1.5px dashed #c9cedb; border-radius: var(--r-box); padding: 14px 16px; }
.file-pick-btn { flex-shrink: 0; padding: 9px 16px; font-size: 13px; }
.file-drop-hint { font-size: 12px; color: #888; line-height: 1.5; }
.file-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.file-list:empty { display: none; }
.file-chip { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e2e5ea; border-radius: 10px; padding: 8px 12px; font-size: 13px; }
.file-chip .fc-ic { flex-shrink: 0; }
.file-chip .fc-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--ink); font-weight: 600; }
.file-chip .fc-size { flex-shrink: 0; color: #999; font-size: 11px; }
.file-chip .fc-remove { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: #f2f2f2; color: #888; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; line-height: 1; border: none; }
.file-chip .fc-remove:hover { background: #fdeaea; color: #c23a3a; }

/* ---- Talep formu: işlem seçim listesi ---- */
.txn-select-wrap { animation: fadeStep .35s ease; }
.txn-choice-list { display: flex; flex-direction: column; gap: 10px; max-height: 340px; overflow-y: auto; padding: 2px; }
.txn-choice { display: flex; align-items: center; gap: 12px; border: 2px solid #e2e5ea; border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: border-color .2s, background .2s; }
.txn-choice:hover { border-color: var(--brand-blue); }
.txn-choice:has(input:checked) { border-color: var(--brand-blue); background: #f2f7ff; }
.txn-choice input { width: 18px; height: 18px; accent-color: var(--brand-blue); flex-shrink: 0; }
.txn-logo { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.txn-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.txn-merch { font-weight: 700; color: var(--ink); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.txn-meta { font-size: 12px; color: #888; }
.txn-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.txn-amt { font-weight: 800; color: var(--ink); font-size: 14px; }
.txn-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 8px; }
.txn-badge.settled { background: #e7edfb; color: var(--brand-blue); }
.txn-badge.pending { background: #fff4e5; color: #a86400; }
.txn-empty { color: #888; font-size: 13px; padding: 10px 0; }
.opt-toggle { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; margin: 4px 0 16px; cursor: pointer; }
.opt-toggle input { width: 18px; height: 18px; accent-color: var(--brand-blue); }
#disputeReqError:not(:empty) { background: #fdeaea; border: 1px solid #f5b5b5; color: #a12727; border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; font-size: 13px; }

/* ---- Talep numarası kutusu ---- */
.case-id-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--brand-blue); color: #fff; border-radius: 14px; padding: 18px 22px; margin: 8px 0 24px; }
.case-id-box .cib-label { display: block; font-size: 12px; opacity: .8; }
.case-id-box .cib-id { display: block; font-size: clamp(18px, 2.2vw, 26px); font-weight: 800; letter-spacing: .02em; }
.case-id-box .cib-copy { background: rgba(255,255,255,.16); color: #fff; border-radius: 20px; padding: 8px 16px; font-size: 12px; font-weight: 700; transition: background .2s; }
.case-id-box .cib-copy:hover { background: rgba(255,255,255,.28); }

/* ---- Durum takip (kargo tarzı stepper) ---- */
.dispute-tracker { display: flex; flex-direction: column; gap: 0; margin: 8px 0 24px; }
.track-step { display: flex; gap: 14px; position: relative; padding-bottom: 22px; }
.track-step:last-child { padding-bottom: 0; }
.track-step::before { content: ""; position: absolute; left: 15px; top: 32px; bottom: -4px; width: 2px; background: #e2e5ea; }
.track-step:last-child::before { display: none; }
.track-step.done::before { background: var(--neon-green); }
.track-dot { width: 32px; height: 32px; border-radius: 50%; background: #e9ecf2; color: #9aa0a8; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; z-index: 1; transition: all .3s; }
.track-step.done .track-dot { background: var(--neon-green); color: var(--brand-blue); }
.track-step.active .track-dot { background: var(--brand-blue); color: #fff; box-shadow: 0 0 0 4px rgba(13,60,148,.15); }
.track-info { display: flex; flex-direction: column; padding-top: 4px; }
.track-info strong { color: #9aa0a8; font-size: 15px; transition: color .3s; }
.track-step.done .track-info strong, .track-step.active .track-info strong { color: var(--ink); }
.track-info span { font-size: 12.5px; color: #999; }
.track-step.active .track-info strong::after { content: " • sürüyor"; color: var(--brand-blue); font-size: 12px; font-weight: 600; }

/* ---- İtiraz giriş seçimi (yeni / durum sorgu) ---- */
.dispute-entry { max-width: 760px; margin: 0 auto; }
.entry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.entry-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; text-align: left; background: #fff; border: 2px solid var(--border-gray); border-radius: var(--r-box); padding: 30px 28px; cursor: pointer; transition: border-color .25s, transform .25s, box-shadow .25s; font-family: inherit; }
.entry-card:hover { border-color: var(--brand-blue); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(13,60,148,.08); }
.entry-card .entry-ic { width: 52px; height: 52px; border-radius: 14px; background: #f2f7ff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; }
.entry-card strong { font-size: 18px; color: var(--brand-blue); }
.entry-card > span:last-child { font-size: 13.5px; color: #666; line-height: 1.5; }

/* ---- İtiraz durumu sorgu: son kayıt chip'leri ---- */
.status-recent { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 2px 0 14px; }
.status-recent .sr-hint { font-size: 12px; color: #888; width: 100%; margin-bottom: 2px; }
.recent-chip { background: #f2f7ff; color: var(--brand-blue); border: 1px solid #d8e4fb; border-radius: 20px; padding: 6px 14px; font-size: 12.5px; font-weight: 700; font-family: inherit; cursor: pointer; transition: background .2s, color .2s; }
.recent-chip:hover { background: var(--brand-blue); color: #fff; }
.status-notfound, #statusResult { animation: fadeStep .35s ease; }

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

@media (max-width: 600px) {
  .wizard-card { padding: 24px; }
  .wp-step { font-size: 0; }
  .wp-step .wp-num { width: 34px; height: 34px; }
  .txn-choice { flex-wrap: wrap; }
  .case-id-box { flex-direction: column; align-items: flex-start; }
}

/* ---------- 18c. Panel giriş sayfası ---------- */
.login-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 4vw; }
.login-card { width: 100%; max-width: 460px; background: var(--black); color: var(--white); border-radius: 24px; padding: 48px 40px; text-align: center; }
.login-card h2 { color: #fff; margin-bottom: 8px; }
.login-card > p { color: #aaa; margin-bottom: 30px; }
.login-card .form-group { flex: 1 1 100%; }
.login-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 13px; }
.login-row .remember { display: flex; gap: 8px; align-items: center; color: #ccc; }
.login-row a { color: var(--neon-green); }
.w-full { width: 100%; }
.login-foot { margin-top: 24px; color: #aaa; font-size: 14px; }
.login-foot a { color: var(--neon-green); font-weight: 700; }

/* ---------- 18d. Yasal / metin sayfaları ---------- */
.legal { padding: 20px 0 80px; max-width: 900px; }
.legal-block { margin-bottom: 32px; }
.legal-block h3 { color: var(--brand-blue); margin-bottom: 14px; }
.legal-block p { color: #444; margin-bottom: 12px; }
.legal-intro { color: #555; margin-bottom: 40px; font-size: clamp(16px,1.2vw,20px); }
.doc-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.doc-card { flex: 1 1 calc(33.333% - 16px); min-width: 240px; background: var(--box-gray); border-radius: var(--r-box); padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; color: var(--brand-blue); transition: transform .3s, box-shadow .3s; }
.doc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.doc-card .doc-arrow { color: var(--neon-green); font-size: 20px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table td { padding: 14px 16px; border-bottom: 1px solid #eee; font-size: 15px; }
.info-table td:first-child { color: #888; width: 40%; font-weight: 600; }

@media (max-width: 700px) { .checkbox-grid { grid-template-columns: 1fr; } .doc-card { flex: 1 1 100%; } }

/* ---------- 19. Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- 20. Loader ---------- */
.overlay-loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}
.overlay-loader.hidden { opacity: 0; visibility: hidden; }
.overlay-loader .spinner { width: 48px; height: 48px; border: 4px solid var(--box-gray-3); border-top-color: var(--neon-green); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 21. Responsive ---------- */
@media (max-width: 991px) {
  .card-comp { flex: 1 1 100%; }
  .info-box { flex: 1 1 100%; }
  .team-card { flex: 1 1 calc(50% - 20px); }
  .count-box { flex: 1 1 calc(50% - 20px); }
  .grow-section { padding: 80px 6vw; margin: 20px; }
  .cta-tenth { padding: 12vh 6vw 20vh; border-radius: 0 0 20vh 20vh; }
  .cta-tenth h2 { font-size: clamp(28px, 8vw, 60px); }
  h4, .h4 { font-size: clamp(18px, 4vw, 24px); }
}
@media (max-width: 600px) {
  .team-card { flex: 1 1 100%; }
  .count-box { flex: 1 1 100%; max-width: none; }
  .footer-menu, .footer-contact { padding: 24px; }
}

/* ============================================================
   22. 2. TUR BİLEŞENLERİ (ürün detay, formlar, timeline, arama,
       çerez bandı, bio modal, kariyer, ofisler, bayraklar)
   ============================================================ */

/* İkonlu özellik listesi */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: #333; font-size: clamp(15px,1.1vw,18px); line-height: 1.5; }
.feature-list li .ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--neon-green); color: var(--brand-blue); padding: 4px; margin-top: 2px; }
.caps-section h2 { margin-bottom: 24px; }
.caps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
@media (max-width: 700px) { .caps-grid { grid-template-columns: 1fr; } }

/* Ribbon hero (ürün detay üst bölümü) */
.ribbon-hero { padding: 30px 0 10px; }
.ribbon-hero-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.ribbon-hero-text { flex: 1 1 50%; min-width: 300px; }
.ribbon-hero-text h1 { margin-bottom: 18px; }
.ribbon-tagline { font-size: clamp(20px,2vw,34px); font-weight: 800; color: var(--brand-blue); line-height: 1.15; margin-bottom: 14px; letter-spacing: -.02em; }
.ribbon-intro { font-size: clamp(15px,1.1vw,18px); color: #444; max-width: 560px; }
.ribbon-hero-img { flex: 1 1 40%; min-width: 260px; display: flex; justify-content: center; }
.ribbon-hero-img img { max-width: 420px; width: 100%; }

/* Sayfa içi (açık zeminli) talep formu */
.inline-form-section { padding: 50px 0; }
.inline-form-card { background: #fff; border-radius: 24px; padding: 48px; box-shadow: 0 30px 80px rgba(13,60,148,.10); display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.inline-form-card .if-head { flex: 1 1 320px; }
.inline-form-card .if-head h2 { color: var(--brand-blue); margin-bottom: 14px; }
.inline-form-card .if-head p { color: #555; }
.inline-form-card .contact-form { flex: 1 1 420px; min-width: 300px; }
.inline-contact .form-control { background: #f6f7f9; border: 1px solid #e2e5ea; color: var(--ink); }
.inline-contact .form-control::placeholder { color: #9aa0a8; }
.inline-contact .form-control:focus { border-color: var(--brand-blue); background: #fff; }
.inline-contact .form-check { color: #666; }
.inline-contact .form-check a { color: var(--brand-blue); }
.inline-contact .form-success { color: #222; }
.inline-contact .form-success h3 { color: var(--brand-blue); }
.inline-contact .form-success p { color: #555; }
.inline-contact .ok-badge { width: 64px; height: 64px; border-radius: 50%; background: var(--neon-green); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.inline-contact .ok-badge .ic { width: 34px; height: 34px; }

/* Renkli şerit bölümleri metin rengi */
.strip.reveal h2 { color: inherit; }
.strip-blue h2, .strip-black h2 { color: #fff; }
.strip-blue p, .strip-black p { color: rgba(255,255,255,.85); }
.strip-blue { background: var(--brand-blue); }

/* Zaman çizelgesi */
.timeline-section { padding: 50px 0; }
.timeline-section > h2 { margin-bottom: 40px; }
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 90px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(#50dcc8, #00ff8c); }
.tl-item { display: flex; align-items: flex-start; gap: 24px; padding: 16px 0; position: relative; }
.tl-year { flex: 0 0 70px; text-align: right; font-weight: 800; font-size: clamp(18px,1.4vw,24px); color: var(--brand-blue); }
.tl-dot { flex: 0 0 14px; width: 14px; height: 14px; border-radius: 50%; background: var(--neon-green); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--neon-green); margin-top: 6px; position: relative; z-index: 2; }
.tl-body { flex: 1; }
.tl-body p { color: #444; }

/* NEREDEYİZ ülke gridi */
.country-section { padding: 50px 0; }
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.country-cell { background: var(--box-gray); border-radius: var(--r-box); padding: 24px; display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--brand-blue); }
@media (max-width: 700px) { .country-grid { grid-template-columns: 1fr 1fr; } }

/* Bayraklar (basit CSS bayrakları) */
.flag { width: 24px; height: 16px; border-radius: 3px; display: inline-block; flex-shrink: 0; background-size: cover; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.flag-tr { background: #e30a17; }
.flag-gb { background: linear-gradient(#012169,#012169); }
.flag-az { background: linear-gradient(#3f9c35 0 33%, #ed2939 33% 66%, #00b5e2 66%); }
.flag-ge { background: #fff; position: relative; }
.flag-ge::after { content: "✚"; position: absolute; inset: 0; color: #f00; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.flag-uz { background: linear-gradient(#0099b5 0 33%, #fff 33% 66%, #1eb53a 66%); }
.flag-ru { background: linear-gradient(#fff 0 33%, #0039a6 33% 66%, #d52b1e 66%); }

/* Kurumsal yönetim: grup başlıkları + kart + bio modal */
.team-section { padding: 20px 0 80px; }
.team-group-title { color: var(--brand-blue); margin: 40px 0 20px; font-size: clamp(18px,1.6vw,28px); }
.team-group-title:first-child { margin-top: 0; }
.team-card { flex: 1 1 calc(25% - 20px); min-width: 220px; background: var(--box-gray); border-radius: var(--r-box); padding: 20px; display: flex; align-items: center; gap: 14px; text-align: left; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.team-card .avatar { width: 60px; height: 60px; flex-shrink: 0; margin: 0; aspect-ratio: auto; border-radius: 14px; font-size: 22px; }
.team-card .tc-info { flex: 1; display: flex; flex-direction: column; }
.team-card .tc-info h3 { font-size: 17px; display: block; color: var(--ink); }
.team-card .tc-title { font-size: 12px; color: #777; margin-top: 2px; }
.team-card .tc-arrow { color: var(--neon-green); font-weight: 800; font-size: 18px; }
.bio-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(13,30,60,.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 20px; }
.bio-modal.active { display: flex; }
.bio-modal-inner { background: #fff; border-radius: 24px; padding: 40px; max-width: 520px; width: 100%; position: relative; text-align: center; animation: fadeStep .35s ease; }
.bio-close { position: absolute; top: 16px; right: 20px; font-size: 30px; line-height: 1; color: #999; }
.bio-avatar { width: 88px; height: 88px; border-radius: 20px; background: linear-gradient(135deg,#d9dcde,#b4a9ef); color: #fff; font-weight: 800; font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.bio-modal-inner h3 { color: var(--brand-blue); }
.bio-title { display: block; color: var(--neon-green); filter: brightness(.7); font-weight: 700; margin: 6px 0 18px; }
.bio-modal-inner p { color: #555; line-height: 1.7; }

/* Kariyer sayfası */
.career-form-section { display: flex; gap: 30px; flex-wrap: wrap; padding: 40px 0 80px; align-items: flex-start; }
.career-links { flex: 1 1 320px; background: var(--brand-blue); color: #fff; border-radius: 24px; padding: 40px; }
.career-links h2 { color: #fff; margin-bottom: 16px; }
.career-links p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.career-links .col-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.career-links .button-secondary { color: #fff; }
.career-form-card { flex: 1 1 440px; min-width: 300px; background: #fff; border: 1px solid var(--border-gray); border-radius: 24px; padding: 40px; box-shadow: 0 20px 60px rgba(13,60,148,.06); }
.career-form-card > h3 { color: var(--brand-blue); }
.file-drop { display: flex; align-items: center; justify-content: center; padding: 22px; border: 2px dashed #c9cfd8; border-radius: 12px; cursor: pointer; transition: all .25s; text-align: center; }
.file-drop:hover { border-color: var(--brand-blue); background: #f2f7ff; }
.file-drop.has-file { border-color: var(--neon-green); border-style: solid; background: #f2fff9; }
.file-drop input { display: none; }
.file-drop-text { color: #777; font-size: 14px; }

/* İştirak meta etiketleri */
.sub-metas { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.sub-meta { font-size: 12px; font-weight: 600; color: var(--brand-blue); background: rgba(13,60,148,.08); padding: 6px 12px; border-radius: 20px; }

/* İletişim ofis kartları */
.offices-section { padding: 40px 0 80px; }
.offices-section > h2 { margin-bottom: 10px; }
.offices-sub { color: var(--brand-blue); margin: 30px 0 16px; font-size: clamp(18px,1.4vw,24px); }
.office-cards { display: flex; flex-wrap: wrap; gap: 16px; }
.office-card { flex: 1 1 calc(25% - 16px); min-width: 240px; background: var(--box-gray); border-radius: var(--r-box); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.office-card h5 { color: var(--brand-blue); }
.office-card p { color: #555; font-size: 14px; flex: 1; }
.office-card .button { align-self: flex-start; padding: 10px 20px; }
@media (max-width: 900px) { .office-card { flex: 1 1 calc(50% - 16px); } }

/* Arama overlay */
.search-overlay { position: fixed; inset: 0; z-index: 1500; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); display: flex; align-items: flex-start; justify-content: center; padding: 12vh 6vw; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.search-overlay.active { opacity: 1; visibility: visible; }
.search-close { position: fixed; top: 24px; right: 32px; font-size: 40px; line-height: 1; color: var(--brand-blue); }
.search-wrapper { width: 100%; max-width: 720px; }
.search-label { display: block; font-weight: 800; font-size: clamp(24px,3vw,44px); color: var(--brand-blue); margin-bottom: 20px; letter-spacing: -.03em; }
#searchInput { width: 100%; padding: 20px 24px; border: 2px solid #e2e5ea; border-radius: 16px; font-family: inherit; font-size: 18px; color: var(--ink); }
#searchInput:focus { outline: none; border-color: var(--neon-green); }
.search-results { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; max-height: 46vh; overflow-y: auto; }
.search-results a { padding: 14px 20px; border-radius: 12px; font-weight: 600; color: var(--brand-blue); transition: background .2s; }
.search-results a:hover { background: var(--box-gray-2); }
.search-results .no-result { padding: 14px 20px; color: #999; }

/* Çerez bandı */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1400; max-width: 520px; background: #fff; border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.22); padding: 24px 28px; transform: translateY(140%); opacity: 0; transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .5s; }
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-text strong { color: var(--brand-blue); font-size: 16px; }
.cookie-text p { color: #555; font-size: 13px; margin-top: 6px; }
.cookie-text a { color: var(--brand-blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; margin-top: 18px; }
.cookie-actions .button { flex: 1; padding: 12px 20px; }

/* Footer ülke accordion'ları */
.country-accordion { max-width: none; margin: 0; }
.country-accordion .accordion-item { border-bottom: 1px solid #ddd; }
.country-accordion .accordion-header { padding: 16px 4px; font-size: 15px; }
.country-accordion .accordion-body-inner { padding: 0 0 18px; }
.country-accordion .addr { font-size: 14px; line-height: 1.6; margin-bottom: 12px; color: #333; }

/* Temaya göre metin kontrastı (koyu zeminli ürün sayfaları) */
body.theme-green-medium { color: #fff; }
body.theme-green-medium h2, body.theme-green-medium h3, body.theme-green-medium h4,
body.theme-green-dark h2, body.theme-green-dark h3, body.theme-green-dark h4 { color: #fff; }
body.theme-green-medium .ribbon-tagline, body.theme-green-dark .ribbon-tagline { color: #fff; }
body.theme-green-medium .ribbon-intro, body.theme-green-medium .split h4, body.theme-green-medium .feature-list li,
body.theme-green-dark .ribbon-intro, body.theme-green-dark .split h4, body.theme-green-dark .feature-list li { color: rgba(255,255,255,.9); }
body.theme-green-medium .feature-list li .ic, body.theme-green-dark .feature-list li .ic { color: var(--brand-blue); }
/* Bilgi kutuları ve formlar temalı sayfalarda beyaz kart olarak okunur kalır */
body[class*="theme-"] .info-box, body[class*="theme-"] .inline-form-card { background: #fff; }
body[class*="theme-"] .info-box h5, body[class*="theme-"] .info-box p { color: inherit; }
body[class*="theme-"] .info-box h5 { color: var(--brand-blue); }
body[class*="theme-"] .info-box p { color: #555; }

@media (max-width: 991px) {
  .inline-form-card { padding: 32px 24px; }
  .career-links, .career-form-card { flex: 1 1 100%; }
  .office-card { flex: 1 1 100%; }
  .timeline::before { left: 78px; }
  .ribbon-hero-img { order: -1; }
}

/* ============================================================
   23. 4. TUR CİLA (wordmark logolar, mobil arama, belge modalı,
       çerez ayarları paneli)
   ============================================================ */

/* Referans wordmark logoları */
.ref-logo { height: 34px; width: auto; display: block; }
.ref-item svg.ref-logo text { letter-spacing: -.02em; }

/* Footer partner wordmark logoları */
.footer-partners .partner { padding: 0; border: none; background: none; }
.partner-logo { height: 24px; width: auto; display: block; opacity: .85; transition: opacity .2s; }
.footer-partners .partner:hover .partner-logo { opacity: 1; }

/* Mobil menü arama tetikleyicisi */
.mobile-search-toggle {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 16px 18px; margin-bottom: 8px; border-radius: 14px;
  background: var(--box-gray-2); color: #555; font-weight: 600; font-size: 16px;
  border-bottom: none;
}
.mobile-search-toggle svg { width: 20px; height: 20px; }

/* Yasal belge modalı */
.doc-modal .doc-badge { width: 60px; height: 60px; border-radius: 16px; background: rgba(13,60,148,.08); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.doc-modal .doc-badge .ic { width: 30px; height: 30px; }
.doc-modal h3 { color: var(--brand-blue); margin-bottom: 12px; }
.doc-modal .doc-note { color: #777; font-size: 13px; margin-bottom: 16px; padding: 10px 14px; background: #f6f7f9; border-radius: 10px; }
.doc-modal p { color: #555; line-height: 1.7; margin-bottom: 12px; }
.doc-modal a { color: var(--brand-blue); text-decoration: underline; }
button.doc-card { font: inherit; width: 100%; }

/* Çerez ayarları paneli */
.cookie-settings { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #eee; }
.cookie-settings[hidden] { display: none; }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
.cookie-toggle span { display: flex; flex-direction: column; }
.cookie-toggle strong { color: var(--brand-blue); font-size: 14px; }
.cookie-toggle small { color: #888; font-size: 12px; }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--neon-green); flex-shrink: 0; }
.cookie-toggle input:disabled { accent-color: #bbb; }
.cookie-banner .cookie-config { padding: 12px 12px; color: var(--brand-blue); flex: 0 0 auto; }
.cookie-banner.expanded { max-width: 460px; }

/* Hikayemiz siyah şerit görsel bloğu */
.strip-image { text-align: center; padding: 40px 4vw; }
.strip-image img { max-width: 520px; width: 100%; margin: 0 auto; border-radius: var(--r-box); }
