/* ============================================
   NGBB Anasayfa — home.css
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #74c69d;
  --green-100: #d8f3dc;
  --cream:     #fefae0;
  --gold:      #d4a017;
  --gold-light:#f0c24b;
  --text-dark: #1c1c1c;
  --text-mid:  #4a4a4a;
  --text-soft: #7a7a7a;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --dur: .25s ease;
}

/* ---- Popup ---- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  z-index: 10000;
  animation: fadeIn .3s ease;
}
.popup-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  max-width: 420px; width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .35s ease;
  border-left: 5px solid var(--gold);
}
.popup-label {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.popup-box h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px; color: var(--green-900); margin-bottom: 12px;
}
.popup-box p { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin: 0; }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #e0e0e0; border: none; cursor: pointer;
  font-size: 16px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  transition: background var(--dur);
}
.popup-close:hover { background: #bbb; }

/* ---- Hero Slider ---- */
.hero {
  clear: both;
  position: relative;
  height: 62vh;
  min-height: 400px;
  max-height: 640px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-slides::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.05) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: absolute;
  top: 50%; left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  max-width: 640px;
  padding: 0 5%;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-content.fading {
  opacity: 0;
  -webkit-transform: translateY(calc(-50% + 14px));
  transform: translateY(calc(-50% + 14px));
}
.hero-badge {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9);
  margin-bottom: 24px; letter-spacing: .5px;
}
.hero-badge::before {
  content: '\f06c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 13px;
}
.hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(19px, 2.3vw, 29px);
  color: var(--white); line-height: 1.22;
  margin-bottom: 14px; margin-top: 0; font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p {
  font-size: 14px; color: rgba(255,255,255,.88);
  max-width: 460px; margin-bottom: 28px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.hero-actions { display: -webkit-flex; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-block;
  background: var(--gold); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform var(--dur), box-shadow var(--dur), background var(--dur);
  box-shadow: 0 4px 14px rgba(212,160,23,.4);
}
.btn-hero-primary:hover {
  background: #c49014; transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212,160,23,.5);
  color: #fff; text-decoration: none;
}
.btn-hero-secondary {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white); padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; text-decoration: none;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background var(--dur), border-color var(--dur);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white); color: #fff; text-decoration: none;
}
.hero-arrow {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.35);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--white); font-size: 20px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur);
  -webkit-user-select: none; user-select: none;
}
.hero-arrow:hover { background: rgba(255,255,255,.32); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex; display: flex;
  gap: 9px; z-index: 4;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--dur), width var(--dur);
}
.hero-dot.active { background: var(--white); width: 24px; border-radius: 4px; }
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 4;
  height: 3px; width: 0%;
  background: var(--gold-light);
  transition: width linear;
}
.hero-scroll {
  position: absolute; bottom: 56px; right: 5%; z-index: 4;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.55);
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero-scroll::after { content: '↓'; font-size: 16px; color: rgba(255,255,255,.6); }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ---- Top info bar: outline icons, no badge — .home-page only ---- */
body.home-page .top-info-bar .topList li i {
  background-color: transparent !important;
  color: #f0c24b !important;
  font-size: 15px;
}
body.home-page .top-info-bar .topList li i.ti-outline {
  color: transparent !important;
  -webkit-text-stroke: 1.4px #f0c24b;
  text-stroke: 1.4px #f0c24b;
}

/* ---- Quicklinks Rich (icon + subtitle + arrow) ---- */
.quicklinks-rich { background: #003244; }
.qlr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qlr-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 32px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--dur);
}
.qlr-item:last-child { border-right: none; }
.qlr-item:hover { background: rgba(255,255,255,.06); text-decoration: none; }
.qlr-icon { font-size: 24px; flex-shrink: 0; width: 26px; text-align: center; color: #b5d56a; }
.qlr-icon-hollow {
  color: transparent !important;
  -webkit-text-stroke: 1.3px #b5d56a;
  text-stroke: 1.3px #b5d56a;
}
.qlr-text { flex: 1; min-width: 0; }
.qlr-text h5 { margin: 0 0 2px; font-size: 15px; font-weight: 700; color: var(--white); }
.qlr-text span { font-size: 12px; color: rgba(255,255,255,.55); }
.qlr-arrow { font-size: 13px; color: rgba(255,255,255,.35); flex-shrink: 0; }

/* ---- Shortcut Cards (Bahçeyi Keşfet / Etkinlik Takvimi / vb.) ---- */
.shortcuts-section { background: #f8f9f7; padding: 44px 5%; }
.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.shortcut-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--dur), box-shadow var(--dur);
}
.shortcut-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.shortcut-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.shortcut-icon-cream { background: #f5ecd4; color: var(--green-900); }
.shortcut-icon-outline { background: transparent; border: 2px solid currentColor; }
.shortcut-card h4 { display: flex; align-items: center; gap: 4px; font-size: 14.5px; font-weight: 700; color: var(--green-900); margin: 0; line-height: 1.35; }
.shortcut-card p { font-size: 12px; color: var(--text-soft); margin: 0; line-height: 1.5; }
.shortcut-arrow { color: var(--green-500); font-weight: 700; font-size: 17px; }

/* ---- Section Commons ---- */
.ngbb-s { padding: 90px 5%; }
.ngbb-s-alt { padding: 90px 5%; background: var(--cream); }
.ngbb-s-dark { padding: 80px 5%; background: #003244; color: var(--white); }
/* index.php only — tighten vertical padding, felt too tall */
body.home-page .ngbb-s-dark { padding-top: 50px; padding-bottom: 50px; }
.features-bg { background: #fff; }

.s-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 12px;
}
.ngbb-s-dark .s-label { color: var(--green-300); }
.s-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; line-height: 1.25;
  color: var(--green-900); margin-bottom: 14px; margin-top: 0;
}
.ngbb-s-dark .s-title { color: var(--white); }
.s-sub {
  font-size: 15px; color: var(--text-soft); max-width: 580px; line-height: 1.7; margin: 0;
}
.ngbb-s-dark .s-sub { color: rgba(255,255,255,.65); }
.s-head { margin-bottom: 52px; }
.s-head.centered { text-align: center; }
.s-head.centered .s-sub { margin: 0 auto; }

.btn-ng-outline {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: center; align-items: center;
  gap: 8px;
  border: 2px solid var(--green-700); color: var(--green-700);
  padding: 11px 24px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background var(--dur), color var(--dur);
  margin-top: 36px;
}
.btn-ng-outline:hover { background: var(--green-700); color: var(--white); text-decoration: none; }

/* ---- Features Grid (used by en/index.php — old boxed style, keep intact) ---- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid #f0f0f0;
  transition: transform var(--dur), box-shadow var(--dur);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  gap: 12px;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.fi-yellow { background: #fff8e1; }
.fi-green  { background: #e8f5e9; }
.fi-blue   { background: #e3f2fd; }
.fi-purple { background: #f3e5f5; }
.fi-coral  { background: #fce4ec; }
.fi-teal   { background: #e0f2f1; }
.feat-card h4 { font-size: 15px; font-weight: 700; color: var(--green-900); line-height: 1.4; margin: 0; }
.feat-card p  { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; flex: 1; margin: 0; }
.feat-card .card-link {
  font-size: 13px; font-weight: 600; color: var(--green-500);
  display: inline-block;
  transition: color var(--dur); text-decoration: underline;
}
.feat-card .card-link:hover { color: var(--green-700); text-decoration: underline; }

/* ---- fi2-* accent colors: shared by .shortcut-icon-outline cards ---- */
.fi2-yellow { color: #d4a017; }
.fi2-green  { color: #6b9b37; }
.fi2-blue   { color: #5b9bd5; }
.fi2-purple { color: #9b7fd4; }
.fi2-coral  { color: #e0645a; }
.fi2-teal   { color: #4fb3bf; }

/* ---- Courses Grid ---- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card-new {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--white);
  transition: transform var(--dur), box-shadow var(--dur);
  border: 1px solid #eee;
}
.course-card-new:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.c-img {
  position: relative; overflow: hidden; height: 200px;
}
.c-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.course-card-new:hover .c-img img { transform: scale(1.06); }
.c-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--green-700); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.c-body { padding: 20px; }
.c-body h3 { font-size: 16px; font-weight: 700; color: var(--green-900); margin-bottom: 8px; margin-top: 0; line-height: 1.4; }
.c-body p  { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.c-meta {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 16px; font-size: 12.5px; color: var(--text-soft);
  padding-top: 14px; border-top: 1px solid #f0f0f0;
}
.c-meta span { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 4px; }

/* ---- Courses: flat editorial layout (Kew-style) ---- */
.courses-flat-section { background: #fbf9f1; }
.course-grid-flat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.course-flat-img { margin-bottom: 20px; }
.course-flat-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.course-flat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: var(--green-900);
  margin: 0 0 10px;
}
.course-flat-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin: 0 0 14px; }

/* ---- Wave dividers between sections ---- */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 50px; }

/* ---- News: editorial list layout ---- */
.news-list-editorial { display: flex; flex-direction: column; }
.news-row {
  display: flex; align-items: center; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid #e5e7eb;
  text-decoration: none; transition: background var(--dur);
}
.news-row:first-child { padding-top: 0; }
.news-row:last-child { border-bottom: none; padding-bottom: 0; }
.news-row:hover { background: rgba(64,145,108,.05); text-decoration: none; }
.news-row-img { width: 210px; height: 135px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.news-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-row:hover .news-row-img img { transform: scale(1.06); }
.news-row-body { flex: 1; }
.news-row-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--green-900); margin: 6px 0 8px; }
.news-row-body p { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; margin: 0 0 10px; }

/* ---- Stats ---- */
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ngbb-s-dark::before {
  content: '\f06c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: -40px; top: -40px;
  font-size: 260px; opacity: .04;
  pointer-events: none; user-select: none;
}
.ngbb-s-dark { position: relative; overflow: hidden; }
.stat-card-new {
  text-align: center; padding: 30px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  transition: background var(--dur), transform var(--dur);
}
.stat-card-new:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 10px;
}
.stat-lbl { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.65); line-height: 1.5; }
.sc-1 .stat-num { color: var(--gold-light); }
.sc-2 .stat-num { color: var(--green-300); }
.sc-3 .stat-num { color: #84bed6; }

/* ---- Recycle Strip ---- */
.recycle-strip {
  background: var(--green-100);
  padding: 48px 5%;
}
/* index.php only — tighten vertical padding, felt too tall */
body.home-page .recycle-strip { padding-top: 28px; padding-bottom: 28px; }
.recycle-inner {
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.recycle-title { flex: 1; min-width: 200px; }
.recycle-title h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px; color: var(--green-900); margin-bottom: 6px; margin-top: 0;
}
.recycle-title p { font-size: 13.5px; color: var(--text-soft); margin: 0; }
.recycle-items { display: -webkit-flex; display: flex; gap: 32px; flex-wrap: wrap; }
.recycle-item { text-align: center; }
.recycle-num { font-size: 36px; font-weight: 800; color: var(--green-700); line-height: 1; }
.recycle-unit { font-size: 11px; font-weight: 700; color: var(--green-500); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.recycle-desc { font-size: 12px; color: var(--text-soft); margin-top: 4px; }

/* ---- News Grid ---- */
.news-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card-new {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid #eee; background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur), box-shadow var(--dur);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
}
.news-card-new:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.n-img { height: 190px; overflow: hidden; }
.n-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-card-new:hover .n-img img { transform: scale(1.05); }
.n-body { padding: 20px; flex: 1; display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; }
.n-cat {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 10px;
}
.n-body h3 { font-size: 15px; font-weight: 700; color: var(--green-900); line-height: 1.45; margin-bottom: 10px; margin-top: 0; }
.n-body p  { font-size: 13px; color: var(--text-soft); line-height: 1.65; flex: 1; margin: 0; }
.n-link {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--green-500); margin-top: 16px;
  transition: color var(--dur); text-decoration: underline;
}
.n-link:hover { color: var(--green-700); text-decoration: underline; }

/* ---- Contact ---- */
.contact-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: start;
}
.contact-bg { background: #fff; }
/* index.php only — this section felt too tall, tighten its vertical padding */
body.home-page .contact-bg { padding-top: 50px; padding-bottom: 50px; }
.contact-status-stack { display: flex; flex-direction: column; gap: 20px; }
.contact-status-card {
  background: #f4f4f2;
  border-radius: 6px;
  padding: 26px 28px;
}
.contact-status-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  font-size: 19px; color: var(--text-dark); margin: 0 0 10px;
}
.contact-status-card p { font-size: 13.5px; color: var(--text-mid); margin: 0 0 6px; line-height: 1.6; }
.contact-status-card p a { color: var(--text-dark); text-decoration: underline; font-weight: 600; }
.contact-status-card p a:hover { color: var(--green-700); }
.contact-status-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-500); margin-bottom: 10px;
}
.contact-status-badge.is-closed { color: #c0392b; }
.contact-status-links { display: flex; gap: 16px; margin-top: 12px; }
.contact-status-links a { font-size: 13px; font-weight: 600; color: var(--text-dark); text-decoration: underline; }
.contact-status-links a:hover { color: var(--green-700); }
.contact-info-new h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 28px; color: var(--green-900); margin-bottom: 24px; margin-top: 0;
}
.ci-item {
  display: -webkit-flex; display: flex;
  gap: 14px; -webkit-align-items: flex-start; align-items: flex-start;
  margin-bottom: 20px;
}
.ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-gold  { background: #fff8e1; }
.ci-green { background: #e8f5e9; }
.ci-blue  { background: #e3f2fd; }
.ci-text { font-size: 14px; color: var(--text-mid); }
.ci-text strong { display: block; color: var(--green-900); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.ci-text a { color: var(--text-mid); text-decoration: none; }
.ci-text a:hover { color: var(--green-700); }
.contact-form-new { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 14px; }
.ff { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; gap: 6px; }
.ff label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.ff input,
.ff textarea {
  padding: 12px 16px; border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: 'Inter', 'Open Sans', sans-serif;
  transition: border-color var(--dur), box-shadow var(--dur);
  background: var(--white); outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.ff input:focus,
.ff textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(64,145,108,.12);
}
.ff textarea { min-height: 120px; resize: vertical; }
.btn-contact {
  background: var(--green-700); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: background var(--dur), transform var(--dur);
  -webkit-align-self: flex-start; align-self: flex-start;
}
.btn-contact:hover { background: var(--green-900); transform: translateY(-2px); }

/* ---- Back to Top ---- */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); color: var(--white);
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background var(--dur), transform var(--dur), opacity var(--dur);
  opacity: 0; pointer-events: none; z-index: 800;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--green-900); transform: translateY(-2px); color: #fff; text-decoration: none; }

/* ---- Spotlight ("Bu Ay Bahçede") ---- */
.spotlight-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,25,15,.88) 0%, rgba(10,25,15,.55) 45%, rgba(10,25,15,.25) 100%);
}
.spotlight-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.spotlight-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #74c69d;
  background: rgba(116,198,157,.15);
  border: 1px solid rgba(116,198,157,.4);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.spotlight-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}
.spotlight-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin: 0 0 30px;
  max-width: 520px;
}
.spotlight-btn {
  display: inline-block;
  background: #40916c;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.spotlight-btn:hover { background: #74c69d; color: #1b4332; text-decoration: none; transform: translateY(-2px); }
@media (max-width: 767px) {
  .spotlight-section { min-height: 420px; padding: 0 4%; }
  .spotlight-overlay { background: linear-gradient(180deg, rgba(10,25,15,.55) 0%, rgba(10,25,15,.88) 70%); }
}

/* ---- Animations ---- */
.text-link { color: var(--green-700); font-weight: 700; text-decoration: underline; font-size: 15px; }
.text-link:hover { color: var(--green-900); text-decoration: underline; }

/* ---- Info strip (opening hours / directions / volunteer) ---- */
.info-strip {
  background: #fff;
  padding: 56px 5% 64px;
}
.info-strip-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 230px;
  transition: transform var(--dur), box-shadow var(--dur);
}
.info-strip-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-strip-img {
  flex: 0 0 32%;
  overflow: hidden;
  border-top-right-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}
.info-strip-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s ease; }
.info-strip-item:hover .info-strip-img img { transform: scale(1.06); }
.info-strip-body { flex: 1; min-width: 0; padding: 20px 20px 22px; }
.info-strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1b4332;
  margin: 0 0 10px;
}
.info-strip-title i { color: #40916c; margin-right: 4px; }
.info-strip-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 14px;
}
.info-strip-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--green-700);
  text-decoration: underline;
}
.info-strip-link:hover { color: var(--green-900); text-decoration: underline; }
@media (max-width: 767px) {
  .info-strip-item { flex-direction: column; margin-bottom: 24px; }
  .info-strip-item:last-child { margin-bottom: 0; }
  .info-strip-img { flex-basis: auto; height: 160px; }
}

@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---- Bahçeyi Tanıyın (intro + stats + map photo) ---- */
.ngbb-intro-section { background: #fff; padding: 70px 5%; }
.ngbb-intro-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.ngbb-intro-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700; color: var(--green-900);
  margin: 8px 0 16px;
}
.ngbb-intro-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0 0 32px; max-width: 480px; }
.ngbb-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ngbb-intro-stat {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px;
}
.ngbb-intro-stat-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #f5ecd4; color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.ngbb-intro-stat-num { font-size: 19px; font-weight: 800; color: var(--green-900); line-height: 1.2; }
.ngbb-intro-stat-num span { font-size: 13px; font-weight: 700; }
.ngbb-intro-stat-lbl { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }
.ngbb-intro-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #eee;
}
.ngbb-intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .ngbb-intro-card { grid-template-columns: 1fr; gap: 36px; }
  .ngbb-intro-photo { order: -1; }
}
@media (max-width: 600px) {
  .ngbb-intro-section { padding: 50px 4%; }
  .ngbb-intro-stats { grid-template-columns: 1fr; }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .stats-grid-new { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero { height: 42vw; min-height: 260px; max-height: 380px; }
  .hero-content { padding: 0 4%; max-width: 90%; }
  .feat-grid    { grid-template-columns: repeat(2, 1fr); }
  .course-grid  { grid-template-columns: repeat(2, 1fr); }
  .news-grid-new { grid-template-columns: repeat(2, 1fr); }
  .contact-grid-new { grid-template-columns: 1fr; }
  .qlr-grid         { grid-template-columns: repeat(2, 1fr); }
  .course-grid-flat { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .shortcuts-grid   { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Map (Bahçemizi Haritada Görün) ---- */
.ngbb-map-section {
  position: relative;
  height: 380px;
}
.ngbb-map-frame { position: absolute; inset: 0; }
.ngbb-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.ngbb-map-card {
  position: absolute;
  top: 24px; left: 24px; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px 26px;
  max-width: 320px;
}
.ngbb-map-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 19px; font-weight: 700; color: var(--green-900); margin: 0 0 10px;
}
.ngbb-map-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0 0 18px; }
.ngbb-map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700); color: var(--white);
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background var(--dur), transform var(--dur);
}
.ngbb-map-btn:hover { background: var(--green-900); color: #fff; text-decoration: none; transform: translateY(-2px); }

@media (max-width: 600px) {
  .ngbb-s, .ngbb-s-alt, .ngbb-s-dark { padding: 60px 4%; }
  .recycle-strip { padding: 40px 4%; }
  .feat-grid    { grid-template-columns: 1fr; }
  .course-grid  { grid-template-columns: 1fr; }
  .news-grid-new { grid-template-columns: 1fr; }
  .course-grid-flat { grid-template-columns: 1fr; gap: 32px; }
  .news-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .news-row-img { width: 100%; height: 180px; }
  .stats-grid-new { grid-template-columns: repeat(2, 1fr); }
  .qlr-grid        { grid-template-columns: 1fr; }
  .qlr-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .qlr-item:last-child { border-bottom: none; }
  .shortcuts-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; }
  .hero-arrow { width: 38px; height: 38px; font-size: 16px; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  .contact-grid-new { grid-template-columns: 1fr; }
  .ngbb-map-section { height: auto; }
  .ngbb-map-frame { position: relative; height: 280px; }
  .ngbb-map-card { position: relative; top: auto; left: auto; margin: 16px; max-width: none; }
}
