/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.inner-page {
  padding-top: 92px;
}
@media (max-width: 768px) {
  body.inner-page {
    padding-top: 80px;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container.narrow {
  max-width: 880px;
}

/* Display headings */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-weight: 500;
}

/* Section eyebrow */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  will-change: transform;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-darkest);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(66, 255, 0, 0.3);
}
.btn-outline {
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
}
.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--text-on-dark);
}
.btn-ghost {
  color: var(--text);
  padding: 10px 0;
}
.btn-ghost:hover {
  color: var(--primary-dark);
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.logo:hover { opacity: 0.8; }
.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions .connect-btn {
  padding: 10px 20px;
  font-size: 12px;
}
.lang-switch {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.lang-switch:hover { background: var(--primary-darkest); color: var(--text-on-dark); border-color: var(--primary-darkest); }

.menu-toggle {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  transition: all 0.3s;
}
.menu-toggle:hover { background: var(--accent); color: var(--primary-darkest); }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: currentColor;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad-x);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.75s var(--ease), opacity 0.5s var(--ease), visibility 0s 0.75s;
}
.fullscreen-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.75s var(--ease), opacity 0.4s var(--ease), visibility 0s 0s;
}

.menu-header {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.menu-header .logo img {
  height: 56px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.menu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-close {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-darkest);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-close:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.menu-actions .btn-accent { padding: 12px 22px; font-size: 13px; }
.menu-actions .lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: all 0.3s;
}
.menu-actions .lang-pill:hover {
  background: var(--accent);
  color: var(--primary-darkest);
}
.menu-actions .lang-pill svg { width: 14px; height: 14px; }

.menu-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 8vw, 140px);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.menu-nav-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: #fff;
  padding: 4px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s var(--ease);
  cursor: pointer;
}
.menu-nav-item:hover,
.menu-nav-item.active {
  color: var(--accent);
}
.menu-nav-item .submenu-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
}
.menu-nav-item:hover .submenu-arrow,
.menu-nav-item.active .submenu-arrow {
  opacity: 1;
  transform: translateX(0);
}
.menu-nav-item .submenu-arrow svg { width: 0.55em; height: 0.55em; }

/* Stagger animation when menu opens */
.fullscreen-menu.open .menu-nav-item {
  animation: menuItemIn 0.65s var(--ease) backwards;
}
.fullscreen-menu.open .menu-nav-item:nth-child(1) { animation-delay: 0.18s; }
.fullscreen-menu.open .menu-nav-item:nth-child(2) { animation-delay: 0.23s; }
.fullscreen-menu.open .menu-nav-item:nth-child(3) { animation-delay: 0.28s; }
.fullscreen-menu.open .menu-nav-item:nth-child(4) { animation-delay: 0.33s; }
.fullscreen-menu.open .menu-nav-item:nth-child(5) { animation-delay: 0.38s; }
.fullscreen-menu.open .menu-nav-item:nth-child(6) { animation-delay: 0.43s; }
.fullscreen-menu.open .menu-nav-item:nth-child(7) { animation-delay: 0.48s; }
.fullscreen-menu.open .menu-nav-item:nth-child(8) { animation-delay: 0.53s; }
@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Submenu (sağ kolon) */
.menu-submenu-container {
  position: relative;
  min-height: 360px;
  align-self: center;
}
.submenu {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
  pointer-events: none;
}
.submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0s;
  pointer-events: auto;
}
.submenu a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s, transform 0.3s var(--ease);
  display: inline-block;
  padding: 2px 0;
  width: fit-content;
}
.submenu a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(8px);
}

/* Submenüsü olmayan itemların hover'ında submenu container boş kalsın */
@media (max-width: 768px) {
  .menu-content { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .menu-submenu-container { display: none; }
}

.menu-footer {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 20px 0 40px;
  display: flex;
  justify-content: flex-end;
}
.menu-footer .social-row a {
  background: #fff;
  color: var(--primary-darkest);
  width: 44px; height: 44px;
}
.menu-footer .social-row a:hover {
  background: var(--accent);
}

/* Body kilidi menü açıkken */
body.menu-open { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide {
  height: 100%;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 43, 2, 0.2) 0%,
    rgba(1, 43, 2, 0.05) 40%,
    rgba(1, 43, 2, 0.85) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 84px);
  max-width: 900px;
  margin-bottom: 40px;
}
.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero-nav {
  display: flex;
  gap: 12px;
}
.hero-nav button {
  width: 52px; height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hero-nav button:hover {
  background: var(--accent);
  color: var(--primary-darkest);
  border-color: var(--accent);
}
.scroll-down {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   INTRO SECTION — 2 Büyük Kart
   ============================================ */
.intro {
  padding: clamp(80px, 12vw, 160px) 0;
}
.intro-header {
  max-width: 880px;
  margin-bottom: 80px;
}
.intro-header .eyebrow { margin-bottom: 24px; }
.intro-header h2 {
  font-size: clamp(32px, 4.5vw, 60px);
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.intro-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1.1 / 1;
  isolation: isolate;
  cursor: pointer;
}
.intro-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro-card:hover img {
  transform: scale(1.06);
}
.intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 43, 2, 0.15) 0%,
    rgba(1, 43, 2, 0.05) 30%,
    rgba(1, 43, 2, 0.85) 100%);
  z-index: 1;
}
.intro-card-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.intro-card-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.intro-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 14px;
}
.intro-card p {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.88;
  margin-bottom: 28px;
}
.intro-card .btn-accent {
  align-self: flex-start;
}

/* ============================================
   STATS — Rakamlarla Abdullah Zengin
   ============================================ */
.stats {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(28,71,52,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.stats-text .eyebrow { margin-bottom: 24px; }
.stats-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  max-width: 500px;
}
.stats-text p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 56px;
  font-size: 17px;
}
.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary-darkest);
}
.stat-item .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
  font-weight: 500;
}

.stats-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.stats-badge {
  position: absolute;
  top: 30px; right: -10px;
  background: var(--accent);
  color: var(--primary-darkest);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(66, 255, 0, 0.4);
}
.stats-badge .pct {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}
.stats-badge .lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.stats-arrow {
  position: absolute;
  bottom: 30px; right: 30px;
  width: 70px; height: 70px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-darkest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============================================
   PRODUCT CATALOG
   ============================================ */
.catalog {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.catalog-head .head-left { max-width: 640px; }
.catalog-head .eyebrow { margin-bottom: 24px; }
.catalog-head h2 {
  font-size: clamp(32px, 4.5vw, 60px);
}
.catalog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  border-color: var(--primary-darkest);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(28, 71, 52, 0.1);
  border-color: var(--border);
}
.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}
.product-body {
  padding: 22px;
}
.product-body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}
.product-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-dark);
}
.product-footer .arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-darkest);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.product-card:hover .product-footer .arrow {
  background: var(--accent);
  transform: translateX(4px);
}

/* ============================================
   BLOG SPOTLIGHT — Toprağın İzinde
   ============================================ */
.spotlight {
  padding: clamp(80px, 12vw, 140px) 0;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight-image {
  position: relative;
  aspect-ratio: 0.95 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.spotlight-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.spotlight-image .corner-leaf {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  background: var(--accent-soft);
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}
.spotlight-content .eyebrow { margin-bottom: 28px; }
.spotlight-content h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 24px;
}
.spotlight-content p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
}
.spotlight-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.spotlight-nav button {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.spotlight-nav button:hover {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  border-color: var(--primary-darkest);
}

/* ============================================
   SUSTAINABILITY BAND
   ============================================ */
.sustain {
  position: relative;
  padding: clamp(80px, 14vw, 180px) 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.sustain img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.sustain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 43, 2, 0.5) 0%,
    rgba(1, 43, 2, 0.85) 100%);
  z-index: -1;
}
.sustain-content {
  max-width: 780px;
}
.sustain .eyebrow { color: var(--accent); margin-bottom: 28px; }
.sustain p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 40px;
}
.sustain p em { font-style: italic; font-weight: 500; }

/* ============================================
   NEWS & BLOG PAGE
   ============================================ */
.news {
  padding: clamp(80px, 12vw, 140px) 0;
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.news-head h2 {
  font-size: clamp(32px, 4vw, 52px);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
.news-featured {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}
.news-featured .date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
}
.news-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.news-featured p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 360px;
}
.news-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); }
.news-card-image {
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-body {
  padding: 22px 24px 28px;
}
.news-card-body .date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.news-card-body h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

/* ============================================
   INFO CARDS — Toprağın Uzmanı + Gübreleme
   ============================================ */
.info {
  padding: 0 0 clamp(80px, 12vw, 140px);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 44px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.info-card-1 { background: var(--accent-soft); color: var(--primary-darkest); }
.info-card-2 {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  overflow: hidden;
}
.info-card-2 img.bg-illust {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 320px; height: 320px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.45;
  z-index: -1;
}
.info-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(1, 43, 2, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.info-card-2 .icon-circle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 18px;
}
.info-card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 420px;
}
.info-card .btn {
  align-self: flex-start;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 12vw, 140px);
}
.faq-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-icon {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-darkest);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--primary-dark); }
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  border-color: var(--primary-darkest);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 24px;
}
.faq-a p {
  color: var(--text-muted);
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo img {
  height: 64px;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 320px;
  margin-bottom: 28px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-row a:hover {
  background: var(--accent);
  color: var(--primary-darkest);
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col a {
  font-size: 14.5px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-col a:hover { opacity: 1; transform: translateX(4px); }
.footer-contact .phone {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 8px;
  display: inline-block;
}
.footer-stores {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}
.footer-stores a {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  transition: background 0.3s;
}
.footer-stores a:hover { background: rgba(255,255,255,0.16); }
.footer-stores svg { width: 22px; height: 22px; flex-shrink: 0; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  opacity: 0.6;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }

/* ============================================
   INNER PAGE EXTENSIONS
   ============================================ */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: clamp(100px, 14vw, 180px) 0 clamp(50px, 6vw, 80px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.page-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,43,2,0.4) 0%, rgba(1,43,2,0.85) 100%);
  z-index: -1;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 800px;
}
.breadcrumb {
  display: flex; gap: 12px; align-items: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.75; margin-bottom: 20px;
}
.breadcrumb a:hover { opacity: 1; color: var(--accent); }

/* Subnav row */
.career-subnav {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 92px;
  z-index: 10;
}
.subnav-row {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  overflow-x: auto;
  white-space: nowrap;
  padding: 18px 0;
}
.subnav-row::-webkit-scrollbar { display: none; }
.subnav-row a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.subnav-row a:hover,
.subnav-row a.active {
  color: var(--primary-darkest);
}

.career-intro {
  padding: clamp(70px, 9vw, 120px) 0 40px;
}
.career-intro-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}
.career-intro-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

/* Blocks */
.career-block {
  padding: clamp(70px, 9vw, 120px) 0;
}
.career-block h3.display {
  font-size: clamp(30px, 3.8vw, 52px);
  margin-bottom: 24px;
  line-height: 1.1;
}
.career-block p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.career-block p:last-child { margin-bottom: 0; }

/* Grid layouts */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,71,52,0.08); }
.value-icon {
  width: 56px; height: 56px; border-radius: 999px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--primary-darkest);
}
.value-card h4 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.value-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -36px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--primary-dark); margin-bottom: 8px; }
.timeline-content h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.timeline-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Quality Certificates */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,71,52,0.08); }
.cert-icon {
  width: 72px; height: 72px; border-radius: 999px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--primary-darkest);
}
.cert-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.cert-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,71,52,0.08); }
.service-img { aspect-ratio: 1.5/1; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 28px; }
.service-body h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.service-body p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,71,52,0.08); }
.blog-img { aspect-ratio: 1.4/1; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-body .date { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Career Asymmetric Layouts */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.vision-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 8px 24px 32px 8px;
  max-width: 540px;
}
.vision-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
}
.vision-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.vision-img:hover img { transform: scale(1.04); }
.vision-img-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
.vision-img-2 { grid-column: 2 / 3; grid-row: 1 / 3; aspect-ratio: 0.85 / 1; }

.mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
}
.mission-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.mission-card {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-card h3.display { color: #fff; }
.mission-card p {
  color: rgba(245, 242, 235, 0.82);
  font-size: 15.5px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.policy-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.92 / 1;
}
.policy-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.policy-lead {
  font-family: var(--font-display);
  font-size: 20px !important;
  font-style: italic;
  color: var(--primary-dark) !important;
  font-weight: 500;
  margin-bottom: 22px !important;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.academy-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.78 / 1;
}
.academy-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.partnership-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
}
.partnership-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.partnership-tag {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(6px);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary-darkest);
  text-align: center;
}

.staj-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.staj-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1.15 / 1;
}
.staj-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.career-hero {
  padding: 0;
}
.career-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  isolation: isolate;
}
.career-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.career-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,43,2,0.3) 0%, rgba(1,43,2,0.8) 100%);
  z-index: -1;
}
.career-hero-overlay {
  position: absolute;
  inset: 0;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
  color: #fff;
}
.career-hero-overlay h1 {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 780px;
}
.career-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
.contact-hero {
  padding-top: 140px;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  min-height: 440px;
}
.contact-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero-content h1 {
  font-size: clamp(40px, 6vw, 76px);
  color: var(--primary-darkest);
}
.contact-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.contact-tabs {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.tabs-row {
  display: flex;
  gap: 48px;
}
.tab {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 20px;
}
.tab.active, .tab:hover {
  color: var(--primary-darkest);
}
.tab.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px; right: 0;
  height: 2px;
  background: var(--primary-darkest);
}

.offices {
  padding-bottom: 60px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--primary-darkest);
  margin-bottom: 44px;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(28, 71, 52, 0.08);
}
.office-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-darkest);
}
.office-icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-darkest);
  display: flex; align-items: center; justify-content: center;
}
.office-address {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.office-contacts {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.office-contacts a {
  color: inherit;
  transition: color 0.3s;
}
.office-contacts a:hover { color: var(--primary-darkest); }

.offices-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}
.offices-nav button {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.offices-nav button.active,
.offices-nav button:hover {
  background: var(--primary-darkest);
  color: var(--text-on-dark);
  border-color: var(--primary-darkest);
}

/* Form block */
.contact-form-section {
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
}
.contact-form {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: transparent;
  transition: border-color 0.3s, background 0.3s;
}
.form-row textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 140px;
  padding: 18px 22px;
  line-height: 1.5;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.5);
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6354' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 52px;
  cursor: pointer;
}

.form-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 14px 0 4px;
}
.meta-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}
.check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-dark);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.check a {
  color: var(--primary-dark);
  border-bottom: 1px solid currentColor;
  transition: color 0.3s;
}
.check a:hover { color: var(--primary-darkest); }

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.form-submit .btn-accent {
  padding: 16px 28px;
  font-size: 13px;
}

.alert-message {
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  margin-bottom: 16px;
  font-weight: 500;
}
.alert-message.success {
  background: var(--accent-soft);
  color: var(--primary-darkest);
  border: 1px solid rgba(28, 71, 52, 0.15);
}
.alert-message.error {
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid rgba(197, 34, 31, 0.15);
}

/* Map */
.contact-map {
  padding: 0 var(--pad-x);
  margin: 0 auto clamp(80px, 12vw, 140px);
  max-width: var(--max-w);
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(0.95);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .cert-grid, .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .vision-grid, .mission-grid, .policy-grid, .academy-grid, .partnership-grid, .staj-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vision-img-1, .vision-img-2 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.4 / 1;
  }
  .vision-text { padding: 0; }
  .career-cta-row .btn-accent { width: 100%; justify-content: center; }
  .career-hero-card { min-height: 480px; }
  .mission-img { min-height: 320px; }
}
@media (max-width: 768px) {
  .intro-cards, .stats-grid, .spotlight-grid, .news-grid, .news-side, .info-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-grid { gap: 16px; }
  .hero-content { padding-bottom: 40px; }
  .hero-content h1 { margin-bottom: 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-head { flex-direction: column; align-items: flex-start; }
  .stats-numbers { gap: 28px 32px; }
  .header-actions .connect-btn { display: none; }
  .faq-grid { gap: 24px; }
  .faq-icon { width: 52px; height: 52px; font-size: 22px; }
  .values-grid, .cert-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 400px; }
  .contact-hero { padding-top: 100px; }
  .contact-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .contact-hero-image { min-height: 260px; }
  .offices-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .contact-map iframe { height: 360px; }
  .tabs-row { gap: 28px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .news-side { grid-template-columns: 1fr; }
  .intro-card { aspect-ratio: 0.95 / 1; }
  .intro-card-inner { padding: 24px; }
  .info-card { padding: 28px; min-height: 280px; }
  .career-hero-card { min-height: 420px; }
  .career-hero-overlay { padding: 32px 24px; gap: 24px; }
}
