/* ===========================
   NVC Gıda — Corporate Theme
   Palette: navy / gray / white
   =========================== */

:root {
  /* Brand palette — derived from NVC_Logo.svg (orange + black) */
  --navy-900: #1a1a1a;
  --navy-800: #262626;
  --navy-700: #404040;
  --navy-600: #595959;
  --navy-500: #737373;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d6d6d6;
  --gray-200: #ececec;
  --gray-100: #f6f6f6;
  --white: #ffffff;
  --accent: #B87333;
  --accent-dark: #985E28;
  --accent-soft: #f0dfc8;
  --accent-rgb: 184, 115, 51;

  /* Powered-by badge — orange palette */
  --tpb-bg-1: #1a1208;
  --tpb-bg-2: #2a1d0a;
  --tpb-bg-3: #1f1408;
  --tpb-glow: rgba(255, 140, 0, .35);
  --tpb-glow-soft: rgba(255, 165, 50, .2);
  --tpb-name-from: #fff3e0;
  --tpb-name-mid:  #ffcd99;
  --tpb-name-to:   #ff8c00;
  --tpb-tag-from:  #ffe0c0;
  --tpb-tag-to:    #e57e00;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);

  --container: 1180px;
  --header-h: 160px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Turquoise theme override (toggled via [data-theme="turquoise"] on <html>) */
[data-theme="turquoise"] {
  --accent: #00B4D8;
  --accent-dark: #0099b8;
  --accent-soft: #cceff6;
  --accent-rgb: 0, 180, 216;

  /* Powered-by badge — turquoise palette */
  --tpb-bg-1: #07181d;
  --tpb-bg-2: #082a2f;
  --tpb-bg-3: #0a2228;
  --tpb-glow: rgba(0, 180, 216, .35);
  --tpb-glow-soft: rgba(45, 212, 200, .2);
  --tpb-name-from: #e0fbff;
  --tpb-name-mid:  #99e6f5;
  --tpb-name-to:   #00b4d8;
  --tpb-tag-from:  #ccf0f8;
  --tpb-tag-to:    #0099b8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--navy-500); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.125rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; color: var(--gray-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
/* ---------- Topbar (en üst iletişim + sosyal medya barı) ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
}
.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.45) 30%,
    rgba(var(--accent-rgb), 0.45) 70%,
    transparent 100%);
  pointer-events: none;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.topbar-left a:hover { color: var(--accent); }
.topbar-left a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  gap: 8px;
}
.topbar-right a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.topbar-right a:hover {
  color: #fff;
  background: rgba(var(--accent-rgb), 0.22);
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-1px);
}
.topbar-right a svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .topbar { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: radial-gradient(ellipse at 18% 50%, rgba(var(--accent-rgb), 0.10), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
/* Alt kenarda accent gradyan çizgi */
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.45) 30%,
    rgba(var(--accent-rgb), 0.45) 70%,
    transparent 100%);
  pointer-events: none;
}
.header-inner { position: relative; z-index: 1; }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}
.header-inner > .logo { justify-self: start; }
.header-inner > .main-nav { justify-self: center; }

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo:hover { transform: scale(1.04); }
.logo .logo-img {
  transition: filter 0.3s ease;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 4px 14px rgba(var(--accent-rgb), 0.35));
}
.logo-mark {
  background: var(--navy-900);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.logo-text {
  color: var(--navy-900);
  font-size: 1.05rem;
}

.main-nav { position: relative; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.nav-list a {
  position: relative;
  display: inline-block;
  padding: 12px 18px;
  color: var(--gray-700);
  font-family: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color 0.25s ease;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-list a:hover { color: var(--navy-900); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a.active {
  color: var(--navy-900);
  font-weight: 600;
}
.nav-list a.active::after {
  transform: scaleX(1);
  transform-origin: center;
}

/* ---------- Language switcher — segmented pill ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}
.header-inner > .lang-switch { justify-self: end; }
.lang-btn {
  background: transparent;
  border: 0;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lang-btn:hover { color: var(--navy-900); }
.lang-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.35);
}
.lang-sep { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.32);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* ---------- Header CTA ---------- */
.header-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 9px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(var(--accent-rgb), 0.28);
}
.header-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* ---------- Logo (image) ---------- */
.logo-img {
  height: 140px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 160px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

/* ---------- Hero (split) ---------- */
.hero {
  background:
    linear-gradient(135deg, #000000 0%, #0a0a0a 55%, #1a1a1a 100%),
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.14), transparent 60%);
  background-color: #000000;
  color: var(--white);
  padding: 88px 0 96px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.22), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.10), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual.v2 {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.10), transparent 60%);
}
.hero-visual.v3 {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 60%);
}
.hero-illu {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--accent);
}

/* ---------- Hero slider ---------- */
.hero-slider { padding: 0; position: relative; overflow: hidden; }

/* Hero arka plan video — bulanık backdrop + net merkez */
.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000000;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Geri planı dolduran bulanık katman */
.hero-bg-video-blur {
  object-fit: cover;
  object-position: center;
  filter: blur(28px) brightness(0.55) saturate(1.1);
  transform: scale(1.12); /* blur kenarlarını gizlemek için biraz büyüt */
  z-index: 0;
}
/* Üstte net video — tam oranında, kırpılmadan */
.hero-bg-video-main {
  object-fit: contain;
  object-position: center;
  z-index: 1;
}
/* Video üstüne siyah overlay — beyaz metnin video üzerinde okunabilirliği için */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(10, 10, 10, 0.62)),
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.18), transparent 60%);
}
/* Akış çizgileri + slide içeriği video + overlay üstünde */
.hero-slider .hero-bg-lines { z-index: 2; }
.hero-slider .slides { z-index: 3; }
.hero-slider .slider-arrow,
.hero-slider .slider-dots { z-index: 5; }
/* Mobil: data tasarrufu için video + wrap'i gizle, .hero gradyanı fallback olarak görünsün */
@media (max-width: 768px) {
  .hero-bg-video-wrap { display: none; }
  .hero-bg-overlay { display: none; }
}
/* Hareket azaltma tercihi — videoları gizle, gradyan fallback'e dön */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video-wrap { display: none; }
  .hero-bg-overlay { display: none; }
}

/* Hero arka plan akış çizgileri */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-lines span {
  position: absolute;
  height: 1px;
  width: 28%;
  left: 0;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.85), transparent);
  filter: blur(0.4px);
  will-change: transform;
}
.hero-bg-lines span:nth-child(2n) {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  height: 1px;
}
.hero-bg-lines span:nth-child(1) { top:  8%; width: 22%; animation: heroFlowRight 9s linear infinite; }
.hero-bg-lines span:nth-child(2) { top: 22%; width: 32%; animation: heroFlowLeft 11s linear infinite 1.2s; }
.hero-bg-lines span:nth-child(3) { top: 36%; width: 26%; animation: heroFlowRight 7s linear infinite 2.4s; }
.hero-bg-lines span:nth-child(4) { top: 50%; width: 36%; animation: heroFlowLeft 13s linear infinite 0.6s; }
.hero-bg-lines span:nth-child(5) { top: 62%; width: 24%; animation: heroFlowRight 10s linear infinite 3s; }
.hero-bg-lines span:nth-child(6) { top: 74%; width: 30%; animation: heroFlowLeft 8s linear infinite 4s; }
.hero-bg-lines span:nth-child(7) { top: 84%; width: 20%; animation: heroFlowRight 12s linear infinite 1.8s; }
.hero-bg-lines span:nth-child(8) { top: 92%; width: 34%; animation: heroFlowLeft 9.5s linear infinite 2.7s; }

@keyframes heroFlowRight {
  0%   { transform: translateX(-120%); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateX(460%); opacity: 0; }
}
@keyframes heroFlowLeft {
  0%   { transform: translateX(460%); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateX(-120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-lines span { animation: none; opacity: 0.25; }
}

.hero-slider .slides {
  position: relative;
  min-height: 680px;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 88px 0 110px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0s;
}
.hero-slider .slide > .container { width: 100%; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.slider-dots .dot {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.slider-dots .dot:hover { background: rgba(255, 255, 255, 0.55); }
.slider-dots .dot.active {
  background: var(--accent);
  width: 48px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.hero .accent { color: var(--accent); }

.lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.hero .btn-ghost:hover { background: var(--white); color: var(--navy-900); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 64px 0 56px;
}
.page-hero .eyebrow { color: var(--navy-700); }
.page-hero h1 { margin-bottom: 8px; }
.page-hero .lead { color: var(--gray-700); margin-bottom: 0; }

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head p { color: var(--gray-500); }

/* ---------- Features ---------- */
.features {
  padding: 80px 0;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-500);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Content blocks ---------- */
.content-block { padding: 80px 0; }
.content-block.alt { background: var(--gray-100); }

.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  background: var(--navy-900);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.info-card h3 { color: var(--white); margin-bottom: 18px; }
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.stat-list strong {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-500);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-info { padding-top: 8px; }
.contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-list strong {
  color: var(--navy-900);
  font-weight: 600;
}
.contact-list span {
  color: var(--gray-700);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-bottom: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
}
.form-row input, .form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(31, 74, 138, 0.15);
}
.form-status {
  margin: 12px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--gray-700);
}
.form-status.success { color: #136f3a; }
.form-status.error { color: #b3261e; }

/* ---------- CTA ---------- */
.cta { background: var(--gray-100); padding: 64px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.cta-inner h2 { margin-bottom: 4px; }
.cta-inner p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-mark { background: var(--white); color: var(--navy-900); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255, 255, 255, 0.7); margin-top: 12px; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255, 255, 255, 0.78); }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: rgba(255, 255, 255, 0.78); margin: 0 0 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-bottom small { color: rgba(255, 255, 255, 0.6); }

/* Powered by Teknopol Pages badge */
.powered-by[data-tpages] {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.9;
}
.tpb-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tpb-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--tpb-bg-1) 0%, var(--tpb-bg-2) 60%, var(--tpb-bg-3) 100%);
  border-radius: 10px;
  padding: 4px 10px 4px 5px;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px var(--tpb-glow),
    0 0 18px var(--tpb-glow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.tpb-link:hover .tpb-badge {
  box-shadow:
    0 0 0 1px var(--tpb-glow),
    0 0 24px var(--tpb-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.tpb-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}
.tpb-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--tpb-name-from), var(--tpb-name-mid), var(--tpb-name-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tpb-tag {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  background: linear-gradient(90deg, var(--tpb-tag-from), var(--tpb-tag-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.three { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hero { padding: 64px 0 80px; }
  .content-block { padding: 56px 0; }
  .features { padding: 56px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 28px; }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .header-inner > .main-nav { justify-self: auto; }

  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
    display: none;
  }
  .main-nav.open .nav-list { display: flex; }
  .nav-list a { width: 100%; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid.three { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-list { grid-template-columns: 1fr; }
}

/* ===========================
   Layout patterns (Export Partners style adapt)
   =========================== */

/* ---------- Peek strip (sector imagery below hero) ---------- */
/* ---------- Brand Showcase ---------- */
.brand-showcase {
  background: #ffffff;
  padding: 72px 0;
}
.brand-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.brand-item {
  margin: 0;
  padding: 16px;
  background: #fafafa;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.brand-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .brand-gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .brand-gallery { grid-template-columns: 1fr; gap: 16px; }
  .brand-showcase { padding: 48px 0; }
  .brand-item { min-height: 160px; }
}

.peek-strip {
  position: relative;
  z-index: 4;
  background: var(--gray-100);
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 14px;
  position: relative;
}
.strip-card {
  text-align: center;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
}
.strip-card + .strip-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--gray-200);
}
.strip-card:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.strip-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.28);
  transition: transform 0.2s ease;
}
.strip-card:hover .strip-icon { transform: scale(1.06); }
.strip-icon svg { width: 32px; height: 32px; }
.strip-card h4 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.2px;
}
.strip-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ---------- Highlight services (3-col cards w/ link) ---------- */
.highlight-services { padding: 80px 0; background: var(--white); }
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hl-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px -6px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  will-change: transform;
}
.hl-card::before {
  /* Üst kenarda hafif accent vurgu — hover'da görünür hale gelir */
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}
.hl-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.20),
    0 18px 36px -12px rgba(var(--accent-rgb), 0.18),
    0 0 0 1px rgba(var(--accent-rgb), 0.10);
}
.hl-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.hl-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(var(--accent-rgb), 0.18), transparent 55%),
    linear-gradient(135deg, var(--navy-800), var(--navy-700) 55%, var(--navy-500));
}
.hl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hl-card:hover .hl-thumb img {
  transform: scale(1.08);
}
/* Alt karanlık geçiş — body kısmıyla yumuşak birleşme */
.hl-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}
.hl-body {
  padding: 24px 28px 28px;
}
.hl-body h3 { margin-bottom: 10px; }
.hl-body p { font-size: 0.95rem; margin-bottom: 18px; }
.hl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-700);
}
.hl-link::after {
  content: '→';
  transition: transform 0.15s ease;
}
.hl-link:hover::after { transform: translateX(3px); }

/* ---------- Split (image + text) ---------- */
.split { padding: 80px 0; }
.split.alt { background: var(--gray-100); }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-inner > :first-child { order: 2; }
.split-text .eyebrow { color: var(--navy-700); }
.split-text h2 { margin-bottom: 14px; }
.split-text .actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.split-visual {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-visual.light {
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
  color: rgba(11, 29, 58, 0.12);
}

/* ---------- Why us / badges ---------- */
.why-us { padding: 80px 0; background: var(--navy-900); color: var(--white); }
.why-us h2 { color: var(--white); }
.why-us .lead { color: rgba(255, 255, 255, 0.78); }
.why-us .section-head p { color: rgba(255, 255, 255, 0.7); }

.badge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.badge:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.badge-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.badge h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.badge p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Roadmap (numbered vertical) ---------- */
.roadmap { padding: 80px 0; }
.roadmap-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.roadmap-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.roadmap-step:hover {
  border-color: var(--navy-500);
  box-shadow: var(--shadow-md);
}
.roadmap-num {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--accent);
  font-weight: 700;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.18);
}
.roadmap-body h3 { margin-bottom: 6px; }
.roadmap-body p { margin: 0; font-size: 0.95rem; }

/* ---------- Additional services (image + text card) ---------- */
.alt-services { padding: 80px 0; background: var(--gray-100); }
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.alt-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.alt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.alt-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 4px;
}
.alt-thumb.v2 { background: linear-gradient(135deg, var(--navy-800), var(--accent)); }
.alt-thumb.v3 { background: linear-gradient(135deg, var(--gray-700), var(--navy-700)); }
.alt-body { padding: 22px 24px 26px; }
.alt-body h3 { margin-bottom: 8px; }
.alt-body p { font-size: 0.95rem; margin-bottom: 14px; }

/* ---------- FAQ accordion ---------- */
.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: var(--navy-500);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--navy-700);
  transition: transform 0.2s ease;
  font-weight: 400;
}
.faq-item.open .faq-q::after {
  content: '−';
  transform: none;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Footer social icons ---------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--navy-900); }

/* ---------- Scroll-to-top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 40;
  font-size: 1.1rem;
}
.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--navy-700); }

/* ---------- Theme picker ---------- */
.theme-picker {
  position: fixed;
  right: 22px;
  bottom: 80px;
  z-index: 41;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.theme-toggle-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg 180deg, #00B4D8 180deg 360deg);
  box-shadow: 0 0 0 2px var(--white) inset;
}
.theme-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
}
.theme-picker.open .theme-panel { display: flex; }
.theme-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.4px;
  margin-right: 4px;
}
.theme-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--gray-300), 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.theme-swatch:hover { transform: scale(1.1); }
.theme-swatch.active {
  box-shadow: 0 0 0 2px var(--navy-900), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ---------- Responsive overrides for new components ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 240px; }
  .hero-slider .slides { min-height: 720px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); padding: 18px 8px; }
  .strip-card + .strip-card::before { display: none; }
  .strip-card:nth-child(4), .strip-card:nth-child(5) { grid-column: span 1; }
  .strip-card { padding: 12px 8px; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); }
  .alt-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-row { grid-template-columns: repeat(2, 1fr); }
  .split-inner { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-inner > :first-child { order: 0; }
  .split-visual { min-height: 240px; }
}

@media (max-width: 520px) {
  .hl-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .badge-row { grid-template-columns: 1fr; }
  .roadmap-step { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
  .roadmap-num { width: 64px; height: 64px; font-size: 1.4rem; border-radius: 12px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-card p { display: none; }
}

/* ===================================================================
   DARK SWAP — koyu/açık renklerin yer değiştirmesi
   (Eski açık zeminler → koyu; eski koyu zeminler → açık)
   =================================================================== */

/* Body — beyaz → koyu */
body {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.88);
}
h1, h2, h3, h4, h5, h6 { color: #ffffff; }
p { color: rgba(255, 255, 255, 0.74); }
strong { color: #ffffff; }

/* Topbar — koyu lacivert kalsın */
.topbar {
  background: #0F1B3D;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar::after {
  display: block;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.50) 30%,
    rgba(var(--accent-rgb), 0.50) 70%,
    transparent 100%);
}
.topbar-left a { color: rgba(255, 255, 255, 0.82); }
.topbar-left a:hover { color: var(--accent); }
.topbar-right a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
}
.topbar-right a:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Header — AÇIK glass (krem/beyaz, koyu metin) */
.site-header {
  background: rgba(248, 245, 239, 0.88) !important;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 2px solid rgba(var(--accent-rgb), 0.55) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.6) inset !important;
}
.site-header::before {
  background: radial-gradient(ellipse at 18% 50%, rgba(var(--accent-rgb), 0.18), transparent 72%) !important;
}
.site-header::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.75) 30%,
    rgba(var(--accent-rgb), 0.75) 70%,
    transparent 100%) !important;
  height: 1.5px !important;
}
/* Nav linkleri: koyu, açık zeminde okunabilir */
.site-header .nav-list a {
  color: var(--navy-900) !important;
  text-shadow: none;
  font-weight: 600;
}
.site-header .nav-list a:hover,
.site-header .nav-list a.active {
  color: var(--accent) !important;
}
.site-header .nav-list a::after {
  background: var(--accent);
  height: 2px;
}
/* Logo: drop-shadow kaldır (açık zeminde gerek yok) */
.site-header .logo-img {
  filter: none;
}
/* Lang switcher açık varyant */
.site-header .lang-switch {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.10) !important;
}
.site-header .lang-btn { color: var(--gray-700) !important; }
.site-header .lang-btn:hover { color: var(--navy-900) !important; }
.site-header .lang-btn.active {
  background: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.45);
}
.nav-list a { color: rgba(255, 255, 255, 0.72); }
.nav-list a:hover, .nav-list a.active { color: #ffffff; }
.lang-switch {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
.lang-btn { color: rgba(255, 255, 255, 0.60); }
.lang-btn:hover { color: #ffffff; }

/* Hero slider — koyu → açık (krem gradyan) */
.hero {
  background:
    linear-gradient(135deg, #f8f5ef 0%, #efeae0 55%, #e2dccd 100%),
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.10), transparent 60%);
  background-color: #f8f5ef;
  color: #1a1a1a;
}
.hero h1 { color: #1a1a1a; }
.hero .accent { color: var(--accent); }
.hero .lead { color: var(--gray-700); }
.hero-bg-video-wrap { background: #f8f5ef; }
.hero-bg-overlay {
  background:
    linear-gradient(135deg, rgba(248, 245, 239, 0.62), rgba(239, 234, 224, 0.48)),
    radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.10), transparent 60%);
}
.hero-bg-lines span {
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.65), transparent);
}
.hero-bg-lines span:nth-child(2n) {
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.32), transparent);
}
.hero .btn-ghost {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.hero .btn-ghost:hover {
  background: var(--navy-900);
  color: #fff;
}
.slider-dots .dot { background: rgba(15, 23, 42, 0.20); }
.slider-dots .dot:hover { background: rgba(15, 23, 42, 0.40); }

/* Page hero (alt sayfalar) — açık → koyu */
.page-hero {
  background: #222222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-hero .eyebrow { color: rgba(255, 255, 255, 0.62); }
.page-hero h1 { color: #ffffff; }
.page-hero .lead { color: rgba(255, 255, 255, 0.78); }

/* Section heads */
.section-head p { color: rgba(255, 255, 255, 0.62); }

/* Peek-strip — açık → koyu */
.peek-strip {
  background: #1a1a1a;
  border-top-color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* Grid kabını koyu yap + daha düzgün border/shadow */
.peek-strip .strip-grid {
  background: #2a2a2a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
}
.strip-card h4 { color: #ffffff !important; }
.strip-card p { color: rgba(255, 255, 255, 0.68) !important; }
.strip-card:hover { background: rgba(255, 255, 255, 0.06) !important; }
.strip-card + .strip-card::before {
  background: rgba(255, 255, 255, 0.10) !important;
}
.strip-icon { color: var(--white); }
/* Icon zemini bakır gradient zaten parlak — olduğu gibi çalışır */

/* Highlight services kartlari — beyaz → koyu */
.highlight-services { background: transparent; }
.hl-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 6px 14px -6px rgba(0, 0, 0, 0.4);
}
.hl-card:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 18px 36px -12px rgba(var(--accent-rgb), 0.22),
    0 0 0 1px rgba(var(--accent-rgb), 0.15);
}
.hl-body h3 { color: #ffffff; }
.hl-body p { color: rgba(255, 255, 255, 0.70); }

/* Why-us / Badges — beyaz → koyu */
.why-us { background: transparent; }
.badge {
  background: linear-gradient(180deg, #262626 0%, #1e1e1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 22px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.badge:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: linear-gradient(180deg, #2b2b2b 0%, #202020 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
}
.badge:hover::before { opacity: 1; }
.badge h4 { color: #ffffff; font-size: 1.02rem; margin-bottom: 8px; }
.badge p { color: rgba(255, 255, 255, 0.66); font-size: 0.86rem; line-height: 1.6; }
.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0.07));
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--accent);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.badge-icon svg { width: 28px; height: 28px; }
.badge:hover .badge-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.35);
}

/* MVS (Mission/Vision/Strategy) kartlari */
.mvs-card, .feature-card, .info-card, .alt-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.06);
}
.mvs-card h3, .feature-card h3, .info-card h3, .alt-card h3 { color: #ffffff; }
.mvs-card p, .feature-card p, .info-card p, .alt-card p { color: rgba(255, 255, 255, 0.70); }
.stat-list li { color: rgba(255, 255, 255, 0.78); border-bottom-color: rgba(255, 255, 255, 0.08); }
.stat-list li strong { color: var(--accent); }

/* Content blocks */
.content-block.alt { background: #222222; }
.content-block h2 { color: #ffffff; }
.content-block p { color: rgba(255, 255, 255, 0.72); }

/* Roadmap — alt sayfa */
.roadmap-step {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.roadmap-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.roadmap-step h3 { color: #ffffff; }
.roadmap-step p { color: rgba(255, 255, 255, 0.70); }
.roadmap-num {
  position: relative;
  color: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.roadmap-step:hover .roadmap-num { transform: scale(1.06); box-shadow: 0 10px 26px rgba(0,0,0,0.4); }
.roadmap-num .rm-no {
  position: absolute; top: 7px; left: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
}
.roadmap-num svg { width: 34px; height: 34px; }
.roadmap-step:nth-child(1) .roadmap-num { background: linear-gradient(150deg, #C88345, #9B5E28); }
.roadmap-step:nth-child(2) .roadmap-num { background: linear-gradient(150deg, #CE9A44, #9E7220); }
.roadmap-step:nth-child(3) .roadmap-num { background: linear-gradient(150deg, #C6AE4A, #94801F); }
.roadmap-step:nth-child(4) .roadmap-num { background: linear-gradient(150deg, #ADB24F, #7E8A2A); }
.roadmap-step:nth-child(5) .roadmap-num { background: linear-gradient(150deg, #7FB25E, #4E8A3A); }
.roadmap-step:nth-child(6) .roadmap-num { background: linear-gradient(150deg, #4FB284, #2A8A5E); }
.roadmap-step:nth-child(7) .roadmap-num { background: linear-gradient(150deg, #34B0A6, #1C8A82); }
.roadmap-step:nth-child(8) .roadmap-num { background: linear-gradient(150deg, #2BA0C4, #1A7A98); }
.roadmap-step:nth-child(9) .roadmap-num { background: linear-gradient(150deg, #2B90D8, #1A6CA8); }

/* FAQ */
.faq { background: transparent; }
.faq-item {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-q { color: #ffffff; }
.faq-a-inner { color: rgba(255, 255, 255, 0.72); }

/* CTA */
.cta { background: transparent; }
.cta-inner {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-inner h2 { color: #ffffff; }
.cta-inner p { color: rgba(255, 255, 255, 0.74); }

/* Forms (iletisim) */
input, textarea, select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
label { color: rgba(255, 255, 255, 0.82); }

/* Eyebrow renkleri */
.eyebrow { color: var(--accent); }

/* Footer — koyu → açık */
.site-footer {
  background: #f4f4f0;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
}
.site-footer h4 { color: var(--navy-900); }
.footer-brand p { color: var(--gray-700); }
.footer-brand .logo-mark { background: var(--navy-900); color: var(--white); }
.footer-brand .logo-text { color: var(--navy-900); }
.site-footer a, .site-footer ul li a, .site-footer p { color: var(--gray-700); }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
}
.footer-bottom small { color: var(--gray-500); }
.footer-social a { color: var(--gray-700); }
.footer-social a:hover { color: var(--accent); }

/* To-top button */
.to-top {
  background: #2a2a2a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.to-top:hover { background: var(--accent); }

/* Theme picker */
.theme-toggle {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.10);
}
.theme-panel {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.10);
}
.theme-label { color: rgba(255, 255, 255, 0.7); }

/* "Başlıca Hizmetlerimiz" bölümü — koyu body içinde açık ada */
.highlight-services {
  background: #f4f4f0;
  padding: 80px 0;
}
.highlight-services .section-head h2 { color: var(--navy-900); }
.highlight-services .section-head p { color: var(--gray-700); }
.highlight-services .hl-card {
  background: #ffffff;
  border-color: var(--gray-200);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px -6px rgba(0, 0, 0, 0.08);
}
.highlight-services .hl-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.18),
    0 18px 36px -12px rgba(var(--accent-rgb), 0.18),
    0 0 0 1px rgba(var(--accent-rgb), 0.10);
}
.highlight-services .hl-body h3 { color: var(--navy-900); }
.highlight-services .hl-body p { color: var(--gray-700); }
.highlight-services .hl-link { color: var(--accent); }

/* ===================================================================
   İLETİŞİM SAYFASI — açık tema bypass + 4 kart + form/map layout
   =================================================================== */
body.contact-light { background: #f8f6f1; color: var(--gray-900); }
body.contact-light h1,
body.contact-light h2,
body.contact-light h3,
body.contact-light h4 { color: var(--navy-900); }
body.contact-light p { color: var(--gray-700); }
body.contact-light strong { color: var(--navy-900); }

/* Page hero — koyu yerine krem */
body.contact-light .page-hero {
  background: linear-gradient(135deg, #f8f6f1 0%, #efeae0 100%);
  border-bottom: 1px solid var(--gray-200);
}
body.contact-light .page-hero .eyebrow { color: var(--accent); }
body.contact-light .page-hero h1 { color: var(--navy-900); }
body.contact-light .page-hero .lead { color: var(--gray-700); }
body.contact-light .section-head p { color: var(--gray-700); }

/* Form input'lar — açık tema */
body.contact-light input,
body.contact-light textarea,
body.contact-light select {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
}
body.contact-light input::placeholder,
body.contact-light textarea::placeholder { color: var(--gray-500); }
body.contact-light input:focus,
body.contact-light textarea:focus,
body.contact-light select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}
body.contact-light label { color: var(--gray-700); }

/* === 4 İletişim Kartı === */
.contact-cards {
  padding: 64px 0 32px;
}
.cc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cc-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px -6px rgba(0, 0, 0, 0.06);
}
.cc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow:
    0 22px 44px -16px rgba(0, 0, 0, 0.14),
    0 12px 24px -10px rgba(var(--accent-rgb), 0.20);
}
.cc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0.06));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.20);
}
.cc-icon svg { width: 26px; height: 26px; }
.cc-card h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-900);
}
.cc-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.cc-card p a {
  color: var(--navy-900);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cc-card p a:hover { color: var(--accent); }

/* === Doğrudan İletişim Kişileri (2 kart) === */
.contact-people { padding: 32px 0 16px; }
.contact-people .section-head { text-align: center; }
.contact-people .section-head .eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}
.contact-people .section-head h2 {
  margin: 8px 0 0;
  color: var(--navy-900);
}
.cp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.cp-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 14px -6px rgba(0, 0, 0, 0.06);
}
.cp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow:
    0 18px 36px -16px rgba(0, 0, 0, 0.14),
    0 10px 20px -10px rgba(var(--accent-rgb), 0.18);
}
.cp-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.06));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
}
.cp-body { flex: 1; min-width: 0; }
.cp-dept {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.cp-body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--navy-900);
}
.cp-body a {
  font-size: 0.88rem;
  color: var(--gray-700);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}
.cp-body a:hover { color: var(--accent); }
@media (max-width: 720px) {
  .cp-grid { grid-template-columns: 1fr; }
}

/* Tam genişlik Maps — iletişim kartlarının altına yayılır */
.contact-map-wide {
  padding: 32px 0 80px;
}
.contact-map {
  position: relative;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.10);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 480px;
  filter: saturate(0.92) contrast(0.98);
}
.cm-open-maps {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--navy-900);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}
.cm-open-maps:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .cc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-map { min-height: 380px; }
  .contact-map iframe { min-height: 380px; }
}
@media (max-width: 560px) {
  .cc-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
}

/* ===== Footer brand merkez hizalama + sosyal ikon iyileştirme ===== */
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-social { margin-top: 18px; }
.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
}
.site-footer .footer-social a {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: var(--gray-700);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}
/* ===================================================================
   YENİ FOOTER — koyu lacivert, kategorili mega grid + brand/iletişim
   =================================================================== */
.site-footer {
  background: #0F1B3D !important;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
  border-top: none;
}
.site-footer .container { padding: 0 24px; }

/* --- Üst: Hizmetler mega grid --- */
.footer-services-mega {
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-services-mega > h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 32px;
}
.footer-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.footer-svc-col { display: flex; flex-direction: column; gap: 10px; }
.footer-svc-cat {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.footer-svc-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-svc-col a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* --- Alt: Brand + Kurumsal + İletişim grid --- */
.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 36px;
  row-gap: 32px;
  align-items: start;
  padding: 40px 0;
}
/* Iletisim, ustteki Ihracat sutununun (col4) altina hizalanir; col3 (Gumruk alti) bos kalir */
.footer-main-grid > *:nth-child(3) { grid-column: 4; }
.site-footer .footer-brand {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 14px;
}
.site-footer .footer-brand .logo-img-footer {
  height: 72px;
  width: auto;
  margin-bottom: 8px;
}
.site-footer .footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer .footer-brand .footer-social { margin-top: 6px; gap: 10px; }

/* Sosyal ikon — markalı renkli butonlar */
.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.site-footer .footer-social a svg { width: 18px; height: 18px; }
.site-footer .footer-social a.fs-linkedin { background: #0A66C2; }
.site-footer .footer-social a.fs-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.site-footer .footer-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Kurumsal ve İletişim sütunları */
.site-footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 14px;
  font-weight: 600;
}
.site-footer .footer-col a,
.site-footer .footer-col p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin: 0;
  line-height: 1.7;
}
.site-footer .footer-col a:hover { color: var(--accent); }
.site-footer .footer-col p strong { color: rgba(255, 255, 255, 0.62); font-weight: 600; margin-right: 4px; }
.site-footer .footer-col p a { color: rgba(255, 255, 255, 0.78); }
.site-footer .footer-col p a:hover { color: var(--accent); }

/* Bottom */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom .powered-by { margin-left: auto; }
.site-footer .footer-bottom small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.50);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-main-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main-grid > *:nth-child(3) { grid-column: auto; }
}
@media (max-width: 560px) {
  .footer-services-grid { grid-template-columns: 1fr; gap: 22px; }
  .site-footer { padding-top: 48px; }
}
/* ===================================================================
   SLIDER PER-SLIDE BACKGROUND IMAGES (full bleed, stretched)
   =================================================================== */
.hero-slider .slide {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
/* Her slide kendi gorseli (CSS css/ klasorunde oldugu icin ../ gerekli) */
.hero-slider .slide[data-bg="1"] {
  background-image: url('../slide-bg-1.jpg');
}
.hero-slider .slide[data-bg="2"] {
  background-image: url('../slide-bg-2x.jpg');
}
.hero-slider .slide[data-bg="3"] {
  background-image: url('../slide-bg-3.jpg');
}
/* Slayt 2: tasarımlı banner — metin görselde baskılı, karartma overlay'i kaldır */
.hero-slider .slide[data-bg="2"]::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%) !important;
}
/* Karartma overlay — metin okunabilirligi icin */
.hero-slider .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 61, 0.72) 0%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-slider .slide > .container {
  position: relative;
  z-index: 2;
}
/* Hero genel arka plan: gorseller yokken fallback gradient */
.hero.hero-slider {
  background:
    linear-gradient(135deg, #f8f5ef 0%, #efeae0 55%, #e2dccd 100%);
}
/* Hero metin renkleri: video overlay degisip arka plan koyu image olunca beyaz olmali */
.hero-slider .slide .hero-content h1 { color: #ffffff !important; }
.hero-slider .slide .hero-content .lead { color: rgba(255, 255, 255, 0.92) !important; }
.hero-slider .slide .hero-content .eyebrow { color: var(--accent) !important; }
.hero-slider .slide .hero-content .accent { color: var(--accent) !important; }
.hero .btn-ghost { color: #ffffff !important; border-color: rgba(255, 255, 255, 0.65) !important; }
.hero .btn-ghost:hover { background: #ffffff !important; color: var(--navy-900) !important; }
.slider-dots .dot { background: rgba(255, 255, 255, 0.35); }
.slider-dots .dot:hover { background: rgba(255, 255, 255, 0.65); }