:root {
  --primary: #1e3d2f;
  --secondary: #0d750d;
  --accent: #3a9b3a;
  --text-dark: #263226;
  --text-light: #5d6a5f;
  --bg-light: #f4f6f5;
  --white: #ffffff;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.06);
  --shadow-mid: 0 16px 36px rgba(30, 61, 47, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 72px;
   margin: 0;
}
* {
  box-sizing: border-box;
}




.container {

  margin: 0 auto;
  padding: 0 20px;
  width: min(100% - 32px, 1280px);
  
}

/* =========================
   HEADER
   ========================= */
#header-area {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(30,61,47,0.08);
  transition: box-shadow 0.3s ease;
}

#header-area.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  transition: height 0.3s ease;
}



/* LOGO */
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo a { display: flex; align-items: center; }
.logo img { display: block; height: 72px; width: auto; transition: height 0.3s ease; }


/* NAV — orta */
#nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: #263226;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu > li > a:hover { background: #f0f5f1; color: #0d750d; }
.menu > li > a.active { color: #0d750d; background: #e8f4ea; font-weight: 700; }

/* Mobil contact row: desktop'ta gizli */
.mobile-contact-row { display: none !important; }

/* SAĞ: CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* Desktop telefon CTA */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1e3d2f;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
  white-space: nowrap;
}
.phone-cta:hover { background: #2f6b45; box-shadow: 0 4px 14px rgba(30,61,47,0.28); transform: translateY(-1px); }
.phone-cta i { font-size: 13px; }

/* Desktop Instagram */
.instagram-btn {
  width: 42px; height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: #fdf0ec;
  color: #c03910;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid rgba(192,57,16,0.14);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}
.instagram-btn:hover { background: #fce4db; box-shadow: 0 4px 12px rgba(192,57,16,0.20); transform: translateY(-1px); }

/* Mobil ikon butonlar — desktop gizli */
.mobile-header-icons { display: none; }

/* HAMBURGER */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: #f0f5f1; }

.hamburger .bar {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  background: #1e3d2f;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

/* X animasyonu */
.hamburger.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* TABLET 1100px */
@media (max-width: 1100px) {
  .header-container { padding: 0 20px; }
  .menu { gap: 2px; }
  .menu > li > a { font-size: 13.5px; padding: 7px 9px; }
  .phone-cta span { display: none; }
  .phone-cta { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 8px; }
}

/* MOBİL ≤992px */
@media (max-width: 992px) {
  .header-container {
    grid-template-columns: auto 1fr;
    height: 64px;
    padding: 0 14px 0 8px;
  }
  #header-area.scrolled .header-container { height: 56px; }
  .logo img { height: 50px; }
  #header-area.scrolled .logo img { height: 42px; }

  /* Nav: full-screen overlay */
  #nav-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw; height: 100dvh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    z-index: 3100;
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  #nav-wrapper.active { transform: translateX(0); pointer-events: auto; }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 400px;
  }
  .menu > li { border-bottom: 1px solid #edf0ee; }
  .menu > li:last-of-type { border-bottom: none; }
  .menu > li > a {
    display: block; width: 100%;
    padding: 16px 4px;
    font-size: 16px; font-weight: 700;
    color: #1e3d2f;
    border-radius: 0; background: transparent;
  }
  .menu > li > a:hover, .menu > li > a.active { background: transparent; color: #0d750d; }

  /* Stagger animasyon */
  #nav-wrapper.active .menu > li { animation: menuFade 0.3s ease both; }
  #nav-wrapper.active .menu > li:nth-child(1) { animation-delay: 0.04s; }
  #nav-wrapper.active .menu > li:nth-child(2) { animation-delay: 0.08s; }
  #nav-wrapper.active .menu > li:nth-child(3) { animation-delay: 0.12s; }
  #nav-wrapper.active .menu > li:nth-child(4) { animation-delay: 0.16s; }
  #nav-wrapper.active .menu > li:nth-child(5) { animation-delay: 0.20s; }
  #nav-wrapper.active .menu > li:nth-child(6) { animation-delay: 0.24s; }

  /* Mobil contact row — menü içinde */
  .mobile-contact-row {
    display: flex !important;
    gap: 12px;
    width: 100%; max-width: 400px;
    margin-top: 24px; padding-top: 20px;
    border-top: 1px solid #edf0ee;
    border-bottom: none !important;
  }

  .mobile-contact {
    flex: 1 1 0;
    display: flex; align-items: center; justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    border: 2px solid transparent;
  }
  .mobile-contact i { font-size: 16px; flex: 0 0 auto; }
  .mobile-contact.instagram i { font-size: 20px; }
  .mobile-contact span { white-space: nowrap; }

  .mobile-contact.phone {
    background: linear-gradient(135deg, #1e3d2f, #2f6b45);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30,61,47,0.22);
  }
  .mobile-contact.phone:hover { background: linear-gradient(135deg,#2f6b45,#1e3d2f); transform: translateY(-1px); }

  .mobile-contact.instagram {
    background: #fff; color: #1e3d2f;
    border-color: #dbe4de;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  }
  .mobile-contact.instagram:hover { background: #f8faf8; border-color: #c3d4c8; transform: translateY(-1px); }

  /* Sağ: mobil ikonlar + hamburger */
  .header-right {
    display: flex; align-items: center; gap: 6px;
    justify-content: flex-end;
    z-index: 3200; position: relative;
  }
  .phone-cta, .instagram-btn { display: none !important; }

  .mobile-header-icons { display: flex; align-items: center; gap: 6px; }
  .mob-icon-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 16px;
    transition: background 0.2s ease;
  }
  .mob-icon-btn.phone { background: #1e3d2f; color: #fff; }
  .mob-icon-btn.phone:hover { background: #2f6b45; }
  .mob-icon-btn.insta { background: #fdf0ec; color: #c03910; border: 1px solid rgba(192,57,16,0.15); font-size: 18px; }
  .mob-icon-btn.insta:hover { background: #fce4db; }

  .hamburger { display: flex; }
  body.menu-open { overflow: hidden; }
}

/* ÇOK DAR ≤400px */
@media (max-width: 400px) {
  .header-container { padding: 0 10px 0 4px; }
  .logo img { height: 44px; }
  .mob-icon-btn { width: 34px; height: 34px; font-size: 14px; }
  .mob-icon-btn.insta { font-size: 16px; }
  .mobile-contact { font-size: 13px; min-height: 46px; padding: 10px 12px; gap: 7px; }
}

/* DESKTOP SAFETY */
@media (min-width: 993px) {
  .hamburger { display: none !important; }
  .mobile-header-icons, .mobile-contact-row { display: none !important; }
  #nav-wrapper {
    position: static !important; inset: auto !important;
    width: auto !important; height: auto !important;
    padding: 0 !important; background: transparent !important;
    backdrop-filter: none !important; box-shadow: none !important;
    transform: none !important; display: flex !important;
    pointer-events: auto !important;
  }
  .menu { flex-direction: row !important; align-items: center !important; }
}
/* =========================
   HERO
   ========================= */
#hero-area {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.hero-fullscreen {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 20px 70px;
  background-image: url('../img/back.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 20, 14, 0.3), rgba(8, 20, 14, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: left;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 16px;
  font-weight: 700;
  background-color: #000;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 6.2vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 auto;
  max-width: 18ch;
  text-align: left;
}

.hero-title span {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .green-line {
  color: #98e866;
  text-shadow: 0 0 12px rgba(152, 232, 102, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-title .white-line {
  color: #f6f8f6;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero-subtext {
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-cta-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta i {
  font-size: 14px;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

/* Birincil — koyu yeşil */
.hero-cta-primary {
  background: linear-gradient(135deg, #1e6b3a, #2f8b45);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30,107,58,0.38);
}

.hero-cta-primary:hover {
  box-shadow: 0 12px 30px rgba(30,107,58,0.48);
}

/* İkincil — beyaz/cam */
.hero-cta-secondary {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.22);
}

/* Instagram — cam + mor ton */
.hero-cta-insta {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

.hero-cta-insta:hover {
  background: rgba(255,255,255,0.18);
}

/* =========================
   BİZ KİMİZ
   ========================= */
.about-studio {
  background: #f0f1ee !important;
  padding: 86px 0 82px;
  position: relative;
}

.about-studio::before,
.about-studio::after,
.about-studio-body::before,
.about-studio-body::after {
  content: none !important;
  display: none !important;
}

.about-studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px 46px;
  align-items: start;
}

.about-studio-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.2;
  color: #123628;
  max-width: 16ch;
}

.about-studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2f8b45;
}

.about-studio-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #59a463;
}

.about-studio-body {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.about-studio-body p {
  color: #25382d;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
}

.about-studio-body p + p {
  margin-top: 14px;
}

.about-studio-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.about-point {
  background: transparent !important;
  border: 1px solid #d3d9d2 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 14px 12px;
  transform: none !important;
}

.about-point strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  color: #183a2b;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
}

.about-point i {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #0f5b2d;
  background: #c2d94c;
  font-size: 16px;
  animation: none !important;
}

.about-point span {
  display: block;
  margin-left: 50px;
  margin-top: 4px;
  color: #506257;
  font-size: 13px;
  line-height: 1.45;
}

/* =========================
   SHARED
   ========================= */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2f6b45;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

/* =========================
   SECTION SHARED HELPERS
   ========================= */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a2e22;
  margin: 10px 0 8px;
  line-height: 1.2;
}
.section-title span { color: #2f8b45; }
.section-desc {
  color: #4f6255;
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================
   SERVICES
   ========================= */
.services {
  padding: 100px 0 80px;
  background: #f4f7f4;
}

#services-area .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,61,47,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 12px 36px rgba(30,61,47,0.14);
  transform: translateY(-4px);
}

/* Visual */
.sc-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.sc-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-card:hover .sc-visual img { transform: scale(1.06); }

.sc-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: #1e3d2f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 6px;
}

/* Body */
.sc-body { padding: 24px 22px 22px; }
.sc-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #1a2e22; margin-bottom: 8px;
}
.sc-body > p {
  font-size: 14px; color: #4f6255;
  line-height: 1.65; margin-bottom: 14px;
}

.sc-list {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.sc-list li {
  font-size: 13.5px; color: #3a5040;
  padding-left: 18px; position: relative; line-height: 1.5;
}
.sc-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%; background: #2f8b45;
}

.sc-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700;
  color: #1e3d2f; text-decoration: none;
  border-bottom: 1px solid #c5d9c9; padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.sc-cta:hover { color: #2f8b45; border-color: #2f8b45; }
.sc-cta i { font-size: 11px; transition: transform 0.2s; }
.sc-cta:hover i { transform: translateX(3px); }

/* Hover Overlay */
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1e3d2f, #2f6b45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 32px;
}
.service-card:hover .sc-overlay { opacity: 1; }

.sc-overlay-content {
  text-align: center; color: #fff;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.service-card:hover .sc-overlay-content { transform: translateY(0); }

.sc-overlay-icon {
  font-size: 42px; color: #a8e6b4;
  margin-bottom: 16px; display: block;
}
.sc-overlay-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.sc-overlay-content p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.88); margin-bottom: 24px;
}
.sc-overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #1e3d2f;
  font-size: 14px; font-weight: 700;
  padding: 11px 24px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.sc-overlay-btn:hover { background: #e8f5ec; transform: translateY(-1px); }

/* Extras */
#services-area .services-extras {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
#services-area .extra-service {
  background: #fff;
  border: 1px solid #d0dcd4;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: #1e3d2f;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
#services-area .extra-service:hover {
  background: #eef5ef; border-color: #b8d0bc; transform: translateY(-2px);
}
#services-area .extra-service i { color: #2f8b45; font-size: 14px; }

.slogan-banner {
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/slogan-bg.jpg') center/cover;
}

.slogan-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
}

.slogan-content span {
  color: var(--accent);
  font-weight: 800;
}

/* =========================
   GALLERY
   ========================= */
.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.instagram-feed-wrapper {
  
  border: 1px solid #eee;
  padding: 10px;
  background: #fcfcfc;
  border-radius: var(--radius-sm);
}



.insta-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: #e1306c;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
}

/* =========================
   ADVANTAGES
   ========================= */
.advantages {
  padding: 100px 0;
  background: #0f2318;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.advantages::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(47,139,69,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(58,155,58,0.12) 0%, transparent 45%);
  pointer-events: none;
}

.advantages-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
}
.adv-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  color: #7ed4a0; margin-bottom: 14px;
}
.adv-kicker::before, .adv-kicker::after {
  content: ""; width: 28px; height: 1px; background: #7ed4a0;
}
.advantages-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800; margin-bottom: 14px;
  line-height: 1.15; letter-spacing: -0.02em;
}
.advantages-header h2 span { color: #7ed4a0; }
.advantages-header p {
  color: rgba(255,255,255,0.65);
  font-size: 15px; line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.adv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8b45, #7ed4a0);
  opacity: 0; transition: opacity 0.3s;
}
.adv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(126,212,160,0.25);
  transform: translateY(-4px);
}
.adv-card:hover::before { opacity: 1; }

.adv-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(126,212,160,0.5);
  margin-bottom: 16px;
}
.adv-icon-wrap { margin-bottom: 14px; }
.adv-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(47,139,69,0.18);
  border: 1px solid rgba(47,139,69,0.3);
  display: grid; place-items: center;
}
.adv-icon i { font-size: 22px; color: #7ed4a0; }
.adv-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 700;
  margin-bottom: 10px; color: #fff;
}
.adv-card p {
  color: rgba(255,255,255,0.62);
  font-size: 13.5px; line-height: 1.7; margin-bottom: 20px;
}
.adv-line {
  height: 1px; background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.adv-card:hover .adv-line { background: rgba(126,212,160,0.2); }

/* =========================
   REFERENCES
   ========================= */
#references-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(58, 155, 58, 0.1), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(30, 61, 47, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f7f4 0%, #edf2ee 100%);
}

.references-shell {
  position: relative;
  border: 1px solid #d6e1da;
  border-radius: 4px;
  padding: 30px 24px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 252, 250, 0.92));
  box-shadow: 0 24px 44px rgba(19, 50, 35, 0.08);
  overflow: hidden;
}

.references-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.references-header {
  margin-bottom: 22px;
}

.references-header h2 {
  margin-top: 6px;
}

.references-lead {
  margin: 14px auto 0;
  max-width: 720px;
  color: #4a5f54;
  font-size: 15px;
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #d8e6dd;
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8b45, #7ed4a0);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(19,50,35,0.10);
  border-color: #b8d4c0;
}

.stat:hover::before { opacity: 1; }

.stat-icon-wrap {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg,#e8f5ec,#d4ecdb);
  border: 1px solid #c2ddc9;
}

.stat-icon {
  font-size: 18px;
  color: #1f5d3a;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat span {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f2b1c;
}

.stat small {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a7264;
  font-weight: 700;
}

.ref-carousel-wrapper {
  overflow: hidden;
  border: 1px solid #d8e3dc;
  border-radius: 4px;
  background: linear-gradient(180deg, #f9fbfa 0%, #f3f7f4 100%);
  padding: 12px 0;
}

#ref-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.ref-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px;
  box-sizing: border-box;
}

.ref-card {
  background: #ffffff;
  border: 1px solid #d9e3dd;
  border-radius: 4px;
  padding: 13px 11px;
  text-align: center;
  min-height: 88px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ref-card:hover {
  transform: translateY(-2px);
  border-color: #c9d8cf;
  box-shadow: 0 10px 20px rgba(19, 50, 35, 0.08);
}

.ref-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #173d2c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  background: #eef5ef;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #d6e3d8;
  box-shadow: 0 2px 6px rgba(30, 61, 47, 0.08);
}

.ref-card strong::before {
  content: "";
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}

.ref-card .ref-service {
  display: inline-block;
  font-size: 11px;
  color: #000;
  line-height: 1.35;
  border-top: 1px solid #e9efeb;
  padding-top: 6px;
}

/* =========================
   BLOG
   ========================= */
.blog-section {
  padding: 100px 0 90px;
  background: #fff;
}
.blog-section .section-header { margin-bottom: 52px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e4ede7;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(19,50,35,0.10);
  transform: translateY(-4px);
}

.blog-card-img-wrap {
  display: block; position: relative;
  overflow: hidden; height: 190px;
}
.blog-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }

.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  background: #1e3d2f; color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

.blog-card-body {
  padding: 20px 18px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 700;
  line-height: 1.35; margin-bottom: 8px;
}
.blog-card-body h3 a {
  color: #1a2e22; text-decoration: none;
  transition: color 0.2s;
}
.blog-card-body h3 a:hover { color: #2f8b45; }
.blog-card-body p {
  font-size: 13.5px; color: #5a7264;
  line-height: 1.65; margin-bottom: 16px; flex: 1;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  color: #2f8b45; text-decoration: none;
  align-self: flex-start; transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more i { font-size: 11px; }

.blog-footer-cta { text-align: center; }
.blog-all-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1e3d2f; color: #fff;
  font-size: 14.5px; font-weight: 700;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
.blog-all-btn:hover {
  background: #2f6b45;
  box-shadow: 0 6px 18px rgba(30,61,47,0.25);
  transform: translateY(-2px);
}
.blog-all-btn i { font-size: 15px; }

.mini-btn {
  display: inline-flex; gap: 6px; align-items: center;
  text-decoration: none; color: var(--primary); font-weight: 700;
}
.mini-btn::after { content: "→"; margin-left: 6px; transition: .2s; }
.mini-btn:hover::after { transform: translateX(4px); }

/* =========================
   TRUST
   ========================= */
.trust-section {
  padding: 80px 0;
  background: var(--primary);
  border-top: 1px solid #edf2ed;
  border-bottom: 1px solid #edf2ed;
}

.trust-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-header {
  text-align: left;
  margin-bottom: 40px;
  border-left: 5px solid var(--accent);
  padding-left: 20px;
}

.trust-badge {
  display: inline-block;
  background: #eef7ee;
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-title {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.trust-desc {
  color: #fbfbfb;
  max-width: 600px;
}

.rating-card,
.map-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(30, 61, 47, 0.05);
}

.rating-card {
  padding: 40px;
}

.map-box {
  padding: 10px;
}

.stars {
  color: #fbbc05;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.review-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

/* =========================
   CONTACT
   ========================= */
.contact-section {
  padding: 100px 0 110px;
  background: #f4f7f4;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header h2 { color: var(--primary); }

/* Layout: 2 kolon */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: stretch;
}

/* Sol kolon: iletişim bilgileri */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #dce6df;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

.contact-info-item:not(.no-link):hover {
  border-color: #b8d0bc;
  box-shadow: 0 6px 20px rgba(30,61,47,0.09);
  transform: translateY(-2px);
}

.ci-icon {
  width: 46px; height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: linear-gradient(135deg,#e8f5ec,#d4ecdb);
  border: 1px solid #c2ddc9;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #1f5d3a;
}

.ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ci-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b8c76;
}

.ci-value {
  font-size: 16px;
  font-weight: 700;
  color: #122a1e;
  font-family: 'Sora', sans-serif;
}

.ci-note {
  font-size: 12.5px;
  color: #7a9280;
}

/* Aksiyon butonları */
.contact-action-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.contact-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.contact-btn.primary {
  background: #1e3d2f;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,61,47,0.22);
}
.contact-btn.primary:hover { background: #2f6b45; transform: translateY(-1px); }

.contact-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.28);
}
.contact-btn.whatsapp:hover { background: #1fb958; transform: translateY(-1px); }

.contact-btn.instagram {
  background: #fdf0ec;
  color: #c03910;
  border: 1px solid rgba(192,57,16,0.2);
}
.contact-btn.instagram:hover { background: #fce4db; transform: translateY(-1px); }

/* Sağ kolon: harita */
.contact-map-col { display: flex; flex-direction: column; }

.contact-map-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d5e2d8;
  box-shadow: 0 8px 28px rgba(30,61,47,0.08);
  flex: 1;
  min-height: 360px;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}

.map-direction-btn {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: #1e3d2f;
  color: #fff;
  font-size: 13.5px; font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
  z-index: 10;
}
.map-direction-btn:hover { background: #2f6b45; transform: translateX(-50%) translateY(-2px); }

/* Ref kartları yeniden - bakında .ref-card */
.ref-card {
  background: #fff;
  border: 1px solid #d9e3dd;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: left;
  min-height: 80px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ref-card:hover {
  transform: translateY(-3px);
  border-color: #aecbb6;
  box-shadow: 0 8px 22px rgba(19,50,35,0.10);
}

.ref-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #122a1e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}

.ref-card strong::before {
  content: "";
  width: 3px; height: 18px;
  flex: 0 0 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2f8b45, #7ed4a0);
}

.ref-card .ref-service {
  display: block;
  font-size: 11px;
  color: #6b8c76;
  font-weight: 500;
  padding-left: 11px;
  border-top: none;
  padding-top: 0;
}

/* Mobile contact adjustments */
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-map-wrap {
    min-height: 280px;
  }
}

.social-mini {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.social-mini a {
  color: var(--accent);
  font-size: 20px;
}

/* =========================
   FOOTER
   ========================= */
.main-footer {
  background: #1e3d2f;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #3a9b3a;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5e0;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a0aec0;
  font-size: 13px;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #services-area .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #services-area .services-extras {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* =========================
   YENİ BÖLÜMLER — MOBİL
   ========================= */
@media (max-width: 992px) {
  #services-area .services-grid { grid-template-columns: 1fr; gap: 20px; }
  #services-area .services-extras { grid-template-columns: 1fr 1fr; gap: 8px; }
  .advantages-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  #services-area .services-extras { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img-wrap { height: 200px; }
}


/* =========================
   REFERENCES RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ref-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 10px;
  }

  .ref-card {
    min-height: auto;
    padding: 14px 12px;
  }

  .ref-card strong {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .ref-card .ref-service {
    font-size: 11px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .references-shell {
    padding: 24px 14px 18px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .ref-page {
    grid-template-columns: 1fr;
    padding: 0 8px;
  }

  .ref-card {
    border-radius: 10px;
  }
}


/* =========================
   ABOUT STUDIO RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .about-studio {
    padding: 72px 0 68px;
  }

  .about-studio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-studio-head h2 {
    max-width: 100%;
  }

  .about-studio-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
  }

  .about-point {
    padding: 16px 14px;
  }

  .about-point strong {
    font-size: 15px;
    line-height: 1.35;
  }

  .about-point span {
    margin-left: 0;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 640px) {
  .about-studio-points {
    grid-template-columns: 1fr;
  }

  .about-point {
    padding: 16px;
  }

  .about-point strong {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .about-point i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}



/* ── REFERENCES SECTION ── */
#references-section {

  background: #1e3d2f;
  padding: 80px 0 72px;
  overflow: hidden;
}

/* Başlık */
.ref-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 72px;
  align-items: end;
  margin-bottom: 52px;
}
.ref-head-left .section-tag {
  background: rgba(58,155,58,.18);
  color: #7ed4a0;
  border: 1px solid rgba(126,212,160,.28);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ref-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.ref-title span { color: #7ed4a0; }
.ref-lead {
  color: rgba(255,255,255,.5);
  font-size: 14.5px;
  line-height: 1.8;
}

/* Stats — yatay bant */
/* Stats — 4 kart grid */
.ref-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  margin-bottom: 40px;
}
.ref-stat-card {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.ref-stat-card:last-child { border-right: none; }
.ref-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,.75);
  letter-spacing: -.03em;
  line-height: 1;
}
.ref-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

/* Slider */
.ref-slider-wrap {
  overflow: hidden;
}
.ref-slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Tek bant — stats ile aynı görünüm */
.ref-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(126,212,160,.14);
  border-radius: 14px;
  padding: 32px 40px;
  box-sizing: border-box;
  gap: 0;
}

/* Hücre */
.ref-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
  position: relative;
}
.ref-cell:first-child { padding-left: 0; }
.ref-cell:last-child  { padding-right: 0; }

.ref-cell-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.ref-cell-svc {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
}

/* Dikey ayraç */
.ref-cell-div {
  width: 1px;
  height: 40px;
  background: rgba(126,212,160,.18);
  flex: 0 0 1px;
}

/* Dots */
.ref-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.ref-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .3s, border-radius .3s;
}
.ref-dot.active {
  background: #7ed4a0;
  width: 24px;
  border-radius: 4px;
}
.ref-dot:hover:not(.active) { background: rgba(255,255,255,.4); }

/* Responsive */
@media (max-width: 992px) {
  .ref-head { grid-template-columns: 1fr; gap: 20px; }
  .ref-stat-card { padding: 0 20px; }
  .ref-stat-num { font-size: 19px; }
  .ref-slide { flex-wrap: wrap; padding: 24px; gap: 0; }
  .ref-cell { flex: 1 1 45%; padding: 16px 12px; }
  .ref-cell-div { display: none; }
}
@media (max-width: 600px) {
  .ref-stats { flex-wrap: wrap; padding: 16px 0; gap: 12px 0; }
  .ref-stat-card { flex: 1 1 45%; border-right: none; padding: 0 16px; }
  .ref-stat-num { font-size: 18px; }
  .ref-slide { padding: 20px 16px; }
  .ref-cell { flex: 1 1 100%; }
  #references-section { padding: 56px 0 52px; }
}

/* ── NEDEN GÜMÜŞ BOTANİK ── */
.why-section {
  padding: 96px 0 92px;
  background: #f7f9f8;
  position: relative;
}
.why-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8ddd0 20%, #c8ddd0 80%, transparent);
}
.why-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8ddd0 20%, #c8ddd0 80%, transparent);
}
.why-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}
/* Sol */
.why-left {
  position: sticky;
  top: 96px;
}
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2a7a40;
  margin-bottom: 18px;
}
.why-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px; height: 2px;
  background: #2a7a40;
  border-radius: 2px;
}
.why-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #0d2318;
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.why-title em {
  font-style: normal;
  color: #1e6b38;
}
.why-lead {
  font-size: 14px;
  color: #5c7a68;
  line-height: 1.8;
  margin-bottom: 28px;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0d2318;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  letter-spacing: .01em;
  transition: background .22s, transform .18s;
}
.why-cta i { font-size: 11px; opacity: .8; }
.why-cta:hover { background: #1e5c36; transform: translateY(-1px); }

/* Sağ: kart grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #dce8e0;
  border: 1px solid #dce8e0;
  border-radius: 16px;
  overflow: hidden;
}
.why-card {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .2s;
  position: relative;
}
.why-card:hover { background: #f7fdf9; }
.why-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e6f4ec, #d0eadb);
  display: grid; place-items: center;
  color: #1e5c36;
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid #c2dccb;
}
.why-card-top h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0d2318;
  letter-spacing: -.015em;
  line-height: 1.3;
  padding-top: 2px;
}
.why-card-top h3 small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8aaa96;
  margin-bottom: 3px;
  font-family: 'Manrope', sans-serif;
}
.why-desc {
  font-size: 13.5px;
  color: #5c7a68;
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.why-tag {
  font-size: 11px;
  font-weight: 700;
  color: #2a6a3c;
  background: #edf7f0;
  border: 1px solid #c8e4d2;
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-left { position: static; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 64px 0; }
}

/* ============================================================
   NEDEN GÜMÜŞ BOTANİK — Asymmetric Sticky Split  v3
   ============================================================ */

.why-section {
  background: #1e3d2f;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 30%, rgba(47,139,69,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 80%, rgba(58,155,58,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Split wrapper ── */
.why-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 600px;
  position: relative;
}

/* Dikey ayraç çizgisi */
.why-split::after {
  content: "";
  position: absolute;
  left: 380px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,.08) 8%,
    rgba(255,255,255,.08) 92%,
    transparent 100%
  );
}

/* ── Sol sticky kolon ── */
.why-sticky-col {
  padding: 80px 56px 80px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  position: sticky;
  top: 0;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7ed4a0;
  margin-bottom: 20px;
}
.why-eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: #7ed4a0;
  display: inline-block;
  flex-shrink: 0;
}

.why-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 48px;
}
.why-title em {
  font-style: normal;
  color: #7ed4a0;
}

/* Büyük rakamlar */
.why-big-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.why-big-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  gap: 12px;
}
.why-big-stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  flex-shrink: 0;
}
.why-big-stat span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  text-align: right;
}

/* CTA */
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0a1a10;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  letter-spacing: -.005em;
  align-self: flex-start;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.why-cta i { font-size: 11px; }
.why-cta:hover {
  background: #e6f4ec;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

/* ── Sağ scroll kolon ── */
.why-scroll-col {
  padding: 0 0 0 64px;
  display: flex;
  flex-direction: column;
}

.why-entry {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.why-entry--last { border-bottom: none; }

/* Hover: sol kenarda ince yeşil çizgi */
.why-entry::before {
  content: "";
  position: absolute;
  left: -64px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #3a9b3a, transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.why-entry:hover::before { opacity: 1; }

.why-entry-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.why-entry-num {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(126,212,160,.3);
  min-width: 24px;
}
.why-entry-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(47,139,69,.14);
  border: 1px solid rgba(47,139,69,.24);
  display: grid; place-items: center;
  color: #7ed4a0;
  font-size: 15px;
  transition: background .25s, border-color .25s;
  flex-shrink: 0;
}
.why-entry:hover .why-entry-icon {
  background: rgba(47,139,69,.25);
  border-color: rgba(126,212,160,.45);
}
.why-entry-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.2;
}
.why-entry > p {
  font-size: 14.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 540px;
}

/* Alt etiket satırı */
.why-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.why-entry-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 4px 10px;
  transition: color .2s, border-color .2s, background .2s;
}
.why-entry:hover .why-entry-tags span {
  color: rgba(126,212,160,.7);
  border-color: rgba(126,212,160,.2);
  background: rgba(47,139,69,.08);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why-split { grid-template-columns: 300px 1fr; }
  .why-split::after { left: 300px; }
  .why-sticky-col { padding-right: 40px; }
  .why-scroll-col { padding-left: 40px; }
  .why-entry::before { left: -40px; }
}
@media (max-width: 860px) {
  .why-split { grid-template-columns: 1fr; }
  .why-split::after { display: none; }
  .why-sticky-col {
    position: static;
    height: auto;
    padding: 64px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .why-big-stats { flex-direction: row; flex-wrap: wrap; border: none; }
  .why-big-stat { flex: 1 1 45%; flex-direction: column; align-items: flex-start; border: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 12px 0; }
  .why-big-stat span { text-align: left; }
  .why-scroll-col { padding: 0; }
  .why-entry { padding: 40px 0; }
  .why-entry::before { display: none; }
}
@media (max-width: 480px) {
  .why-title { font-size: 26px; }
  .why-entry-head h3 { font-size: 17px; }
}

/* why-split max-width ve padding hizalaması */
.why-split {
  max-width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   FOOTER RESPONSIVE FIX
   ========================= */

.footer-col,
.footer-col p,
.footer-col a,
.footer-bottom,
.designer-tag {
  min-width: 0;
}

.footer-col ul li a,
.designer-tag a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .about-col {
    grid-column: 1 / -1;
  }

  .footer-logo {
    max-width: 160px;
  }
}

@media (max-width: 640px) {
  .main-footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h4 {
    font-size: 17px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 18px;
  }

  .footer-social {
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 12px;
  }

  .designer-tag {
    width: 100%;
    line-height: 1.6;
  }

  .designer-tag a {
    display: inline-block;
  }
}

@media (max-width: 400px) {
  .main-footer {
    padding: 48px 0 22px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13.5px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .footer-bottom {
    font-size: 11.5px;
  }
}


/* =========================
   ÜRETİM GÜCÜMÜZ
   ========================= */
.production-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(58, 155, 58, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faf7 0%, #eef4ef 100%);
  position: relative;
  overflow: hidden;
}

.production-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 52px;
}

.production-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Sol görsel alanı */
.production-visual {
  position: sticky;
  top: 96px;
}

.production-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #d6e3d9;
  box-shadow: 0 20px 46px rgba(24, 44, 31, 0.10);
  background: #dfe8df;
  min-height: 520px;
}

.production-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.production-visual-badge {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid #d7e2d9;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(20, 40, 28, 0.06);
}

.production-visual-badge strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #183426;
  margin-bottom: 4px;
}

.production-visual-badge span {
  display: block;
  font-size: 14px;
  color: #5c6e61;
  line-height: 1.6;
}

/* Sağ içerik */
.production-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.production-intro {
  background: rgba(255,255,255,0.72);
  border: 1px solid #dbe6dd;
  border-radius: 22px;
  padding: 28px 28px;
  box-shadow: 0 12px 30px rgba(22, 38, 28, 0.05);
  backdrop-filter: blur(6px);
}

.production-intro h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  color: #163325;
  margin-bottom: 12px;
}

.production-intro p {
  font-size: 15px;
  color: #53665a;
  line-height: 1.8;
  margin: 0;
}

/* Kartlar */
.production-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.production-card {
  background: #ffffff;
  border: 1px solid #dbe5dd;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(18, 36, 24, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.production-card:hover {
  transform: translateY(-4px);
  border-color: #bdd2c2;
  box-shadow: 0 16px 34px rgba(18, 36, 24, 0.09);
}

.production-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f5ec, #d4ecdb);
  border: 1px solid #c7decd;
  color: #1f5d3a;
  font-size: 20px;
  margin-bottom: 16px;
}

.production-card-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  line-height: 1.35;
  color: #153124;
  margin-bottom: 8px;
}

.production-card-body p {
  font-size: 14px;
  color: #5b6d61;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .production-layout {
    grid-template-columns: 1fr;
  }

  .production-visual {
    position: static;
  }

  .production-image-wrap,
  .production-image-wrap img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .production-section {
    padding: 76px 0;
  }

  .production-head {
    margin-bottom: 36px;
  }

  .production-intro {
    padding: 22px 20px;
  }

  .production-cards {
    grid-template-columns: 1fr;
  }

  .production-image-wrap,
  .production-image-wrap img {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .production-image-wrap {
    border-radius: 18px;
  }

  .production-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .production-card-body h4 {
    font-size: 16px;
  }

  .production-intro h3 {
    font-size: 22px;
  }
}

/* =========================
   HERO MOBILE OVERFLOW FIX
   ========================= */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.08;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-title span {
    white-space: normal;
    display: inline;
  }

  .hero-subtext {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-cta-row {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   MOBILE MENU TOP ALIGN
   ========================= */

@media (max-width: 992px) {

  #nav-wrapper {
    padding-top: 15px;
    justify-content: flex-start;
    padding-bottom: 40px;
  }

  .menu {
    margin-top: 0;
    padding-top: 20px;
  }

}