/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2d7a3a;
  --green-light: #4caf50;
  --green-dark: #1b5e25;
  --gold: #e8a020;
  --cream: #fdf9f0;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666;
  --card-bg: #ffffff;
  --radius: 18px;
  --shadow: 0 8px 40px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,122,58,0.12);
  transition: box-shadow .3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-icon { font-size: 1.6rem; }
.logo em { color: var(--green-light); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.btn-nav {
  background: var(--green);
  color: white !important;
  padding: .5rem 1.3rem;
  border-radius: 50px;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--green-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-dark);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: .8rem;
  border-top: 1px solid rgba(45,122,58,0.1);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  padding: .4rem 0;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 6vw 60px;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.blob1 { width: 600px; height: 600px; background: #a8e6af; top: -150px; left: -150px; animation: drift 10s ease-in-out infinite alternate; }
.blob2 { width: 400px; height: 400px; background: #ffe0a0; bottom: 0; right: 10%; animation: drift 13s ease-in-out infinite alternate-reverse; }
.blob3 { width: 300px; height: 300px; background: #b2f0c5; top: 40%; left: 40%; animation: drift 8s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 30px) scale(1.08); } }

.hero-content { position: relative; z-index: 1; }
.badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 50px;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--green-dark);
  line-height: 1;
  animation: fadeUp .7s ease .1s both;
}
.hero h1 span { color: var(--green-light); }
.hero-sub {
  margin: 1.5rem 0 2.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  animation: fadeUp .7s ease .2s both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s ease .3s both; }
.btn-primary {
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(45,122,58,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: all .2s;
}
.btn-secondary:hover { background: var(--green); color: white; }

.hero-visual { position: relative; z-index: 1; animation: fadeUp .8s ease .4s both; }
.fruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fruit-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: 2.2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.fruit-card span { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.fruit-card:hover { transform: translateY(-6px) scale(1.04); box-shadow: 0 16px 50px rgba(0,0,0,0.13); }
.f1 { animation: pop .5s ease .5s both; }
.f2 { animation: pop .5s ease .6s both; }
.f3 { animation: pop .5s ease .7s both; }
.f4 { animation: pop .5s ease .8s both; }
.f5 { animation: pop .5s ease .9s both; }
.f6 { animation: pop .5s ease 1s both; }
@keyframes pop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: .85rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STATS ===== */
.stats {
  background: var(--green-dark);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1rem 2.5rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: .85rem; opacity: .8; text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.2); }

/* ===== ABOUT ===== */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 4vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-inner {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #c8f0cc, #a2d9a8);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
}
.about-icon-big { font-size: 8rem; }
.about-decoration {
  position: absolute;
  width: 60%;
  height: 60%;
  border: 3px dashed rgba(45,122,58,.3);
  border-radius: 20px;
  top: -20px;
  left: -20px;
}
.section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green);
  margin-bottom: .8rem;
}
.section-label.light { color: rgba(255,255,255,.7); }
.about h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--green-dark); margin-bottom: 1.5rem; }
.about p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.5rem; }
.feat { font-size: .9rem; font-weight: 500; color: var(--text); }

/* ===== ŞUBELER ===== */
.subeler {
  background: white;
  padding: 100px 4vw;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--green-dark); margin-top: .5rem; }
.sube-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sube-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
}
.sube-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-light); }
.sube-card.featured {
  background: var(--green-dark);
  color: white;
  box-shadow: 0 12px 50px rgba(27,94,37,.25);
}
.sube-card.featured .sube-adres,
.sube-card.featured .sube-info span { color: rgba(255,255,255,.75); }
.sube-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sube-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sube-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.sube-adres { color: var(--text-muted); font-size: .9rem; line-height: 1.5; margin-bottom: 1rem; }
.sube-info { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.2rem; }
.sube-info span { font-size: .85rem; color: var(--text-muted); }
.sube-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  transition: gap .2s;
}
.sube-card.featured .sube-link { color: var(--gold); }
.sube-link:hover { letter-spacing: .03em; }

/* ===== İLETİŞİM ===== */
.iletisim {
  background: var(--green-dark);
  padding: 100px 4vw;
}
.iletisim-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.iletisim-text h2 { font-size: clamp(2rem, 3vw, 2.8rem); color: white; margin-bottom: 1rem; }
.iletisim-text p { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .9rem 1.2rem;
}
.c-icon { font-size: 1.5rem; }
.contact-item strong { display: block; color: white; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .1rem; }
.contact-item span { color: rgba(255,255,255,.75); font-size: .95rem; }

.social-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.social-btn {
  background: rgba(255,255,255,.12);
  color: white;
  text-decoration: none;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  transition: background .2s;
}
.social-btn:hover { background: rgba(255,255,255,.22); }

.iletisim-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.iletisim-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
  background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green-light); background: white; }
.form-group textarea { height: 110px; resize: vertical; }

.btn-gonder {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: .95rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .03em;
}
.btn-gonder:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: #e8f5e9;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,.6);
  padding: 2.5rem 4vw;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo { font-size: 1.2rem; font-weight: 700; color: white; font-family: 'Playfair Display', serif; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 6vw 60px; }
  .hero-visual { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .sube-grid { grid-template-columns: 1fr; max-width: 480px; }
  .iletisim-inner { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats { gap: .5rem; }
  .stat-item { padding: 1rem 1.5rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
