@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');
/*
  Renkli İş Kıyafetleri - Ana Stil Dosyası
  Not: Bu dosya tamamen statik yapı için optimize edilmiştir.
  Geliştirilebilirlik için değişkenler ve modüler bölüm yapısı kullanılmıştır.
*/

:root {
  --bg-dark: #0b132b;
  --bg-charcoal: #182230;
  --bg-soft: #f5f6f8;
  --text-main: #101828;
  --text-muted: #667085;
  --brand: #ff6b1a;
  --brand-dark: #e85a0f;
  --white: #ffffff;
  --line: rgba(16, 24, 40, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.08);
  --shadow-strong: 0 20px 45px rgba(16, 24, 40, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: min(1180px, 92vw);
  --ease: all 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.26);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ── Top Bar ── */
.topbar {
  background: var(--brand);
  color: #fff;
  font-size: 0.94rem;       /* ~14px (eskisi ~11.7px) */
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0;          /* daha geniş şerit (eskisi 7px) */
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.topbar-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.topbar-icon {
  width: 16px;              /* ikonlar da büyüdü */
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .split img {
    width: 100%;
    max-width: 560px;
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .brand-logo { height: 76px; max-width: 108px; }
}

@media (max-width: 640px) {
  .topbar-inner {
    gap: 14px;
    padding: 9px 0;
    font-size: 0.82rem;
  }
  .topbar-item:first-child {
    display: none; /* Mobilde adres gizle, telefon ve mail kalsın */
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 88px;
  width: auto;
  max-width: 122px;
  display: block;
  object-fit: contain;
}

/* Full logo: fan + brand name, kept compact inside the header */
.brand {
  flex: 0 0 auto;
  min-width: 122px;
}

.footer-logo {
  height: 62px;
  width: auto;
  max-width: 125px;
  object-fit: contain;
}

.brand span {
  color: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #eef2f6;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Ürünler açılır menüsü */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
  flex: 0 0 auto;
}

.nav-products-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-chevron {
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.products-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: 520px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(11, 19, 43, .20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1000;
}

.products-dropdown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .products-dropdown,
.nav-dropdown:focus-within .products-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.products-dropdown-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.products-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}

.products-dropdown li a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.products-dropdown li a:hover {
  background: rgba(255, 111, 0, .09);
  color: var(--brand);
  padding-left: 14px;
}

.products-dropdown-all {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.products-dropdown-all:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) and (min-width: 861px) {
  .products-dropdown {
    width: 470px;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
}

/* ── Hero Slider ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Arka plan görselleri */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s ease, transform 6s ease;
}

/* Koyu degrade overlay — soldan sağa */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 12, 24, 0.80) 0%,
    rgba(8, 12, 24, 0.55) 55%,
    rgba(8, 12, 24, 0.25) 100%
  );
  z-index: 1;
}

/* İçerik */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
  max-width: 680px;
}

/* Turuncu hap rozet */
.hero-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Beyaz çerçeveli buton */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--ease);
  text-decoration: none;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* Slider nokta göstergeleri */
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  height: 4px;
  width: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}

.hero-dot.active {
  background: var(--brand);
  width: 48px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }
  .hero-content {
    padding: 80px 0 70px;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-overlay {
    background: rgba(8, 12, 24, 0.68);
  }
  .hero-content p br { display: none; }
}

/* Kartlar */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.product-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

/* ─── Yeni Ürün Kartları (pcard) ─────────────────────────────── */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.pcard {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.pcard-img-wrap {
  background: #f1f5f9;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover'da ikinci ürün görseline Radyum benzeri yumuşak geçiş */
.pcard-slider .pslider-track {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pcard-slider:hover .pslider-track img {
  transform: scale(1.025);
}

.pcard:hover .pcard-img-wrap img {
  transform: scale(1.04);
}

.pcard-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pcard-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pcard-title-row h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.pcard-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.pcard-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.pcard-colors {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.cdot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.22);
  cursor: default;
  transition: transform 0.2s ease;
}

.cdot:hover {
  transform: scale(1.25);
}

.pcard-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.pcard-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}



/* Sektöre göre ürün eşleştirmesi - görselsiz, metin odaklı düzen */
.sector-matching-section {
  padding-top: 86px;
  padding-bottom: 90px;
}

.sector-matching-intro {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.sector-matching-intro h2 {
  margin-bottom: 14px;
}

.sector-matching-intro p:last-child {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

.sector-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sector-product-card {
  position: relative;
  min-height: 178px;
  padding: 28px 26px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
}

.sector-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.sector-product-number {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.sector-product-card h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.sector-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.sector-matching-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ─── Sektörler açılır menüsü ───────────────────────────────── */
.nav-sector-dropdown { position: relative; }
.sector-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: 590px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(11, 19, 43, .20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1000;
}
.sector-dropdown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}
.nav-sector-dropdown:hover .sector-dropdown,
.nav-sector-dropdown:focus-within .sector-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-sector-dropdown:hover .nav-chevron,
.nav-sector-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.sector-dropdown-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sector-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}
.sector-dropdown li a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.sector-dropdown li a:hover {
  background: rgba(255, 111, 0, .09);
  color: var(--brand);
  padding-left: 14px;
}
@media (max-width: 1080px) and (min-width: 861px) {
  .sector-dropdown { width: 520px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .pcard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pcard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ─── Önlük Mini Karusel ─────────────────────────────────────── */
.pcard-slider {
  position: relative;
  overflow: hidden;
}

.pslider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pslider-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

.pslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #1e3a5f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 0;
}

.pcard-slider:hover .pslider-btn {
  opacity: 1;
}

.pslider-prev { left: 10px; }
.pslider-next { right: 10px; }

.pslider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.pslider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.pdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pdot.active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.3);
}
/* ─────────────────────────────────────────────────────────────── */

.sector-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sector-item {
  padding: 20px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: var(--ease);
}

.sector-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
}

.sector-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(249, 115, 22, 0.1);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.split img {
  border-radius: var(--radius-lg);
  min-height: 380px;
  object-fit: cover;
}

/* Kurumsal / Hakkımızda - görselsiz, sade düzen */
.about-content {
  max-width: 980px;
  margin-inline: auto;
}

.about-content > .reveal {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 46px;
  box-shadow: var(--shadow-soft);
}

.about-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.about-content p {
  max-width: 880px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.about-content .about-checks {
  margin-top: 26px;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .about-content > .reveal {
    padding: 30px 22px;
  }
}

/* Form */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font: inherit;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #4b5563;
}

.error-msg {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* İletişim */
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-box {
  padding: 24px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
}

/* İç sayfalar */
.page-hero {
  padding: 92px 0 56px;
  background: linear-gradient(140deg, #f8fafc 0%, #f5f6f8 52%, #fff3ea 100%);
}

.breadcrumb {
  font-size: 0.86rem;
  color: #6b7280;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* Footer */
/* ── Hakkımızda checks & stats ── */
.about-checks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 22px 0 28px;
  padding: 0;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.about-checks li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand);
  background: #fff3ea;
  border-radius: 50%;
  padding: 3px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1;
}

.about-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .about-checks {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.site-footer {
  background: #0b132b;
  color: #c7d0dc;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px 40px;
}

/* — Kolon 1: Logo + Açıklama — */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 56px;
  width: auto;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #9aa8b8;
  margin: 0;
}

/* — Başlıklar — */
.footer-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* — Ürün linkleri — */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links li {
  font-size: 0.92rem;
  color: #9aa8b8;
}

.footer-links a {
  color: #9aa8b8;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand);
}

/* — Bize Ulaşın kolonu — */
.footer-company-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.footer-contact {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #9aa8b8;
  line-height: 1.55;
}

.footer-contact a {
  color: #9aa8b8;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--brand);
}

.fc-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

/* — Sosyal ikonlar — */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #9aa8b8;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
}

/* — Alt şerit — */
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.84rem;
  color: #7d8b9f;
  text-align: center;
}

/* WhatsApp Butonu */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: none;
  align-items: center;
  gap: 8px;
  background: #22c55e;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.35);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Scroll reveal animasyonları */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 420px;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sector-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown .nav-products-link {
    width: 100%;
  }

  .sector-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sector-dropdown:hover .sector-dropdown,
  .nav-sector-dropdown:focus-within .sector-dropdown { transform: none; }

  .nav-sector-dropdown:focus-within .sector-dropdown,
  .nav-sector-dropdown.mobile-open .sector-dropdown { display: block; }

  .sector-dropdown ul { grid-template-columns: 1fr; }

  .products-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .products-dropdown,
  .nav-dropdown:focus-within .products-dropdown {
    transform: none;
  }

  .nav-dropdown:focus-within .products-dropdown,
  .nav-dropdown.mobile-open .products-dropdown {
    display: block;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 14px 4vw 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .product-grid,
  .value-grid,
  .sector-grid,
  .blog-grid,
  .sector-product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .whatsapp-float {
    display: inline-flex;
  }
}

/* ===== ÜRÜN GRUPLARI KATEGORİ GRID ===== */
.cat-section { padding: 56px 0 80px; background: #f8fafc; }

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

.cat-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-top: 4px solid var(--cc, #f97316);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cc, #f97316) 12%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--cc, #f97316);
  stroke: var(--cc, #f97316);
}

.cat-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cc, #f97316);
  line-height: 1.3;
}

.cat-sub-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cc, #f97316);
  margin: -6px 0 0;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.cat-list li {
  font-size: 0.875rem;
  color: #374151;
  padding-left: 16px;
  position: relative;
}
.cat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cc, #f97316);
  opacity: 0.7;
}

.cat-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cc, #f97316);
  text-decoration: none;
  border: 1.5px solid var(--cc, #f97316);
  border-radius: 8px;
  padding: 7px 16px;
  margin-top: 4px;
  transition: background .2s, color .2s;
  width: fit-content;
}
.cat-link:hover {
  background: var(--cc, #f97316);
  color: #fff;
}

@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: 1fr; } }



/* ── Ana sayfa geliştirmeleri ── */
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--bg-dark);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display:block;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height:1;
  color: #fff;
  margin-bottom: 7px;
}
.trust-item span { color:#cbd5e1; font-size:.82rem; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p { margin-top: 12px; max-width: 700px; }

.process-grid {
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
  margin-top:34px;
}
.process-card {
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 22px 24px;
  box-shadow:var(--shadow-soft);
  transition:var(--ease);
}
.process-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-strong); }
.process-no {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border-radius:50%;
  background:#fff7ed;
  color:var(--brand);
  font-weight:800;
  margin-bottom:18px;
}
.process-card h3 { font-size:1.05rem; }
.process-card p { font-size:.9rem; margin:0; }

.home-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:34px 38px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, var(--bg-dark), #1e293b);
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.home-cta h2 { margin-bottom:8px; color:#fff; font-size:clamp(1.45rem,2.5vw,2.2rem); }
.home-cta p { color:#cbd5e1; margin:0; max-width:680px; }
.home-cta .btn { flex-shrink:0; }

.whatsapp-float {
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  box-shadow:0 10px 24px rgba(15,23,42,.18);
}

.form-note {
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:var(--text-muted);
  font-size:.8rem;
}
.form-note svg { width:16px;height:16px;color:var(--brand);flex-shrink:0; }
.honeypot { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.10); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .home-cta { align-items:flex-start; flex-direction:column; padding:28px; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-item { padding:20px 10px; }
  .trust-item strong { font-size:1.35rem; }
  .trust-item span { font-size:.74rem; }
  .process-grid { grid-template-columns:1fr; }
  .home-cta { border-radius:18px; }
}

.btn:disabled { opacity:.65; cursor:wait; transform:none !important; }

/* Açılır menü desktop düzeltmesi: header yüksekliğinin büyümesini engeller ve menüyü kart olarak gösterir. */
@media (min-width: 861px) {
  .site-header .nav-dropdown {
    position: relative;
    height: 100px;
    align-self: stretch;
  }

  .site-header .products-dropdown,
  .site-header .sector-dropdown {
    background-color: #ffffff !important;
    color: var(--text-main);
    z-index: 1100;
  }
}

/* Premium renk varyasyonu: sıcak turuncu + derin lacivert + yumuşak nötrler */
.products-dropdown, .sector-dropdown {
  border-top: 3px solid var(--brand);
}

.stat-strip {
  background: #f8f9fb;
}

/* FINAL DROPDOWN FIX - desktop */
@media (min-width: 861px) {
  .site-header { overflow: visible !important; }
  .site-header .nav-wrap {
    position: relative;
    height: 100px;
    min-height: 100px;
  }
  .site-header .nav-dropdown {
    position: relative !important;
    height: 100px !important;
    align-self: stretch;
    overflow: visible;
  }
  .site-header .products-dropdown,
  .site-header .sector-dropdown {
    position: absolute !important;
    top: 100% !important;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -8px);
    z-index: 2000 !important;
    background: #fff !important;
    color: var(--text-main) !important;
  }
  .site-header .nav-dropdown:hover > .products-dropdown,
  .site-header .nav-dropdown:focus-within > .products-dropdown,
  .site-header .nav-sector-dropdown:hover > .sector-dropdown,
  .site-header .nav-sector-dropdown:focus-within > .sector-dropdown {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

/* Sector dropdown removed: SEKTÖRLER is now a direct navigation link. */
.sector-dropdown, .nav-sector-dropdown { display:none !important; }

/* Sektörel çözümler görseli */
.sector-visual-section {
  overflow: hidden;
}
.sector-visual-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
}
.sector-visual-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .sector-visual-wrap {
    border-radius: 12px;
  }
}


/* =========================================================
   TYPOGRAPHY + PREMIUM UI PASS
   ========================================================= */

:root {
  --heading-font: "Manrope", "Segoe UI", Arial, sans-serif;
  --body-font: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --text-heading: #0f172a;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, .hero-badge, .kicker, .nav-link, .btn,
.products-dropdown-title, .products-dropdown-all, .trust-item strong,
.footer-company-name {
  font-family: var(--heading-font);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
}

h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }

p, li { text-wrap: pretty; }

.section { padding: 92px 0; }
.section > .container > .section-head,
.section > .container > .section-title {
  margin-bottom: 34px;
}

/* More refined navigation */
.nav { gap: 20px; }
.nav-link {
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .025em;
}
.nav-cta {
  margin-left: 4px;
  padding: 12px 20px;
  border-radius: 10px;
}

/* Buttons: cleaner, more intentional hierarchy */
.btn {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.btn-primary {
  box-shadow: 0 8px 20px rgba(249, 115, 22, .20);
}
.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(249, 115, 22, .26);
}

/* Cards feel more premium without becoming flashy */
.product-card, .sector-card, .process-card, .feature-card,
.blog-card, .contact-card, .quote-card {
  border-color: rgba(15, 23, 42, .08);
}
.product-card, .sector-card, .process-card, .feature-card, .blog-card, .contact-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover, .sector-card:hover, .process-card:hover,
.feature-card:hover, .blog-card:hover, .contact-card:hover {
  border-color: rgba(249, 115, 22, .18);
}

/* Hero hierarchy */
.hero h1 {
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  max-width: 820px;
}
.hero p {
  max-width: 760px;
  font-size: 1.04rem;
  line-height: 1.75;
}
.hero-badge {
  font-weight: 800;
  letter-spacing: .09em;
}

/* Trust strip: quieter, more corporate */
.trust-item strong { font-weight: 800; }
.trust-item span { letter-spacing: .01em; }

/* Forms */
input, select, textarea, button { font-family: var(--body-font); }
input, select, textarea {
  border-radius: 10px !important;
}
label {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text-heading);
}

/* Footer typography */
.footer-desc { line-height: 1.7; }
.footer-company-name { font-weight: 800; }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .nav { gap: 14px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: 62px 0; }
  .hero h1 { letter-spacing: -.025em; }
  .hero p { font-size: .98rem; line-height: 1.65; }
  .btn { min-height: 44px; }
}
