/* ========== GENEL RESET ========== */

/* Google Fontlar – en başa alındı (Safari için kritik) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.5;

  /* footer için sticky yapı */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* GENEL CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== HEADER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    transparent
  );
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s;
}

.site-header.scrolled {
  background: #3e8000;
  box-shadow: 0 1px 2px rgba(15,23,42,0.18);
  padding: 6px 0;
}

/* LOGO + MENÜ SATIRI */
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

/* LOGO – solda */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 170px;
}

.nav-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-left: -40px;
}

/* MENÜ – ortada (desktop) */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 48px;
  margin-left: 150px;
}

.nav-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  padding: 4px 0;
  letter-spacing: 0.2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* EN BUTONU – sağda (desktop) */
.nav-lang {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 9px 13px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* EN butonu sadece index (home-page) için */
body:not(.home-page) .nav-lang {
  display: none !important;
}

.nav-lang:hover {
  transform: scale(1.08);
}

/* MOBİL MENÜ BUTONU (desktop’ta gizli) */
.nav-toggle {
  display: none;
}

/* MENÜ PERDESİ – SADECE TEKNİK SEÇİCİ, EKRANI KARARTMAZ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;   /* karartma yok */
  opacity: 0;
  pointer-events: none;      /* hiçbir şeyi bloklamasın */
  z-index: 0;
}

/* show gelse bile yine etkisiz */
.nav-backdrop.show {
  opacity: 0;
  pointer-events: none;
}

/* MENÜ AÇIKKEN SAYFAYI KİLİTLEME */
body.menu-open {
  overflow: visible;
}

/* ========== MOBİL DÜZEN (YAN PANEL) ========== */
@media (max-width: 900px) {

  .nav-inner {
    max-width: 100%;
    padding: 0 16px;
    height: 55px;
    gap: 16px;
  }

  /* ORTA KART MENÜ (mobil menü) */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 360px;

    background: radial-gradient(circle at top,
                rgba(62,128,0,0.16),
                rgba(5,8,15,0.96));
    backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 22px 45px rgba(15,23,42,0.75);

    flex-direction: column;
    align-items: stretch;
    padding: 6px 0;
    gap: 0;
    margin-left: 0;

    display: none;          /* kapalı */
    z-index: 2001;          /* backdrop'un üstünde */
    pointer-events: auto;   /* tıklama alır */
  }

  /* MENÜ AÇIK HALİ */
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 18px;
    font-size: 17px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* EN butonu */
  .nav-lang {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #000;
    font-size: 13px;
  }

  /* HAMBURGER */
  .nav-toggle {
    display: block;
    width: 38px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2100; /* her şeyin üstünde */
  }
}

/* ========== HERO SLIDER ========== */

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh + 160px);
  min-height: 1200px;
  overflow: hidden;
  background: #000 !important;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.15);
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  pointer-events: none; /* tıklamayı engellemesin */
}

/* ortadaki metin */
.hero-center {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 5;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-title {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
}

/* ALT EĞİM */
.hero-slider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -105px;
  width: 165%;
  height: 240px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 7;
  pointer-events: none; /* tıklamayı engellemesin */
}

/* scroll ikonu */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border-radius: 20px;
  border: 2px solid #ffffff;
  z-index: 5;
}

.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* sağ dikey noktalar */
.hero-dots {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.hero-dot {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgb(0, 255, 55);
  border: none;
  cursor: pointer;
}

.hero-dot.active {
  background: #ffffff;
}


/* ========== BÖLÜMLER GENEL ========== */

.section {
  padding: 60px 0;
}

.section-light {
  background: #f9fafb;
}

.section-title {
  text-align: center;
  margin: 0 0 6px;
  font-size: 26px;
}

/* ========== ÜRÜNLER (ANA SAYFA BLOĞU) ========== */

.section-products {
  position: relative;
  background: #ffffff;
  padding: 60px 0 50px;
  margin-top: -70px;
}

.section-underline span {
  display: block;
  width: 60px;
  height: 2px;
  margin: 10px auto 0;
  background: #3e8000;
  border-radius: 999px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.product-tab {
  padding: 10px 22px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  transform: scale(1);
  transition: transform 0.25s ease,
              background 0.25s ease,
              color 0.25s ease,
              box-shadow 0.25s ease;
  color: #111827;
}

.product-tab.active {
  background: #3e8000;
  border-color: #3e8000;
  color: #ffffff;
}

.product-tab:hover {
  transform: scale(1.15);
  background: #3e8000;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-tab.active:hover {
  background: #2f6000;
}

.product-panels {
  max-width: 900px;
  margin: 0 auto;
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: block;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.product-image {
  max-width: 320px;
  overflow: hidden;
  border-radius: 12px;
}

.product-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.product-text p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* ürün görsel hover zoom */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-image:hover img {
  transform: scale(1.15);
}

/* ========== ABOUT / 2015'TEN BERİ BANNER ========== */

.section-about-banner {
  position: relative;
  color: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #3e8000, #c4e047),
    url("img/about-bg.jpg") center center / cover no-repeat;
  opacity: 0.95;
}

.about-banner-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-banner-inner h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.about-banner-inner p {
  margin: 0 0 18px;
  font-size: 14px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-outline:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ========== SÜRDÜRÜLEBİLİRLİK / SEKTÖRLER BLOĞU (ANA SAYFA) ========== */
.section-green,
.section-sectors {
  padding: 70px 0 80px;
}

/* 1. bölüm: daha belirgin yeşil degrade */
.section-green {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #eef8e6 25%,
    #daf0cd 55%,
    #c6e8b7 80%,
    #b2e0a1 100%
  );
}

/* 2. bölüm: bir önceki bölümün alt renginden başlayarak devam */
.section-sectors {
  background: linear-gradient(
    to bottom,
    #b2e0a1 0%,
    #cfecc4 40%,
    #e7f7de 75%,
    #ffffff 100%
  );
  border-top: none !important;
}

/* sayfanın bu kısmının altında beyaz hat kalmasın diye */
body {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 26px;
}

.section-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #8bd34c 40%, #3e8000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* yaprak ikonu */
.icon-leaf::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50% 50% 50% 0;
  background: #ffffff;
  transform: rotate(-45deg);
}

/* grid ikonu */
.icon-grid::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 0 #ffffff,
    0 0 0 7px rgba(255,255,255,0.18);
}

.section-green .section-title,
.section-sectors .section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f6b00;
}

.section-green .section-text {
  max-width: 640px;
  margin: 8px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5b38;
}

/* sektör etiketleri */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sector-tag {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #d0d7dd;
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: 0.22s ease;
  box-shadow: 0 2px 6px rgba(15,23,42,0.08);
}

.sector-tag:hover {
  background: #3e8000;
  color: #ffffff;
  border-color: #3e8000;
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ========== ÜRETİM GRID ========== */

.production-grid {
  background: #ffffff;
  padding: 50px 0;
}

.production-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.grid-box {
  position: relative;
  width: 240px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f4f6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, opacity .6s ease;
}

.grid-box:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.grid-box:hover img {
  transform: scale(1.12);
  opacity: 0.85;
}

/* ========== BUTON / PİLL HOVER GENEL ========== */

.pill {
  transition: transform 0.2s ease, background 0.2s ease;
}

.pill:hover {
  transform: scale(1.12);
  background: #ffffff;
  color: #000;
}

.btn-primary,
.btn-ghost {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ========== FOOTER ========== */

.new-footer {
  background: linear-gradient(180deg, #438b00, #a9c726);
  color: #fff;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 40px 0 8px;
  flex-shrink: 0;
  border-radius: 32px 32px 0 0;
}

.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

/* Sol blok: logo + kısa metin */
.footer-brand {
  flex: 1 1 220px;
}

.footer-logo {
  width: 165px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Sağ blok sütunlar */
.footer-cols {
  flex: 2 1 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col h4 {
  font-size: 13px;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: #e9f5e0;
  text-decoration: none;
  margin-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  transform: translateX(2px);
}

/* En alt ince çizgi + telif */
.footer-bottom {
  text-align: center;
  padding: 6px 0 2px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.20);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ========== WHATSAPP BUTONU ========== */

.wp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.wp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wp-glow 2.2s infinite ease-in-out;
}

.wp-icon {
  position: relative;
  width: 54px;
  height: auto;
  object-fit: contain;
  display: block;
  animation: wp-pulse 1.6s infinite ease-in-out;
}

@keyframes wp-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.22); }
  100% { transform: scale(1); }
}

@keyframes wp-glow {
  0% {
    box-shadow: 0 0 14px rgba(37,211,102,0.5),
                0 0 28px rgba(37,211,102,0.7);
  }
  50% {
    box-shadow: 0 0 22px rgba(37,211,102,0.7),
                0 0 40px rgba(37,211,102,0.9);
  }
  100% {
    box-shadow: 0 0 14px rgba(37,211,102,0.5),
                0 0 28px rgba(37,211,102,0.7);
  }
}

/* menü açıkken whatsapp tamamen gizle */
body.menu-open .wp-btn {
  opacity: 0;
  pointer-events: none;
}

/* ========== HAKKIMIZDA SAYFASI (YENİ TASARIM) ========== */

/* SAYFA ARKA PLAN */
body.about-page {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* HEADER her zaman yeşil */
body.about-page .site-header,
body.about-page .site-header.scrolled {
  background: #3e8000 !important;
  box-shadow: 0 1px 2px rgba(15,23,42,0.18);
}

/* PREMIUM DEGRADE ARKA PLAN */
.about-banner,
.about-main {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f2faec 10%,
    #dff1d1 32%,
    #c7e7a9 60%,
    #b4dd7d 82%,
    #ffffff 100%
  );
  border: none !important;
}

/* BAŞLIK BÖLÜMÜ */
.about-banner {
  padding: 90px 0 24px;
  margin: 0;
  text-align: center;
}

/* PREMIUM HAKKIMIZDA YAZISI */
.about-banner h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;
}

/* premium çizgi */
.about-banner h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #69c424, #2f7a00);
  opacity: 0.9;
}

/* İÇERİK KUTUSU */
.about-main {
  padding: 30px 0 140px;
}

/* CAM EFEKT + PREMIUM KART */
.about-main-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 46px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* METİNLER */
.about-main-text h2 {
  margin: 0 0 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: #1f2b16;
}

.about-main-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #2d2d2d;
  opacity: 0.92;
  margin: 0 0 14px;
}

.about-main-text h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #1f2b16;
  font-weight: 600;
}

/* PREMIUM MADDE İŞARETLERİ */
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #111827;
  letter-spacing: 0.2px;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f7a00, #6edc31);
  left: 0;
  top: 7px;
}

/* HAKKIMIZDA GİRİŞ ANİMASYONU */
body.about-page .about-banner,
body.about-page .about-main-inner {
  opacity: 0;
  transform: translateY(28px);
}

body.about-page.page-loaded .about-banner {
  animation: softDropIn 0.55s ease-out forwards;
}

body.about-page.page-loaded .about-main-inner {
  animation: softDropIn 0.55s ease-out forwards;
  animation-delay: 0.12s;
}

/* MOBİL – HAKKIMIZDA */
@media (max-width: 900px) {

  .about-banner {
    padding: 70px 0 8px;
  }

  .about-banner h1 {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .about-main {
    padding: 20px 0 80px;
  }

  .about-main-inner {
    padding: 28px 20px;
    margin: 0 14px;
  }

  .about-main-text p {
    font-size: 15px;
  }
}

/* ========== RESİM KORUMA ========== */

.img-protect {
  position: relative;
  display: inline-block;
}

.img-protect img {
  display: block;
  user-select: none;
  pointer-events: none;
}

.img-protect::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  pointer-events: auto;
}

/* ufak yardımcı sınıf */
.no-auto-correct {
  -webkit-text-security: none;
}

/* ========== RESPONSIVE GENEL ========== */

/* tablet ve altı */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-inner {
    gap: 40px;
  }

  .nav-links {
    margin-left: 0;
    gap: 24px;
  }

  .production-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-box {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
}

/* mobil menü + ortak mobil ayarlar */
@media (max-width: 768px) {
  /* header */
  .nav-inner {
    height: auto;
    padding: 6px 16px 8px;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-logo img {
    width: 140px;
    height: auto;
    margin-left: 0;
  }

  /* EN butonu: mobilde de görünsün, sağa yaslı */
  .nav-lang {
    display: inline-flex;
    margin-left: auto;
    margin-right: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
  }

  /* HAMBURGER BUTON (stil güçlendirme) */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 36px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  }

  /* hero ve alt kısımlar */
  .hero-slider {
    height: 100vh;
    min-height: 600px;
  }

  .hero-center {
    top: 55%;
    padding: 0 18px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-dots {
    right: 14px;
  }

  .production-inner {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .section-green,
  .section-sectors {
    padding: 50px 0 60px;
    background: linear-gradient(to bottom, #E9F6DF, #ffffff);
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4px;
  }

  .footer-cols {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ============================================================
   ÜRÜNLER SAYFASI – GENEL
============================================================ */

body.products-page {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* Header her zaman yeşil */
body.products-page .site-header,
body.products-page .site-header.scrolled {
  background: #3e8000 !important;
  box-shadow: 0 1px 2px rgba(15,23,42,0.18);
}

/* Orta degrade zemin */
.products-hero,
.products-main {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f2faec 10%,
    #dff1d1 32%,
    #c7e7a9 60%,
    #cee9ab 82%,
    #ffffff 100%
  );
}

/* ============================================================
   ÜST BAŞLIK
============================================================ */

.products-hero {
  padding: 90px 0 10px;
}

/* merkeze hizalı, ama kaydırma yok */
.products-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* BAŞLIK → sola */
.products-hero h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;

  transform: translateX(-40px);
}

/* çizgi */
.products-hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #69c424, #2f7a00);
  opacity: 0.9;
}

/* ALT AÇIKLAMA */
.products-hero p {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.9;
  color: #1f2b16;
  opacity: 0.92;
  letter-spacing: 0.15px;
  font-weight: 400;
  padding: 8px 14px;
  background: linear-gradient(
    to right,
    #a9d88a20,
    #ffffff00,
    #a9d88a20
  );
  border-radius: 10px;

  transform: translateX(-40px);
}


/* ============================================================
   ÜRÜN KARTLARI
============================================================ */

.products-main {
  padding: 30px 0 130px;
}

.products-grid {
  max-width: 1040px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* kart */
.product-card {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.28);
}

/* ürünler sayfasında eski yatay layout'u tamamen iptal et */
body.products-page .product-layout {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* fotoğraf alanı – dikey, tam genişlik */
body.products-page .product-image {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

body.products-page .product-image .img-protect,
body.products-page .product-image img {
  width: 100% !important;
  height: 230px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* metin alanı */
.product-body,
body.products-page .product-text {
  width: 100% !important;
  margin: 0 !important;
  padding: 16px 18px 18px !important;
}

.product-body h2,
body.products-page .product-text h2 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #1f2b16;
}

.product-body p,
body.products-page .product-text p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: #374151;
}

/* ============================================================
   ALT: NEDEN GÖKTAŞ
============================================================ */

.products-bottom {
  max-width: 1040px;
  margin: 0 auto;
}

.products-bottom h3 {
  text-align: center;
  margin: 0 0 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: #1f2b16;
}

.products-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.pb-item {
  background: rgba(255,255,255,0.24);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pb-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.pb-item h4 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #1f2b16;
  text-align: center;
}

.pb-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  text-align: center;
}

/* ============================================================
   GİRİŞ ANİMASYONU (ÜRÜNLER)
============================================================ */

/* başlangıç hali */
body.products-page .products-hero-inner,
body.products-page .product-card {
  opacity: 0;
  transform: translateY(28px);
}

/* alt kutular: sadece opacity animasyonu */
body.products-page .pb-item {
  opacity: 0;
}

@keyframes softDropIn {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* alt kutular için ayrı fade animasyonu */
@keyframes softFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* hero */
body.products-page.page-loaded .products-hero-inner {
  animation: softDropIn 0.55s ease-out forwards;
}

/* ürün kartları – sırayla */
body.products-page.page-loaded .products-grid .product-card {
  animation: softDropIn 0.55s ease-out forwards;
}

body.products-page.page-loaded .products-grid .product-card:nth-child(1) { animation-delay: 0.10s; }
body.products-page.page-loaded .products-grid .product-card:nth-child(2) { animation-delay: 0.20s; }
body.products-page.page-loaded .products-grid .product-card:nth-child(3) { animation-delay: 0.30s; }
body.products-page.page-loaded .products-grid .product-card:nth-child(4) { animation-delay: 0.40s; }
body.products-page.page-loaded .products-grid .product-card:nth-child(5) { animation-delay: 0.50s; }
body.products-page.page-loaded .products-grid .product-card:nth-child(6) { animation-delay: 0.60s; }

/* neden göktaş kutuları – sadece fade */
body.products-page.page-loaded .products-bottom .pb-item {
  animation: softFadeIn 0.55s ease-out forwards;
}

body.products-page.page-loaded .products-bottom .pb-item:nth-child(1) { animation-delay: 0.80s; }
body.products-page.page-loaded .products-bottom .pb-item:nth-child(2) { animation-delay: 0.90s; }
body.products-page.page-loaded .products-bottom .pb-item:nth-child(3) { animation-delay: 1.00s; }

/* ============================================================
   MOBİL – ÜRÜNLER
============================================================ */

@media (max-width: 900px) {

  .products-hero {
    padding: 80px 0 6px;
  }

  .products-hero h1 {
    font-size: 24px;
    letter-spacing: 1.4px;
  }

  .products-hero p {
    font-size: 14.5px;
    padding: 0 10px;
  }

  .products-main {
    padding: 20px 0 90px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 14px 32px;
  }

  /* ÜRÜN GÖRSELLERİ – MOBİLDE GÜVENLİ AYAR */
  body.products-page .product-image,
  body.products-page .product-image .img-protect,
  body.products-page .product-image img {
    width: 100%;
    display: block;
    object-fit: cover;
  }

  body.products-page .product-image img {
    min-height: 190px;
  }

  .products-bottom {
    margin: 0 14px;
  }

  .products-bottom-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SÜRDÜRÜLEBİLİRLİK SAYFASI
============================================================ */
body.sustain-page { 
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* header hep yeşil */
body.sustain-page .site-header,
body.sustain-page .site-header.scrolled {
  background: #3e8000 !important;
  box-shadow: 0 1px 2px rgba(15,23,42,0.18);
}

/* ortak degrade zemin */
.sustain-hero,
.sustain-main {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f2faec 10%,
    #dff1d1 32%,
    #c7e7a9 60%,
    #c9eb9e 82%,
    #ffffff 100%
  );
}

/* başlık bölümü — AŞAĞI ALINDI */
.sustain-hero {
  padding: 150px 0 40px;
}

.sustain-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  transform: translateX(0);
}

/* başlık */
.sustain-hero h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a1a1a;
}

.sustain-hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #69c424, #2f7a00);
  opacity: 0.9;
}

/* hero metni */
.sustain-hero p {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #1f2b16;
  opacity: 0.92;
}

/* ana kart — AŞAĞI ALINDI */
.sustain-main {
  padding: 40px 0 150px;
}

.sustain-main-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 34px 40px 40px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* giriş metni */
.sustain-intro {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #2d2d2d;
}

/* ================= KUTULAR ================= */

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.sustain-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.sustain-card:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}

.sustain-card h2 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #1f2b16;
}

.sustain-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}

/* ================= GİRİŞ ANİMASYONU ================= */

body.sustain-page .sustain-card {
  opacity: 0;
  transform: translateY(30px);
}

body.sustain-page.page-loaded .sustain-card {
  animation: sustainDrop .55s ease-out forwards;
}

@keyframes sustainDrop {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

body.sustain-page.page-loaded .sustain-card:nth-child(1) { animation-delay: .35s; }
body.sustain-page.page-loaded .sustain-card:nth-child(2) { animation-delay: .50s; }
body.sustain-page.page-loaded .sustain-card:nth-child(3) { animation-delay: .65s; }

/* mobil */
@media (max-width: 900px) {
  .sustain-grid {
    grid-template-columns: 1fr;
  }

  .sustain-hero {
    padding-top: 120px;
  }

  .sustain-hero-inner {
    transform: translateX(0);
  }
}

/* ============================================================
   İLETİŞİM SAYFASI
============================================================ */

/* header hep yeşil */
body.contact-page .site-header,
body.contact-page .site-header.scrolled {
  background: #3e8000 !important;
  box-shadow: 0 1px 2px rgba(15,23,42,0.18);
}

/* sürdürülebilirlik zeminini kullan */
.sustain-hero,
.sustain-main,
.contact-map-full {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f2faec 10%,
    #dff1d1 32%,
    #c7e7a9 60%,
    #c9eb9e 82%,
    #ffffff 100%
  );
}

/* hero boşlukları */
body.contact-page .sustain-hero {
  padding: 120px 0 22px;
}

/* ana kutu */
body.contact-page .sustain-main {
  padding: 20px 0 50px;
}

body.contact-page .sustain-main-inner {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  padding: 36px 42px 36px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* ================= FORM ================= */

.contact-form-box {
  max-width: 460px;
  margin: 0 auto;
}

.contact-form-box .form-row {
  margin-bottom: 14px;
}

.contact-form-box label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1f2933;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 9px 14px;
  font-size: 14px;
  background: #f9fafb;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form-box textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 120px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #3e8000;
  box-shadow: 0 0 0 1px rgba(62,128,0,0.25);
  background: #ffffff;
}

/* butonlar satırı */
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* Gönder */
.btn-contact {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ea51c, #2f7a00);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

/* WhatsApp’tan Ulaş */
.btn-contact-wp {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #25d366;
  background: #e9fff2;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  opacity: .96;
}

.btn-contact-wp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  background: #d4ffe7;
}

/* mobilde butonlar alt alta */
@media (max-width: 600px) {
  .form-actions {
    flex-direction: column;
  }
}

/* ================= GOOGLE MAPS ================= */

.contact-map-full {
  padding: 0;
}

.contact-map-full iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .contact-map-full iframe {
    height: 220px;
  }
}

/* sol tarafa gidebilecek varsa zorla kapat */
body.contact-page .wp-btn-left,
body.contact-page .whatsapp-left,
body.contact-page .wp-floating-left {
  display: none !important;
}

/* ===== EN BUTONU – beyaz kutu + hover büyüme (index için lang-toggle) ===== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform .22s ease, background .22s ease;
}

/* hover efekti */
.lang-toggle:hover {
  transform: scale(1.08);
  background: #f2f2f2;
}

/* sadece anasayfada görünsün */
body:not(.home) .lang-toggle {
  display: none !important;
}
/* ====== MOBİL (768px altı) — HERO BAŞLIK + ALT YAZI AŞAĞI İNSİN ====== */
@media (max-width: 768px) {

  /* Sabit header için üst boşluk (istersen dokunma) */
  body.about-page main,
  body.products-page main,
  body.sustain-page main,
  body.contact-page main {
    padding-top: 100px !important;
  }

  /* HERO bloklarını serbest bırak + AŞAĞI AL */
  .about-banner,
  .about-banner-inner,
  .sustain-hero,
  .sustain-hero-inner,
  .products-hero,
  .products-hero-inner,
  body.contact-page .sustain-hero,
  body.contact-page .sustain-hero-inner {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;

    padding-top: 80px !important;   /* ÖNEMLİ: 16 yerine 80 */
    padding-bottom: 24px !important;
    text-align: center !important;
  }

  /* HERO başlık + açıklamalar */
  .about-banner h1,
  .about-banner p,
  .sustain-hero h1,
  .sustain-hero p,
  .products-hero h1,
  .products-hero p,
  body.contact-page .sustain-hero h1,
  body.contact-page .sustain-hero p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 16px 8px !important;
    line-height: 1.4 !important;
    color: #111827 !important;
  }

  /* Mobilde zoom/animasyon kapalı kalsın */
  .grid-box,
  .grid-box:hover {
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
  }

  body.about-page .about-banner,
  body.about-page .about-main-inner,
  body.products-page .products-hero-inner,
  body.products-page .product-card,
  body.sustain-page .sustain-hero,
  body.sustain-page .sustain-card,/* ==========================
   MOBİL – SADECE İLETİŞİM HERO AŞAĞI İNSİN
========================== */
@media (max-width: 768px) {
  body.contact-page .sustain-hero {
    padding-top: 160px !important;  /* gerekirse 140–180 arası oynayabilirsin */
    padding-bottom: 24px !important;
  }
}

  body.contact-page .sustain-hero,
  body.contact-page .sustain-main-inner,
  .anim-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ==========================
   MOBİL – SADECE İLETİŞİM HERO AŞAĞI İNSİN
========================== */
@media (max-width: 768px) {
  body.contact-page .sustain-hero {
    padding-top: 160px !important;  /* gerekirse 140–180 arası oynayabilirsin */
    padding-bottom: 24px !important;
  }
}
/* ÜRÜNLER SAYFASINDA GÖRÜNME SİGORTASI */
body.products-page .products-hero-inner,
body.products-page .product-card,
body.products-page .pb-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
