/* =========================================================
   Kalyon Doğa Çay – tek sayfa kurumsal site
   ========================================================= */

:root {
  --green-900: #143a22;
  --green-800: #1b4a2c;
  --green-700: #225a37;
  --green-100: #e6efe8;
  --green-50:  #f2f7f3;
  --lime:      #c9d400;
  --lime-dark: #9aa300;
  --cream:     #faf8f2;
  --ink:       #1c1f1d;
  --ink-2:     #4b524d;
  --ink-3:     #7a827c;
  --line:      #e3e6e2;
  --white:     #ffffff;
  --wa:        #25d366;
  --wa-dark:   #1ebe5b;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 58, 34, .06), 0 2px 8px rgba(20, 58, 34, .06);
  --shadow-md: 0 8px 24px rgba(20, 58, 34, .10);
  --shadow-lg: 0 20px 50px rgba(20, 58, 34, .18);
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
em { font-style: italic; color: var(--green-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.section { padding-block: clamp(64px, 9vw, 120px); }
section[id] { scroll-margin-top: var(--header-h); }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-desc { margin-top: 14px; font-size: 1.05rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--green-800); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-900); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-outline:hover { background: var(--green-100); }
.btn-whatsapp { background: var(--wa); color: #0b3d20; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: var(--wa-dark); box-shadow: var(--shadow-md); }
.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 242, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(20, 58, 34, .06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-2);
  position: relative;
  padding-block: 6px;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after { transform: scaleX(1); }
.nav a:not(.btn):hover, .nav a:not(.btn).active { color: var(--green-900); }
.nav-cta { padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .22s, opacity .22s, visibility .22s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { padding: 12px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 110px) clamp(72px, 9vw, 120px);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(201, 212, 0, .18), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(27, 74, 44, .10), transparent 60%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-text .lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 30px;
  font-size: .9rem; font-weight: 500;
  color: var(--ink-2);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4a2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 212, 0, .16), transparent 65%);
}
.hero-card img { position: relative; width: 100%; height: auto; object-fit: contain; }
.hero-badge {
  position: absolute;
  bottom: -18px; left: -14px;
  display: flex; align-items: center; gap: 10px;
  background: var(--green-800);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--cream);
}
.hero-badge strong { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; color: var(--lime); }
.hero-badge span { font-size: .8rem; line-height: 1.2; font-weight: 500; opacity: .95; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-badge { left: 8px; bottom: -14px; }
  .hero-text { padding-top: 24px; }
}

/* ---------- Stats ---------- */
.stats { background: var(--green-900); color: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 40px;
}
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-inline: 12px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.stat:first-child { border-left: 0; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--lime); font-weight: 600; }
.stat-label { margin-top: 10px; font-size: .9rem; opacity: .85; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding-block: 36px; }
  .stat:nth-child(3) { border-left: 0; }
}

/* ---------- Hakkımızda ---------- */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-quote {
  position: absolute;
  right: -14px; bottom: 32px;
  background: var(--lime);
  color: var(--green-900);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.about-text p + p { margin-top: 16px; }
.about-text > p { color: var(--ink-2); font-size: 1.02rem; }
.about-text h2 { margin-bottom: 20px; }

.about-points { display: grid; gap: 14px; margin-top: 30px; }
.about-points li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.about-points .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--green-50);
  font-size: 1.25rem;
}
.about-points strong { display: block; color: var(--green-900); }
.about-points span:not(.icon) { font-size: .92rem; color: var(--ink-2); }

.timeline {
  margin-top: 36px;
  padding-left: 22px;
  border-left: 2px solid var(--green-100);
  display: grid; gap: 18px;
}
.timeline li { position: relative; font-size: .95rem; color: var(--ink-2); }
.timeline li::before {
  content: "";
  position: absolute;
  left: -29px; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--green-100);
}
.timeline span { display: block; font-weight: 700; color: var(--green-900); font-family: var(--font-head); font-size: 1.05rem; }

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .about-quote { right: 12px; }
}

/* ---------- Ürünler ---------- */
.products { background: var(--white); border-block: 1px solid var(--line); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img {
  height: 240px;
  display: grid; place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 80%, rgba(201, 212, 0, .18), transparent 65%), var(--green-50);
}
.product-img img { width: auto; height: auto; max-width: 100%; max-height: 192px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(20, 58, 34, .18)); }
.product-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product h3 { margin-bottom: 8px; }
.product-body p { font-size: .92rem; color: var(--ink-2); flex: 1; }
.product-meta { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); display: grid; gap: 4px; font-size: .85rem; color: var(--ink-3); }
.product-meta li::before { content: "•"; color: var(--lime-dark); margin-right: 8px; font-weight: 700; }

.packaging {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
}
.packaging-text { min-width: 0; }
.packaging h3 { font-size: 1.5rem; margin-bottom: 10px; }
.packaging-text > p { color: var(--ink-2); margin-bottom: 22px; }
.packaging-media { display: grid; place-items: center; }
.packaging-media img { max-height: 320px; width: auto; filter: drop-shadow(0 16px 28px rgba(20, 58, 34, .22)); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .93rem; min-width: 460px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { background: var(--green-800); color: var(--white); font-weight: 600; font-size: .85rem; letter-spacing: .03em; }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 600; color: var(--green-900); }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .packaging { grid-template-columns: 1fr; }
  .packaging-media { order: -1; }
  .packaging-media img { max-height: 220px; }
}
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Trendyol ---------- */
.trendyol {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px);
}
.trendyol h3 { font-size: 1.3rem; margin-bottom: 6px; }
.trendyol-text p { color: var(--ink-2); max-width: 560px; }
.btn-trendyol {
  background: #fff;
  border-color: #f27a1a;
  color: #f27a1a;
  padding: 12px 22px 12px 16px;
  gap: 14px;
}
.btn-trendyol:hover { background: #fff4ec; box-shadow: var(--shadow-md); }
.btn-trendyol img { height: 26px; width: auto; }
.btn-trendyol span { border-left: 1px solid #f9c9a4; padding-left: 14px; }
@media (max-width: 600px) {
  .btn-trendyol { width: 100%; }
}

/* ---------- Müşteri tipleri ---------- */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.customer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.customer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--lime);
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: 0;
  transition: opacity .2s;
}
.customer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.customer:hover::before { opacity: 1; }
.customer-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-50);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.customer h3 { margin-bottom: 10px; }
.customer > p { font-size: .95rem; color: var(--ink-2); }
.customer ul { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: .88rem; color: var(--ink-2); }
.customer ul li { display: flex; gap: 8px; align-items: flex-start; }
.customer ul li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4a2c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}
.customers-cta {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.customers-cta p { font-size: 1.05rem; font-weight: 500; }
.customers-cta .btn-primary { background: var(--lime); color: var(--green-900); }
.customers-cta .btn-primary:hover { background: #d9e41a; }

@media (max-width: 960px) { .customer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .customer-grid { grid-template-columns: 1fr; } }

/* ---------- Neden biz ---------- */
.why { background: var(--white); border-block: 1px solid var(--line); }
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.why-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.why-text h2 { margin-bottom: 30px; }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-num {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-800);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-100);
}
.why-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.why-item p { font-size: .95rem; color: var(--ink-2); }
@media (max-width: 860px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-media { max-width: 420px; }
}

/* ---------- Referanslar ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-grid li {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.logo-grid li:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-grid picture { position: absolute; inset: 12px; }
.logo-grid img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@media (max-width: 960px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.testimonials {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonials blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonials blockquote::before {
  content: "“";
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: var(--lime);
  opacity: .8;
}
.testimonials p { font-size: .98rem; color: var(--ink-2); flex: 1; padding-top: 16px; }
.testimonials footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; font-size: .85rem; }
.testimonials strong { color: var(--green-900); }
.testimonials footer span { color: var(--ink-3); }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- İletişim ---------- */
.contact { background: var(--green-900); color: var(--white); }
.contact .eyebrow { color: var(--lime); }
.contact h2 { color: var(--white); margin-bottom: 16px; }
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-info > p { opacity: .85; max-width: 480px; }
.contact-list { display: grid; gap: 18px; margin-block: 32px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  font-size: 1.15rem;
}
.contact-list div > span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; opacity: .65; margin-bottom: 2px; }
.contact-list a, .contact-list address, .contact-list p { font-weight: 500; font-size: 1.02rem; }
.contact-list a:hover { color: var(--lime); }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.contact-form label > span { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 74, 44, .12);
}
.contact-form .invalid { border-color: #c0392b; background: #fff7f6; }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b524d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.checkbox { flex-direction: row !important; align-items: flex-start; gap: 10px !important; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green-800); }
.checkbox span { font-weight: 400 !important; font-size: .85rem !important; color: var(--ink-2); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-actions .btn { flex: 1; min-width: 180px; }
.form-note { margin-top: 14px; font-size: .88rem; color: var(--ink-2); min-height: 1.4em; }
.form-note.ok { color: var(--green-700); font-weight: 500; }
.form-note.err { color: #c0392b; font-weight: 500; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: #0e2a18; color: rgba(255, 255, 255, .8); font-size: .92rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-block: 56px 36px;
}
.footer-brand img { height: 56px; width: auto; background: var(--white); padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer-brand p { max-width: 320px; opacity: .8; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 20px;
  font-size: .82rem;
  opacity: .7;
}
.footer-credit { font-weight: 600; }
.footer-credit:hover { color: var(--lime); }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-block: 44px 28px; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 14px 34px rgba(37, 211, 102, .55); }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float::after { animation: none; }
  .btn, .product, .customer { transition: none; }
}
