/* ============================================
   DİKMEN TARIM — Premium Fide Sitesi
   ============================================ */

:root {
  --green-deep: #14301f;
  --green-dark: #1d4029;
  --green: #2e7d4f;
  --green-light: #4caf72;
  --green-pale: #e8f3ec;
  --gold: #c9a961;
  --gold-light: #e6d3a3;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1c2b21;
  --muted: #5f7066;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(20, 48, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 48, 31, 0.16);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }

.accent { color: var(--green); font-style: italic; }
.accent-gold { color: var(--gold); font-style: italic; }

img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46, 125, 79, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(46, 125, 79, 0.45); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b08f45 100%);
  color: var(--green-deep);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}
.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(20, 48, 31, 0.08);
  padding: 0.7rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  transition: color 0.35s ease;
}
.navbar.scrolled .logo { color: var(--green-deep); }
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20, 48, 31, 0.18);
}
.logo-mark img { width: 38px; height: 38px; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo-text em { color: var(--gold); font-style: italic; font-weight: 500; }

.brand-group { display: flex; align-items: center; gap: 1rem; }
.brand-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.35s ease;
}
.navbar.scrolled .brand-divider { background: rgba(20, 48, 31, 0.25); }
.logo-fide { gap: 0.5rem; }
.fide-logo-img {
  height: 36px;
  width: auto;
  background: var(--white);
  border-radius: 9px;
  padding: 5px 8px;
  box-shadow: 0 2px 10px rgba(20, 48, 31, 0.18);
}
.logo-text-sub { font-size: 1.05rem; }
.logo-text-sub em { color: #b5304c; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.navbar.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-deep) !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--green-deep) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--green-deep); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 169, 97, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, rgba(20, 48, 31, 0.92) 0%, rgba(29, 64, 41, 0.82) 55%, rgba(20, 48, 31, 0.88) 100%),
    url("assets/tesis-havadan.jpg") center 65% / cover no-repeat,
    var(--green-deep);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-leaves { position: absolute; inset: 0; pointer-events: none; }
.leaf {
  position: absolute;
  color: rgba(201, 169, 97, 0.12);
  animation: floatLeaf 9s ease-in-out infinite;
}
.leaf-1 { width: 130px; top: 12%; right: 8%; animation-delay: 0s; }
.leaf-2 { width: 80px; bottom: 25%; right: 22%; animation-delay: -3s; color: rgba(76,175,114,0.15); }
.leaf-3 { width: 60px; top: 30%; left: 5%; animation-delay: -6s; }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

.hero-inner { position: relative; z-index: 2; padding: 8rem 0 6rem; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.2rem;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.2rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: block; white-space: nowrap; }
.stat-num, .stat-plus {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-plus { margin-left: 2px; font-size: 1.3rem; }
.stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.18); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ===== Marquee ===== */
.marquee {
  background: var(--cream);
  overflow: hidden;
  padding: 1.2rem 0 2rem;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }
.section-dark {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: var(--white);
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.section-tag-light { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head p { color: var(--muted); margin-top: 0.9rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-main { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(46, 125, 79, 0.12);
}
.about-floating-card {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.about-floating-card strong { display: block; font-size: 0.95rem; }
.about-floating-card small { color: var(--muted); font-size: 0.78rem; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--muted); margin-bottom: 1rem; }
.about-content p strong { color: var(--ink); }
.about-list { list-style: none; margin: 1.5rem 0 2rem; }
.about-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.45rem 0;
  font-weight: 600;
  font-size: 0.97rem;
}
.check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--cream);
  border: 1px solid rgba(46, 125, 79, 0.1);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 169, 97, 0.5);
}
.product-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--tint, var(--green)) 12%, white);
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; font-weight: 600; }
.product-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.product-tags i {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.products-note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--muted);
  font-weight: 500;
}
.products-note a { color: var(--green); font-weight: 700; }

/* ===== Varieties ===== */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.variety-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(20, 48, 31, 0.08);
  border: 1px solid rgba(46, 125, 79, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.variety-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.variety-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}
.variety-card figcaption { padding: 1.2rem 1.4rem 1.4rem; }
.variety-card strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  margin-bottom: 0.3rem;
}
.variety-card span { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.9rem;
  box-shadow: 0 6px 24px rgba(20, 48, 31, 0.06);
  border: 1px solid rgba(46, 125, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(46, 125, 79, 0.1);
  line-height: 1;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 600; }
.process-step p { font-size: 0.88rem; color: var(--muted); }

/* ===== Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 97, 0.4);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 600; color: var(--gold-light); }
.why-card p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }

/* ===== Facility Band ===== */
.facility-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(20, 48, 31, 0.35) 0%, rgba(20, 48, 31, 0.05) 35%, rgba(20, 48, 31, 0.72) 100%),
    url("assets/tesis-havadan-2.jpg") center / cover no-repeat fixed;
}
.facility-caption {
  padding: 2.2rem 0;
  color: var(--white);
}
.facility-caption .section-tag {
  background: rgba(20, 48, 31, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.facility-caption p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  margin-top: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--gold) 0%, #d9bd7d 50%, var(--gold) 100%);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--green-deep); margin-bottom: 0.4rem; }
.cta-inner p { color: rgba(20, 48, 31, 0.75); font-weight: 500; }
.cta-banner .btn-gold {
  background: var(--green-deep);
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(20, 48, 31, 0.3);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--green-pale);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.contact-list strong { font-size: 0.95rem; }
.contact-list a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(46, 125, 79, 0.08);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.5rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(46, 125, 79, 0.18);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.12);
}
.form-note { margin-top: 1rem; font-size: 0.9rem; font-weight: 600; color: var(--green); text-align: center; }

/* ===== Footer ===== */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
}
.footer-brand p { margin-top: 1.2rem; font-size: 0.92rem; max-width: 280px; }
.logo-light { color: var(--white); }
.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.28rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-addr { font-size: 0.92rem; padding-top: 0.28rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  font-size: 0.85rem;
}

/* ===== Partners ===== */
.partners {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
}
.partners-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}
.partners-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.partner-logo:hover { opacity: 1; filter: none; }
.partner-logo img { height: 26px; width: auto; }

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1020px) {
  .product-grid, .process-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .variety-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 101;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 1.2rem; }
  .navbar.scrolled .nav-links a { color: var(--white) !important; }
  .hamburger { display: flex; }
  .hamburger.active span { background: var(--white); }
}

@media (max-width: 1020px) {
  /* iOS/mobil tarayıcılarda sabit arka plan sorun çıkarır */
  .facility-band { background-attachment: scroll, scroll; min-height: 320px; }
}

@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .logo-text-sub { display: none; }
  .brand-group { gap: 0.7rem; }
  .product-grid, .process-grid, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 1.2rem; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .about-floating-card { right: 0; }
}
