@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2447;
  --accent: #e63946;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --bg-light: #f7f8fc;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a5298 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label.centered { text-align: center; }

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
}

/* ── BİZ KİMİZ ── */
.about-section {
  padding: 88px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-logo-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  display: block;
}

.about-text-col .section-label {
  color: var(--accent);
}

.about-text-col h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text-col p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text-col p:last-of-type { margin-bottom: 28px; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-block;
  background: rgba(26, 60, 110, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(26, 60, 110, 0.15);
}

/* ── MİSYON / VİZYON ── */
.mv-section {
  padding: 88px 0;
  background: var(--primary-dark);
  color: var(--white);
}

.mv-header {
  text-align: center;
  margin-bottom: 56px;
}

.mv-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #90cdf4;
  margin-bottom: 14px;
}

.mv-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.mv-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: stretch;
  min-height: 520px;
}

.mv-image-col {
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}
.mv-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mv-content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 24px 40px 48px;
  max-width: 640px;
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mv-card-icon svg { width: 26px; height: 26px; }

.mission-card .mv-card-icon { background: rgba(230,57,70,0.2); }
.mission-card .mv-card-icon svg { fill: #ff6b74; }

.vision-card .mv-card-icon { background: rgba(99,179,237,0.15); }
.vision-card .mv-card-icon svg { fill: #90cdf4; }

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mv-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mv-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.mv-card ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.mission-card ul li::before { background: #ff6b74; }
.vision-card ul li::before { background: #90cdf4; }

/* eski stiller uyumluluk için */
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-block .policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.mv-block .policy-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── POLİTİKALAR ── */
.policies-section {
  padding: 88px 0;
  background: var(--bg-light);
}

.policies-section .section-label {
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 48px;
  line-height: 1.2;
}

.section-title.centered { text-align: center; }

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

.policy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.policy-card:nth-child(1) { border-top-color: var(--primary); }
.policy-card:nth-child(2) { border-top-color: var(--accent); }
.policy-card:nth-child(3) { border-top-color: #2ecc71; }

.policy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.policy-icon svg {
  width: 22px;
  height: 22px;
}

.arge { background: rgba(26, 60, 110, 0.1); }
.arge svg { fill: var(--primary); }

.kalite { background: rgba(230, 57, 70, 0.1); }
.kalite svg { fill: var(--accent); }

.cevre { background: rgba(46, 204, 113, 0.12); }
.cevre svg { fill: #27ae60; }

.policy-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.policy-divider {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.policy-card:nth-child(1) .policy-divider { background: var(--primary); }
.policy-card:nth-child(2) .policy-divider { background: var(--accent); }
.policy-card:nth-child(3) .policy-divider { background: #2ecc71; }

.policy-card .policy-list { gap: 10px; }

.policy-card .policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.policy-card .policy-list li::before {
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-card:nth-child(1) .policy-list li::before { color: var(--primary); background: rgba(26,60,110,0.08); }
.policy-card:nth-child(2) .policy-list li::before { color: var(--accent); background: rgba(230,57,70,0.08); }
.policy-card:nth-child(3) .policy-list li::before { color: #27ae60; background: rgba(46,204,113,0.1); }

/* ── FOOTER ── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 260px;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.footer-social a:hover { background: var(--accent); }

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-col h6 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--white); }

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

  .about-logo-img { max-width: 100%; }

  .mv-layout {
    grid-template-columns: 1fr;
  }

  .mv-image-col {
    min-height: 280px;
    border-radius: 0;
  }

  .mv-content-col {
    padding: 32px 24px;
    max-width: 100%;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .factory-img {
    position: static;
    max-height: 360px;
    object-fit: cover;
  }

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

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

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

  .footer-map {
    grid-column: 1 / -1;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .page-hero { padding: 56px 0 48px; }

  .about-section,
  .mv-section,
  .policies-section {
    padding: 56px 0;
  }

  .policy-card { padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr; }

  .footer-map { height: 160px; }
}
