/* ═══════════════════════════════════════════════════════════════
   Denkay Çevre — Light / Eco-Premium Theme
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════ CSS VARIABLES */
:root {
  --forest-deep:  #0A2914;
  --forest:       #166534;
  --forest-mid:   #1A5C35;
  --green:        #16A34A;
  --green-mid:    #22C55E;
  --green-light:  #4ADE80;
  --teal:         #0D9488;
  --teal-light:   #14B8A6;
  --white:        #FFFFFF;
  --off-white:    #F7FDF9;
  --green-50:     #F0FDF4;
  --green-100:    #DCFCE7;
  --green-200:    #BBF7D0;
  --text-dark:    #111827;
  --text:         #1F2937;
  --text-2:       #374151;
  --text-3:       #6B7280;
  --text-4:       #9CA3AF;
  --border:       #D1FAE5;
  --border-mid:   #A7F3D0;
  --g-hero:    linear-gradient(150deg, #0A2914 0%, #166534 60%, #0D9488 100%);
  --g-green:   linear-gradient(135deg, #16A34A 0%, #0D9488 100%);
  --g-card:    linear-gradient(145deg, rgba(22,163,74,0.05) 0%, rgba(13,148,136,0.02) 100%);
  --g-footer:  linear-gradient(180deg, #0A2914 0%, #071A0C 100%);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;
  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(22,101,52,0.08);
  --shadow-md: 0 8px 32px rgba(22,101,52,0.12);
  --shadow-lg: 0 20px 60px rgba(22,101,52,0.16);
}

/* ════════════════════ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-50); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

/* Selection */
::selection { background: var(--green); color: white; }

/* ════════════════════ HEADER */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--green-100);
  box-shadow: 0 2px 16px rgba(22,101,52,0.07);
  transition: box-shadow var(--t);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header.scrolled {
  box-shadow: 0 4px 24px rgba(22,101,52,0.12);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img { height: 110px; width: auto; }
.footer-logo-img {
  background: rgba(255,255,255,0.92);
  padding: 5px 12px;
  border-radius: 8px;
}
.logo-text-fallback {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
  background: var(--green-50);
}
.nav-btn {
  background: var(--g-green) !important;
  color: white !important;
  border-radius: var(--r-pill) !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
}
.nav-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: var(--g-green) !important;
}
.nav-btn.active {
  background: var(--g-green) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.hamburger:hover { background: var(--green-50); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--green-100);
  box-shadow: var(--shadow-md);
  z-index: 8999;
  gap: 4px;
}
.nav-links.open a {
  padding: 12px 16px;
  border-radius: var(--r-sm);
}

/* ════════════════════ CONTAINER & LAYOUT */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-green { background: var(--green-50); }
.section-forest { background: var(--forest-deep); color: white; }
.section-forest .section-title { color: white; }
.section-forest .section-sub { color: rgba(255,255,255,0.75); }

/* ════════════════════ WAVE DIVIDERS */
.wave-top, .wave-bottom { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }
.wave-top { margin-bottom: -2px; }
.wave-bottom { margin-top: -2px; }

/* ════════════════════ UTILITY */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--g-green);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.grad-text {
  background: var(--g-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
}

/* ════════════════════ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: -0.01em;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--g-green);
  color: white;
  box-shadow: 0 4px 16px rgba(22,163,74,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.30);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ════════════════════ SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.32s; }

/* ════════════════════ HERO */
.hero {
  position: relative;
  background: var(--g-hero);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(34,197,94,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,148,136,0.18) 0%, transparent 45%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { width: 13px; height: 13px; fill: var(--green-light); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero Right Cards */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  transition: var(--t);
}
.hero-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); }
.hero-card:first-child { grid-column: 1 / -1; padding: 24px; }
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--g-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: white; }
.hero-card h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.hero-card p { font-size: 0.80rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.hero-card-big-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ════════════════════ STATS BAR */
.stats-bar {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
}
.stats-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--green-100);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--g-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ════════════════════ SERVICE ROWS */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
/* Photo version: full-bleed cover photo */
.svc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.svc-visual:hover .svc-photo { transform: scale(1.05); }
/* Icon fallback version */
.svc-visual-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 40px;
}
.svc-big-icon {
  width: 96px; height: 96px;
  background: var(--g-green);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.svc-big-icon svg { width: 52px; height: 52px; fill: white; }
.svc-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: absolute;
  bottom: 12px; right: 20px;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
}
.svc-content .eyebrow { color: var(--green); }
.svc-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 600; color: var(--forest);
  margin-bottom: 20px;
}
.svc-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.svc-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text-2);
}
.svc-feature::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='%2316A34A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

/* ════════════════════ ECO PLEDGE */
.eco-pledge { background: var(--g-hero); position: relative; overflow: hidden; }
.eco-pledge::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(34,197,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(13,148,136,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.eco-pledge-inner { position: relative; z-index: 2; }
.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pledge-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}
.pledge-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.pledge-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--g-green);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.pledge-icon svg { width: 34px; height: 34px; fill: white; }
.pledge-card h3 { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 10px; }
.pledge-card p { font-size: 0.875rem; color: rgba(255,255,255,0.68); line-height: 1.65; }
.pledge-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--g-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

/* ════════════════════ WHY GRID */
.why-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--t);
}
.why-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--green-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; fill: var(--green); }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p { font-size: 0.855rem; color: var(--text-3); line-height: 1.65; }

/* ════════════════════ SERVICES FULL GRID */
.services-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 2.5rem; font-weight: 900;
  color: var(--green-100);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}
.svc-card-icon {
  width: 48px; height: 48px;
  background: var(--g-green);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-card-icon svg { width: 26px; height: 26px; fill: white; }
.svc-card-photo {
  width: calc(100% + 48px);
  margin: -28px -24px 20px;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  transition: transform 0.4s ease;
  display: block;
}
.svc-card:hover .svc-card-photo { transform: scale(1.03); }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.svc-card p { font-size: 0.83rem; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag-sm {
  padding: 3px 10px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 600; color: var(--forest);
}

/* ════════════════════ PAGE HERO */
.page-hero {
  background: var(--g-hero);
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(34,197,94,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.breadcrumb a:hover { color: var(--green-light); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.7;
}

/* ════════════════════ ABOUT GRID */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box {
  background: var(--g-green);
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-big-icon { text-align: center; z-index: 2; position: relative; }
.icon-ring {
  width: 120px; height: 120px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.1);
}
.icon-ring svg { width: 60px; height: 60px; fill: white; }
.about-big-icon p { color: white; font-size: 1.1rem; font-weight: 700; }
.about-float {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.about-float.tl { top: 24px; left: -24px; }
.about-float.br { bottom: 24px; right: -24px; }
.float-ic {
  width: 32px; height: 32px;
  background: var(--g-green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-ic svg { width: 16px; height: 16px; fill: white; }
.float-t strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.float-t span { font-size: 0.72rem; color: var(--text-3); }
.about-timeline {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--green-100);
  padding-left: 24px;
}
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -31px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--g-green);
  border: 2px solid white;
  box-shadow: 0 0 0 3px var(--green-100);
}
.tl-year { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 4px; }
.tl-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.tl-item p { font-size: 0.84rem; color: var(--text-3); line-height: 1.6; }

/* ════════════════════ POLICY GRID */
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.policy-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--t);
}
.policy-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); }
.policy-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.p-icon {
  width: 48px; height: 48px;
  background: var(--g-green);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.p-icon svg { width: 24px; height: 24px; fill: white; }
.policy-card-head h3 { font-size: 1.08rem; font-weight: 700; color: var(--text-dark); }
.policy-list { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.policy-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--text-2); line-height: 1.6;
}
.policy-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ════════════════════ MEVZUAT GRID */
.mevzuat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mevzuat-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--t);
}
.mevzuat-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.mevzuat-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dark);
}
.mevzuat-card h3 svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; }
.mevzuat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--green-50);
  font-size: 0.84rem; color: var(--text-2); line-height: 1.5;
}
.mevzuat-list li:last-child { border-bottom: none; }
.mevzuat-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ════════════════════ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.contact-info > p { color: var(--text-3); font-size: 0.93rem; line-height: 1.7; margin-bottom: 40px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.c-icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; fill: var(--green); }
.c-text h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 4px; }
.c-text p, .c-text a { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }
.c-text a:hover { color: var(--green); }
.hours-block {
  margin-top: 28px;
  background: var(--green-50);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  border: 1px solid var(--green-100);
}
.hours-block h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 12px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--green-100);
  font-size: 0.88rem; color: var(--text-2);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--forest); font-weight: 700; }
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--r-xl);
  padding: 48px 42px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-3); font-size: 0.88rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--t);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-4); }
.form-group select option { background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--forest);
  font-size: 0.88rem;
  margin-top: 14px;
  text-align: center;
}
.map-section { padding: 0 0 96px; }
.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--green-100);
  height: 400px;
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════ CTA SECTION */
.cta-section {
  background: var(--g-green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-section p { color: rgba(255,255,255,0.80); font-size: 1rem; margin-bottom: 36px; }

/* ════════════════════ PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  border-top: 2px dashed var(--green-200);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px; height: 64px;
  background: var(--g-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 16px rgba(22,163,74,0.30);
  position: relative;
}
.step-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-100);
}
.process-step h4 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--text-3); line-height: 1.6; }

/* ════════════════════ FOOTER */
footer {
  background: var(--g-footer);
  color: rgba(255,255,255,0.75);
}
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { margin-top: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-row.reverse .svc-visual { order: unset; }
  .svc-row.reverse .svc-content { order: unset; }
  .why-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .policy-grid { grid-template-columns: 1fr; }
  .mevzuat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links:not(.open) { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 24px 16px; }
  .stat-cell:nth-child(2) { border-right: none; }
  .why-grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 48px; min-height: auto; }
  .hero-left h1 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .pledge-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .services-grid-full { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .mevzuat-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
}
