:root{
  --g:#14532d;          /* ana yeşil */
  --g2:#166534;         /* ikinci yeşil */
  --mint:#f0fdf4;       /* açık zemin */
  --dark:#052e16;       /* footer */
  --text:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --line:rgba(2, 44, 16, .10);
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

a{color:inherit}
.small-muted{color:var(--muted)}
.section-title{
  font-weight:800;
  color:var(--g);
  letter-spacing:-.2px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(22,101,52,.22);
  background:rgba(34,197,94,.10);
  color:rgba(20,83,45,.92);
  font-weight:800;
  font-size:12px;
  letter-spacing:.3px;
}
.kdot{
  width:10px; height:10px; border-radius:999px;
  background: #22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.12);
}

.navbar{
  background:rgba(20,83,45,.92)!important;
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar .navbar-brand{font-weight:900; letter-spacing:.2px}
.navbar .nav-link{font-weight:700; opacity:.95}
.navbar .nav-link:hover{opacity:1}

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  color:#fff;
  background: linear-gradient(rgba(5,46,22,.65), rgba(5,46,22,.65)),
              url('assets/img/hero.jpg') center/cover no-repeat;
}
.hero .hero-card{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
}
.hero h1{font-weight:900; letter-spacing:-.7px}
.hero p{color:rgba(255,255,255,.9)}

.btn-cta{
  background:#fff;
  color:var(--g);
  border:none;
  font-weight:900;
  border-radius:14px;
  padding:12px 16px;
}
.btn-cta:hover{transform:translateY(-1px); box-shadow:var(--shadow)}
.btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  font-weight:800;
  border-radius:14px;
  padding:12px 16px;
}
.btn-ghost:hover{background:rgba(255,255,255,.10)}

.cardx{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cardx.soft{
  background: var(--mint);
  box-shadow:none;
}
.icon-pill{
  width:54px;height:54px;border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(22,101,52,.10);
  border:1px solid rgba(22,101,52,.18);
  color: var(--g);
  font-size:22px;
}

.badge-green{
  background:rgba(34,197,94,.14);
  color:rgba(20,83,45,.95);
  border:1px solid rgba(22,101,52,.18);
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
}

.hr-soft{border-top:1px solid rgba(2,44,16,.08)}

.feature-grid .cardx{height:100%}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
}

.contact-band{
  background: linear-gradient(120deg, rgba(20,83,45,.96), rgba(22,101,52,.96));
  color:#fff;
  border-radius: 22px;
  padding:24px;
}

.footer{
  background: var(--dark);
  color:#d1fae5;
}
.footer a{color:#d1fae5; text-decoration:none; opacity:.9}
.footer a:hover{opacity:1; text-decoration:underline}

.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:999;
}
.floating-call{
  position:fixed;
  right:18px;
  bottom:88px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ffffff;
  color:var(--g);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  border:1px solid rgba(2,44,16,.12);
  z-index:999;
}

.page-hero{
  padding:96px 0 34px;
  background: linear-gradient(120deg, rgba(20,83,45,.08), rgba(34,197,94,.06));
  border-bottom:1px solid var(--line);
}
.breadcrumbx{
  font-weight:700;
  color: rgba(20,83,45,.9);
  font-size:13px;
}
