/* ============================================================
   DMA PLASTİK — Ana CSS
   Tema: Light / Kurumsal
   Renkler: #1a3a5c (lacivert) · #e8761a (turuncu) · #fff (beyaz)
   ============================================================ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  --primary:        #1a3a5c;
  --primary-dark:   #122840;
  --primary-light:  #254e7a;
  --accent:         #e8761a;
  --accent-dark:    #c45e10;
  --accent-light:   #f08030;

  --bg:             #ffffff;
  --bg-soft:        #f5f7fa;
  --bg-muted:       #eef1f6;
  --bg-dark:        #0d1e30;

  --text:           #1a2332;
  --text-muted:     #546e7a;
  --text-light:     #90a4ae;

  --border:         #dde4ed;
  --border-light:   #eef2f7;

  --shadow-sm:  0 1px 4px rgba(26,58,92,.06);
  --shadow-md:  0 4px 16px rgba(26,58,92,.10);
  --shadow-lg:  0 8px 36px rgba(26,58,92,.14);

  --radius-sm:  5px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --nav-h:      78px;
  --container:  1200px;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Butonlar ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; line-height: 1;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,118,26,.35); }
.btn--secondary { background: var(--primary); color: #fff; }
.btn--secondary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 15px 34px; font-size: 15px; }

/* ── Bölüm Başlıkları ────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.section-title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 800;
  color: var(--primary); line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -.4px;
}
.section-sub {
  font-size: 15.5px; color: var(--text-muted); line-height: 1.75;
  max-width: 580px;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-header--center .section-eyebrow { justify-content: center; }

/* ── Bölüm Padding ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section--soft { background: var(--bg-soft); }
.section--muted { background: var(--bg-muted); }
.section--dark { background: var(--bg-dark); color: #fff; }

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */

/* Üst Bar */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-item {
  display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75);
  transition: color .15s;
}
.top-bar-item:hover { color: #fff; }
.top-bar-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar-social {
  display: flex; align-items: center; gap: 2px;
}
.top-bar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 4px;
  color: rgba(255,255,255,.65); transition: all .15s;
}
.top-bar-social a:hover { color: #fff; background: rgba(255,255,255,.1); }
.top-bar-social svg { width: 14px; height: 14px; }
.top-bar-lang { display: flex; gap: 8px; }
.tl-btn {
  padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6);
  transition: all .15s; cursor: pointer;
}
.tl-btn:hover, .tl-btn.is-active { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }

/* Ana Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(26,58,92,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--nav-h);
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

/* Masaüstü Nav */
.site-nav { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 15px; font-size: 14px; font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm); transition: all .15s; cursor: pointer;
  white-space: nowrap;
}
.nav-link svg { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.nav-link:hover { color: var(--primary); background: var(--bg-soft); }
.nav-link.is-active { color: var(--accent); font-weight: 600; }
.nav-item:hover > .nav-link { color: var(--primary); background: var(--bg-soft); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 100;
}
.nav-item:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 9px 14px; font-size: 13.5px; color: var(--text);
  border-radius: 6px; transition: all .15s; font-weight: 450;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--primary); padding-left: 18px; }
.nav-dropdown-sep {
  height: 1px; background: var(--border-light); margin: 6px 0;
}
.nav-dropdown-group-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-light);
  padding: 4px 14px 2px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff !important;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 700; transition: all .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); box-shadow: 0 4px 14px rgba(232,118,26,.3); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 4px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}

/* Mobil Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: #fff; flex-direction: column; overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mobile-nav-head img { height: 36px; }
.mobile-nav-close { font-size: 28px; color: var(--text); padding: 4px; line-height: 1; }
.mobile-nav-body { flex: 1; padding: 8px 0; }
.mobile-nav-link {
  display: block; padding: 14px 20px;
  font-size: 16px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-link:hover { color: var(--primary); background: var(--bg-soft); }
.mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 14px 20px;
  font-size: 16px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}
.mobile-sub-toggle svg { width: 16px; height: 16px; transition: transform .2s; }
.mobile-sub-toggle.is-open svg { transform: rotate(180deg); }
.mobile-sub-links { display: none; background: var(--bg-soft); }
.mobile-sub-links.is-open { display: block; }
.mobile-sub-link {
  display: block; padding: 11px 20px 11px 32px;
  font-size: 14px; color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.mobile-sub-link:hover { color: var(--primary); }
.mobile-nav-foot {
  padding: 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-cta-link {
  display: block; text-align: center;
  background: var(--accent); color: #fff;
  padding: 14px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px;
}

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ─────────────────────────────────────────────────────────
   HERO CAROUSEL
───────────────────────────────────────────────────────── */
.hero-carousel {
  position: relative; overflow: hidden;
  height: 580px; background: var(--bg-dark);
}
.hero-slides { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.hero-slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero-slide--1 { background: linear-gradient(135deg, #0d2035 0%, #1a3a5c 60%, #254e7a 100%); }
.hero-slide--2 { background: linear-gradient(135deg, #1a0008 0%, #5c0010 60%, #8a0018 100%); }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .18;
}
.hero-slide-pattern {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-slide-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); padding: 5px 14px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 16px;
}
.hero-title span { color: var(--accent-light); }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-box {
  display: flex; align-items: center; justify-content: center;
}
.hero-image-box img {
  max-height: 360px; width: auto;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,.35));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* Placeholder kutu (görsel yoksa) */
.hero-icon-box {
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
}

/* Carousel Kontrolleri */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .2s; cursor: pointer;
}
.hero-nav:hover { background: rgba(255,255,255,.28); }
.hero-nav--prev { left: 20px; }
.hero-nav--next { right: 20px; }
.hero-nav svg { width: 20px; height: 20px; }

.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: all .25s;
}
.hero-dot.is-active { background: #fff; width: 24px; border-radius: 4px; }

/* ─────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  position: relative;
}
.stat-num {
  font-size: 32px; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.stat-num span { font-size: 18px; color: var(--accent-light); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ─────────────────────────────────────────────────────────
   HAKKIMIZDA
───────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover; height: 420px;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius-md); padding: 18px 24px;
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-num { font-size: 32px; font-weight: 800; line-height: 1; }
.about-badge-txt { font-size: 12px; font-weight: 600; opacity: .85; }
.about-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.about-link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-size: 13px; font-weight: 600;
  color: var(--primary); transition: all .2s;
}
.about-link-card:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: var(--shadow-sm); transform: translateY(-2px);
}
.about-link-card svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   ÜRÜN GRUPLARI
───────────────────────────────────────────────────────── */
.product-groups {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-group-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--primary); min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .3s, box-shadow .3s;
}
.product-group-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-group-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s ease;
}
.product-group-card:hover .product-group-img { transform: scale(1.04); }
.product-group-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,48,.88) 0%, rgba(13,30,48,.2) 70%, transparent 100%);
}
.product-group-body {
  position: relative; z-index: 2; padding: 32px;
}
.product-group-icon {
  font-size: 36px; margin-bottom: 12px; display: block;
}
.product-group-name {
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.product-group-count {
  font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px;
}
.product-group-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700; color: #fff;
  background: var(--accent); padding: 8px 18px;
  border-radius: var(--radius-sm); transition: all .2s;
}
.product-group-card:hover .product-group-link { background: var(--accent-dark); gap: 11px; }

/* Alt ürün listesi */
.product-sub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 24px;
}
.product-sub-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 16px;
  text-align: center; transition: all .2s; text-decoration: none;
}
.product-sub-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-sub-card img {
  height: 100px; width: auto; margin: 0 auto 12px;
  object-fit: contain;
}
.product-sub-icon { font-size: 32px; margin-bottom: 10px; }
.product-sub-name { font-size: 13px; font-weight: 700; color: var(--primary); }

/* ─────────────────────────────────────────────────────────
   NEDEN DMA PLASTİK
───────────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .25s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--primary); }
.why-icon {
  width: 56px; height: 56px; background: rgba(232,118,26,.07);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--accent); }
.why-num {
  font-size: 11px; font-weight: 800; color: var(--accent);
  letter-spacing: 1.5px; margin-bottom: 8px; display: block;
}
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────
   HABERLER / BLOG
───────────────────────────────────────────────────────── */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .25s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card-img {
  height: 200px; overflow: hidden; background: var(--bg-muted);
}
.news-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-placeholder {
  height: 200px; background: linear-gradient(135deg, var(--bg-muted), var(--border));
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.news-card-body { padding: 22px 20px; }
.news-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.news-card h3 { font-size: 15.5px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.news-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.news-read-more { font-size: 13px; font-weight: 600; color: var(--accent); }
.news-card:hover .news-read-more { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────
   E-BÜLTEN
───────────────────────────────────────────────────────── */
.bulten-section {
  background: var(--primary); padding: 56px 0;
}
.bulten-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.bulten-text h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.bulten-text p { font-size: 14px; color: rgba(255,255,255,.65); }
.bulten-form { display: flex; gap: 0; flex: 0 0 auto; }
.bulten-input {
  padding: 12px 18px; font-size: 14px; border: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  width: 280px; outline: none; color: var(--text);
}
.bulten-btn {
  background: var(--accent); color: #fff;
  padding: 12px 24px; font-size: 14px; font-weight: 700;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer; transition: background .2s; border: 0;
}
.bulten-btn:hover { background: var(--accent-dark); }

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p {
  font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .2s;
}
.footer-social-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.footer-social-btn svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col a {
  display: block; font-size: 13.5px; color: rgba(255,255,255,.6);
  padding: 5px 0; transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-ci { display: flex; gap: 10px; align-items: flex-start; }
.footer-ci-icon {
  width: 30px; height: 30px; background: rgba(255,255,255,.06); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.footer-ci-icon svg { width: 14px; height: 14px; }
.footer-ci-body { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-ci-body a { color: rgba(255,255,255,.75); display: inline; padding: 0; }
.footer-ci-body a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────
   MOBİL KAYAN ALT BAR
───────────────────────────────────────────────────────── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}
.mobile-cta-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
.mcb-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-size: 14px; font-weight: 700; color: #fff;
  text-decoration: none; transition: opacity .2s;
}
.mcb-btn:hover { opacity: .9; }
.mcb-btn--call { background: var(--accent); }
.mcb-btn--map { background: var(--primary); }
.mcb-btn svg { width: 18px; height: 18px; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-groups { grid-template-columns: 1fr; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .top-bar { display: none; }
  .site-nav { display: none; }
  .header-actions .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-carousel { height: auto; min-height: 480px; }
  .hero-slide-inner { grid-template-columns: 1fr; text-align: center; padding: 56px 20px; }
  .hero-image-box { display: none; }
  .hero-btns { justify-content: center; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 280px; }
  .about-badge { right: 0; bottom: -16px; }

  .product-groups { grid-template-columns: 1fr; }
  .product-sub-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }

  .bulten-inner { flex-direction: column; align-items: flex-start; }
  .bulten-form { width: 100%; }
  .bulten-input { flex: 1; width: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 26px; }
  .product-sub-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────
   TAGLINE BANDI (realplast ilhamlı)
───────────────────────────────────────────────────────── */
.tagline-band {
  background: var(--primary-dark);
  padding: 72px 0;
}
.tagline-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tagline-quote {
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -.3px;
}
.tagline-quote em {
  font-style: normal;
  color: var(--accent-light);
}
.tagline-divider {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 24px 0;
}
.tagline-body {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
}

/* ─────────────────────────────────────────────────────────
   HAKKIMIZDA — İKON LİNK GRUBU (realplast ilhamlı)
───────────────────────────────────────────────────────── */
.about-icon-links {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-icon-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  transition: all .22s;
  color: var(--text);
  text-decoration: none;
}
.about-icon-link:last-child { border-bottom: none; }
.about-icon-link:hover {
  background: var(--bg-soft);
  padding-left: 36px;
}
.about-icon-link-icon {
  width: 50px; height: 50px;
  background: rgba(26,58,92,.07);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background .2s;
}
.about-icon-link:hover .about-icon-link-icon {
  background: rgba(232,118,26,.08);
  color: var(--accent);
}
.about-icon-link-icon svg { width: 22px; height: 22px; }
.about-icon-link-text { flex: 1; }
.about-icon-link-text strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--primary); margin-bottom: 2px;
}
.about-icon-link-text span {
  font-size: 12.5px; color: var(--text-muted);
}
.about-icon-link-arrow { color: var(--text-light); flex-shrink: 0; }
.about-icon-link-arrow svg { width: 16px; height: 16px; }
.about-icon-link:hover .about-icon-link-arrow { color: var(--accent); }

/* ─────────────────────────────────────────────────────────
   BÖLÜM BAŞLIĞI SATIRI (başlık + "tümünü gör")
───────────────────────────────────────────────────────── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header-row .section-header { margin-bottom: 0; }
.see-all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--accent);
  padding: 9px 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: all .2s; white-space: nowrap;
}
.see-all-link:hover { background: var(--accent); color: #fff; }
.see-all-link svg { width: 14px; height: 14px; }

/* ─────────────────────────────────────────────────────────
   BÜYÜK ÜRÜN GRUBU KARTLARI (realplast ilhamlı)
───────────────────────────────────────────────────────── */
.pg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pg-card {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--primary);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.pg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pg-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.pg-card:hover .pg-card-bg { transform: scale(1.05); }
.pg-card--endustriyel .pg-card-bg {
  background-image: url('/assets/images/hero-endustriyel.png');
  background-color: #0b2236;
}
.pg-card--ambalaj .pg-card-bg {
  background-image: url('/assets/images/hero-ambalaj.png');
  background-color: #0d1c2e;
}
.pg-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,20,34,.95) 0%,
    rgba(8,20,34,.55) 50%,
    rgba(8,20,34,.1) 100%);
}
.pg-card-body {
  position: relative; z-index: 2;
  padding: 36px;
}
.pg-card-group-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.pg-card-group-icon svg { width: 26px; height: 26px; color: #fff; }
.pg-card-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800; color: #fff;
  margin-bottom: 10px; letter-spacing: -.3px;
}
.pg-card-desc {
  font-size: 13.5px; color: rgba(255,255,255,.65);
  line-height: 1.65; margin-bottom: 20px;
}
.pg-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 28px;
}
.pg-card-tag {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 11px; border-radius: 20px;
}
.pg-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: #fff;
  background: var(--accent); padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.pg-card:hover .pg-card-cta { background: var(--accent-dark); gap: 13px; }
.pg-card-cta svg { width: 15px; height: 15px; }

/* ─────────────────────────────────────────────────────────
   NAV MEGA DROPDOWN (Ürünler)
───────────────────────────────────────────────────────── */
.nav-dropdown--mega {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 16px 8px;
}
.nav-mega-col {
  padding: 0 12px;
}
.nav-mega-col + .nav-mega-col {
  border-left: 1px solid var(--border-light);
  padding-left: 16px;
}
.nav-mega-group-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 6px 8px;
  display: flex; align-items: center; gap: 8px;
}
.nav-mega-group-label::before {
  content: '';
  display: block; width: 18px; height: 2px;
  background: var(--accent); border-radius: 1px; flex-shrink: 0;
}
.nav-dropdown--mega a {
  display: block; padding: 8px 10px;
  font-size: 13px; color: var(--text);
  border-radius: 6px; transition: all .15s; font-weight: 450;
}
.nav-dropdown--mega a:hover {
  background: var(--bg-soft); color: var(--primary); padding-left: 14px;
}

/* ─────────────────────────────────────────────────────────
   WHY GRID güncelleme (kart yerine numaralı madde)
───────────────────────────────────────────────────────── */
.why-item { padding: 28px 24px; border-left: 3px solid var(--border); transition: border-color .2s; }
.why-item:hover { border-color: var(--accent); }
.why-num { font-size: 38px; font-weight: 900; color: rgba(26,58,92,.1); line-height: 1; margin-bottom: 10px; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE EKLEMELERİ
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pg-cards { grid-template-columns: 1fr; }
  .tagline-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .tagline-inner { grid-template-columns: 1fr; gap: 28px; }
  .pg-card { min-height: 360px; }
  .pg-cards { grid-template-columns: 1fr; }
  .nav-dropdown--mega { min-width: 300px; grid-template-columns: 1fr; }
  .nav-mega-col + .nav-mega-col { border-left: none; border-top: 1px solid var(--border-light); margin-top: 8px; padding-top: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB — tüm iç sayfalarda ortak
═══════════════════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--bg-soft) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: .55rem 0 !important;
  text-align: left !important;
}
.breadcrumb {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: .8rem !important;
  color: var(--text-secondary) !important;
  flex-wrap: wrap !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.breadcrumb a {
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: color .15s !important;
}
.breadcrumb a:hover { color: var(--primary) !important; }
.breadcrumb__sep { opacity: .35; margin: 0 2px; font-size: .75rem; }
.breadcrumb [aria-current="page"],
.breadcrumb span:last-child { color: var(--primary) !important; font-weight: 600 !important; }

/* ═══════════════════════════════════════════════════════════
   İÇ SAYFA ORTAK — Page Hero
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  padding: 4rem 0 3.5rem;
  text-align: center;
  color: #fff;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero .section-label { color: rgba(255,255,255,.65); }
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -.03em;
  color: #fff; margin: .5rem 0 .75rem;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* ── Hakkımızda: about grid ────────────────────────────── */
.about-info-row { display: flex; flex-direction: column; gap: 14px; margin-top: 2rem; }
.about-info-item { display: flex; align-items: flex-start; gap: 12px; }
.about-info-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.about-info-item strong { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); margin-bottom: 2px; }
.about-info-item span, .about-info-item a { font-size: .9rem; color: var(--text-secondary); line-height: 1.5; }
.about-info-item a:hover { color: var(--primary); }

.about-values { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.value-icon { font-size: 1.75rem; margin-bottom: 10px; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Hizmetler sayfası ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 4px 18px rgba(26,58,92,.1); }
.service-icon { width: 44px; height: 44px; color: var(--primary); margin-bottom: 14px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.service-card-link { display: inline-block; margin-top: 16px; font-size: .8125rem; font-weight: 700; color: var(--accent); }

.hizmet-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hizmet-detail--reverse { direction: rtl; }
.hizmet-detail--reverse > * { direction: ltr; }
.hizmet-text .section-title { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.hizmet-text p { font-size: .9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
.hizmet-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.hizmet-features li { font-size: .9rem; color: var(--text); font-weight: 500; }
.hizmet-visual { display: flex; align-items: center; justify-content: center; }
.hizmet-placeholder {
  width: 100%; max-width: 380px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
}
.hizmet-placeholder svg { width: 100%; max-width: 200px; height: auto; }

/* ── Referanslar ───────────────────────────────────────── */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.ref-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.ref-item img { max-width: 100%; max-height: 80px; object-fit: contain; }
.empty-refs { text-align: center; padding: 4rem 0; color: var(--text-secondary); }
.empty-refs a { color: var(--primary); font-weight: 600; }

/* ── İletişim sayfası ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8125rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.form-alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .9rem; margin-bottom: 20px;
}
.form-alert--success { background: #ecf9f0; border: 1px solid #74d899; color: #1a6b3a; }
.form-alert--error   { background: #fef0f0; border: 1px solid #f5b3b3; color: #8b1a1a; }

.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.cinfo-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.cinfo-item strong { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); margin-bottom: 3px; }
.cinfo-item span, .cinfo-item a { font-size: .9rem; color: var(--text-secondary); line-height: 1.5; text-decoration: none; }
.cinfo-item a:hover { color: var(--primary); }
.map-embed { margin: 0; }
.map-embed iframe { display: block; width: 100%; }

/* ── Ek buton varyantları ──────────────────────────────── */
.btn--white { background: #fff; color: var(--primary); border: none; }
.btn--white:hover { background: #f0f4fa; }
.btn--ghost-orange { background: transparent; color: #fff; border: 1.5px solid rgba(232,118,26,.6); }
.btn--ghost-orange:hover { background: var(--accent); border-color: var(--accent); }

/* ─── İç sayfa responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hizmet-detail { grid-template-columns: 1fr; }
  .hizmet-detail--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
