/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-deep: #0B1F07;
  --green-dark: #163A0E;
  --green-main: #1C4A0E;
  --green-mid: #2D6A1E;
  --green-accent: #3D8B2F;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-muted: #C5A355;
  --gold-pale: #E8D5A3;
  --cream: #FAF8F3;
  --cream-warm: #F5F1EA;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --border-light: #E8E4DD;
  --white: #FFFFFF;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== BASE ===== */
html {
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { transition: color 0.3s ease; }

img { max-width: 100%; height: auto; }

::selection {
  background: var(--gold-pale);
  color: var(--green-deep);
}

/* ===== NAVBAR ===== */
.navbar-main {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
  height: 90px;
  transition: box-shadow 0.3s ease, background 0.3s ease, height 0.3s ease;
  z-index: 1050;
  display: flex;
  align-items: center;
}
.navbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar-main.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-main .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-main .navbar-brand img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}
.navbar-nav {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar-main .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  position: relative;
  text-decoration: none;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-main .nav-link:hover {
  color: var(--green-main) !important;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn span:nth-child(1) { width: 20px; }
.mobile-menu-btn span:nth-child(2) { width: 16px; }
.mobile-menu-btn span:nth-child(3) { width: 12px; }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Side Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1070;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.mobile-menu-close:hover {
  background: var(--border-light);
}

/* Mobile Nav Links */
.mobile-menu-nav {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
.mobile-menu-nav li {
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: var(--green-main);
  background: var(--cream);
}
.mobile-menu-nav a.active {
  border-right: 3px solid var(--gold);
}

/* Mobile Lang */
.mobile-menu-lang {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
}
.mobile-lang-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--cream);
  transition: all 0.2s ease;
}
.mobile-lang-item:hover {
  color: var(--green-main);
  background: var(--cream-warm);
}
.mobile-lang-item.active {
  color: var(--white);
  background: var(--green-main);
}

/* Mobile Contact */
.mobile-menu-contact {
  padding: 16px 24px;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
}
.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu-contact a:hover {
  color: var(--green-main);
}
.mobile-menu-contact a i {
  font-size: 16px;
  color: var(--green-accent);
  width: 20px;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background-color: var(--green-deep);
  background-image: url('../images/banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 750px;
  padding-top: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,31,7,0.92) 0%, rgba(11,31,7,0.75) 45%, rgba(11,31,7,0.2) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  padding: 40px 0;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-label span:not(.hero-label-line) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
}
.hero-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: -0.3px;
}
@media (min-width: 768px) {
  .hero-title { font-size: 2.5rem; }
}
.hero-title span {
  color: var(--gold-light);
}
.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
  border-radius: 2px;
}
.hero-desc {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin-bottom: 24px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.hero-tag i {
  font-size: 13px;
  color: var(--gold-muted);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.25);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  padding: 6px;
  max-width: 920px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 18px 10px;
  border-radius: 12px;
  transition: background 0.2s ease;
}
.trust-item:hover {
  background: var(--cream);
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 10px;
  color: var(--green-main);
  font-size: 16px;
  transition: all 0.25s ease;
}
.trust-item:hover .trust-item-icon {
  background: var(--green-main);
  color: var(--white);
}
.trust-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .trust-bar { margin-top: -20px; }
  .trust-bar-inner {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 0;
  }
  .trust-item {
    flex: 0 0 33.33%;
    padding: 14px 6px;
  }
  .trust-item span { font-size: 10px; }
  .trust-item-icon { width: 30px; height: 30px; font-size: 14px; }
}

/* ===== HOME PRODUCTS ===== */
.hp-products-header {
  background: var(--green-deep);
  padding: 60px 0 80px;
}
.hp-products-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.hp-products-all:hover { color: var(--gold-light); }
.hp-products-body {
  margin-top: -50px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}
.hp-products-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.hp-products-scroll::-webkit-scrollbar { display: none; }

.hp-pcard {
  flex: 0 0 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.hp-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  color: inherit;
}
.hp-pcard-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: var(--white);
  height: 200px;
}
.hp-pcard-img img {
  max-height: 170px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-pcard:hover .hp-pcard-img img {
  transform: scale(1.05);
}
.hp-pcard-info {
  padding: 14px 16px;
  border-top: 1px solid var(--border-light);
  flex: 1;
}
.hp-pcard-info h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 2px;
  line-height: 1.35;
}
.hp-pcard-info span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.hp-pcard-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--green-main);
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}
.hp-pcard:hover .hp-pcard-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 767px) {
  .hp-products-header { padding: 40px 0 60px; }
  .hp-pcard { flex: 0 0 160px; }
  .hp-pcard-img { height: 160px; padding: 14px 10px; }
  .hp-pcard-img img { max-height: 130px; }
  .hp-pcard-info { padding: 10px 12px; }
  .hp-pcard-info h5 { font-size: 12px; }
}

/* ===== SECTION COMMON ===== */
.section-padding {
  padding: 100px 0;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}
.section-subtitle {
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== ABOUT / HAKKIMIZDA ===== */
.about-section {
  background: var(--white);
}
.about-header .section-title {
  font-weight: 600;
  letter-spacing: -0.3px;
}
.about-header-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 24px;
  border-radius: 2px;
}
.about-header .section-subtitle {
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
}
.about-block {
  background: var(--cream);
  border-radius: 12px;
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}
.about-block:hover {
  border-color: var(--gold-pale);
}
.about-block-icon {
  width: 48px;
  height: 48px;
  background: var(--green-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 20px;
}
.about-block h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.about-block p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  margin: 0;
}
/* Certification cards */
.cert-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: var(--cream);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-pale);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.cert-card .cert-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}
.cert-card h6 {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cert-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--cream);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.product-card-img {
  height: 220px;
  background: linear-gradient(135deg, #f0f5ed, #e8efe5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img .product-icon {
  font-size: 64px;
  opacity: 0.9;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-bestseller {
  background: var(--gold);
  color: var(--white);
}
.badge-new {
  background: var(--green-main);
  color: var(--white);
}
.product-card-body {
  padding: 24px;
}
.product-card-body h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-card-body .product-detail {
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-body .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.product-card-body .product-meta span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.btn-product-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-main);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.btn-product-detail:hover {
  color: var(--gold);
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--green-deep);
  position: relative;
}
.why-section .section-title {
  color: var(--white);
}
.why-section .section-subtitle {
  color: rgba(255,255,255,0.45);
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,163,85,0.2);
}
.why-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(196,163,85,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card .icon-box svg {
  color: var(--gold-muted);
}
.why-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--green-main);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== PROCESS V2 ===== */
.process-section-v2 {
  background: var(--cream);
  padding: 100px 0;
}
.process-v2-inner {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 60px 48px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .process-v2-inner { padding: 40px 24px; }
}
.process-v2-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0;
  border-radius: 2px;
}
.process-v2-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
}
.process-v2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.process-v2-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,163,85,0.25);
}
.process-v2-num {
  font-weight: 700;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 12px;
}
.process-v2-card:hover .process-v2-num {
  color: rgba(196,163,85,0.15);
}
.process-v2-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,163,85,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.process-v2-card h5 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.process-v2-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 16px;
}
.process-v2-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.2;
}
.process-v2-card:hover .process-v2-line {
  opacity: 0.4;
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--white);
}
.blog-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #e8efe5, #dde8d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card-body {
  padding: 24px;
}
.blog-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog-card-body h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-body .blog-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-main);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.blog-card-body .blog-link:hover {
  color: var(--gold);
}
.blog-card-body .blog-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--green-deep);
  padding: 80px 0;
}
.newsletter-section .section-title {
  color: var(--white);
}
.newsletter-section .section-subtitle {
  color: rgba(255,255,255,0.4);
}
.newsletter-form .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 20px;
  font-size: 14px;
  border-radius: 4px;
}
.newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.3);
}
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-muted);
  box-shadow: none;
  color: var(--white);
}
.newsletter-form .btn-subscribe {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form .btn-subscribe:hover {
  background: var(--gold-light);
}
.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-logo img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}
.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  margin-right: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold-muted);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer-contact-item svg {
  color: var(--gold-muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 48px;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom .disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-bottom-right {
  text-align: right;
}
.footer-credit {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--gold-muted);
}
.footer-badges span {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: var(--cream);
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 400;
}
.breadcrumb-custom li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-custom li a:hover {
  color: var(--gold);
}
.breadcrumb-custom li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--border-light);
}
.breadcrumb-custom li.active {
  color: var(--text-dark);
  font-weight: 500;
}
.breadcrumb-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.breadcrumb-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
}

/* ===== ABOUT PAGE ===== */

/* Misyon & Vizyon */
.mv-section {
  background: var(--white);
}
.mv-card {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.mv-card-accent {
  height: 4px;
  width: 100%;
}
.mv-card-mission .mv-card-accent {
  background: linear-gradient(90deg, var(--green-main), var(--green-mid));
}
.mv-card-vision .mv-card-accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.mv-card-inner {
  padding: 36px 32px;
}
.mv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.mv-card-mission .mv-card-icon {
  background: rgba(28,74,14,0.08);
  color: var(--green-main);
}
.mv-card-vision .mv-card-icon {
  background: rgba(184,134,11,0.08);
  color: var(--gold);
}
.mv-card-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.mv-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.mv-card p:last-child { margin-bottom: 0; }

/* Hikayemiz v2 */
.story-section-v2 {
  background: var(--white);
}
.story-visual {
  position: relative;
}
.story-visual-main {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-main) 100%);
  border-radius: 16px;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.story-visual-main img {
  width: 200px;
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}
.story-visual-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: 24px;
  left: 24px;
  border: 2px solid var(--gold-pale);
  border-radius: 16px;
  z-index: 0;
  opacity: 0.4;
}
.story-year-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}
.syb-year {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
.syb-text {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.3;
}
.story-mini-stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.story-mini-stat {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.3s;
}
.story-mini-stat:hover {
  border-color: var(--gold-pale);
}
.story-mini-stat strong {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-main);
  line-height: 1;
}
.story-mini-stat span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}
.story-v2-content .section-title {
  margin-bottom: 0;
}
.story-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 24px;
  border-radius: 2px;
}
.story-lead {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.story-v2-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.story-highlight {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}
.story-highlight-line {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  flex-shrink: 0;
}
.story-highlight p {
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* Değerler */
.values-section {
  background: var(--white);
}
.value-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: var(--gold-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.value-card-num {
  font-weight: 700;
  font-size: 2rem;
  color: var(--border-light);
  line-height: 1;
  min-width: 44px;
}
.value-card:hover .value-card-num {
  color: var(--gold-pale);
}
.value-card h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Sertifikalar */
.certs-section {
  padding: 0 0 100px;
  background: var(--white);
}
.certs-inner {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 60px 48px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .certs-inner { padding: 40px 24px; }
}
.certs-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 400px;
}
.cert-badge {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s;
}
.cert-badge:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,163,85,0.25);
}
.cert-badge-icon {
  font-size: 28px;
  color: var(--gold-muted);
  margin-bottom: 14px;
}
.cert-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.cert-badge span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Timeline */
.timeline-section {
  background: var(--cream);
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  z-index: 1;
}
.timeline-item:hover .timeline-marker {
  background: var(--gold);
}
.timeline-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-content h5 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* About CTA */
.about-cta-section {
  background: var(--white);
  padding: 0 0 100px;
}
.about-cta-inner {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 48px;
}
@media (max-width: 767px) {
  .about-cta-inner { padding: 32px 24px; }
}
.about-cta-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.about-cta-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0;
}
.btn-about-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--green-main);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-about-cta:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,74,14,0.2);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  position: relative;
  background: var(--white);
  padding: 80px 0 100px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .contact-hero { padding: 120px 0 60px; min-height: auto; }
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero-content {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .contact-hero-content { padding-right: 0; }
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .contact-hero-title { font-size: 3.2rem; }
}
.contact-hero-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
  border-radius: 2px;
}
.contact-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}

/* Centered contact layout */
.contact-hero--centered {
  text-align: center;
}
.contact-hero-content--centered {
  max-width: 720px;
  margin: 0 auto;
  padding-right: 0;
}
.contact-hero-content--centered .contact-hero-desc {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero-content--centered .contact-hero-divider {
  margin-left: auto;
  margin-right: auto;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.contact-cards .contact-info-row {
  flex-direction: column;
  text-align: center;
  padding: 28px 20px;
}
.contact-cards .contact-info-arrow {
  display: none;
}
.contact-hero-content--centered .contact-whatsapp-btn {
  max-width: 420px;
  margin: 0 auto;
}

/* Contact info rows */
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.contact-info-row:not(.contact-info-static):hover {
  border-color: var(--gold-pale);
  background: var(--cream);
  color: inherit;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-muted);
  font-size: 18px;
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.contact-info-arrow {
  color: var(--text-muted);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.contact-info-row:hover .contact-info-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* WhatsApp CTA */
.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #25D366;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.contact-whatsapp-btn:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.contact-whatsapp-btn > i:first-child {
  font-size: 28px;
  flex-shrink: 0;
}
.contact-whatsapp-btn .cw-title {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.contact-whatsapp-btn .cw-sub {
  display: block;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
  margin-top: 2px;
}


/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE FINE-TUNE ===== */
@media (max-width: 1023px) {
  .hero {
    height: 650px;
    background-position: 65% center;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(11,31,7,0.95) 0%, rgba(11,31,7,0.82) 50%, rgba(11,31,7,0.4) 100%);
  }
}
@media (max-width: 767px) {
  .hero {
    height: 600px;
    padding-top: 70px;
    background-position: 70% center;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(11,31,7,0.96) 0%, rgba(11,31,7,0.88) 60%, rgba(11,31,7,0.55) 100%);
  }
  .hero-title { font-size: 2.5rem; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .stat-num { font-size: 2.25rem; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 12px;
}
.lang-switch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
}
.lang-switch-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.lang-switch-item:hover {
  color: var(--text-dark);
}
.lang-switch-item.active {
  color: var(--green-main);
}
.lang-switch-item.active::after {
  transform: translateX(-50%) scaleX(1);
}
.lang-switch-sep {
  width: 1px;
  height: 12px;
  background: var(--border-light);
}
/* lang-switch mobile handled in responsive block below */

/* ===== PRODUCT DETAIL PAGE ===== */

/* Hero */
.pd-hero { background: var(--white); }
.pd-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 30px;
}
.pd-hero-img {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-hero-image:hover .pd-hero-img {
  transform: scale(1.03);
}
.pd-hero-info { padding-left: 10px; }
.pd-hero-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 6px;
}
.pd-hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pd-hero-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}
.pd-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Stat pills */
.pd-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.pd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  min-width: 100px;
  text-align: center;
}
.pd-stat strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-main);
  letter-spacing: 0.3px;
}
.pd-stat span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Trust badges */
.pd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}
.pd-trust-item i {
  color: var(--green-accent);
  font-size: 14px;
}

/* WhatsApp CTA */
.pd-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.pd-whatsapp-btn:hover {
  background: #1fb855;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* Benefits */
.pd-benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pd-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.pd-benefit-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-main), var(--green-accent));
  color: var(--white);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 18px;
}
.pd-benefit-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pd-benefit-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Ingredients Table */
.pd-ing-table {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}
.pd-ing-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pd-ing-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  transition: background 0.15s ease;
}
.pd-ing-row:last-of-type { border-bottom: none; }
.pd-ing-row:hover { background: var(--cream); }
.pd-ing-row--indent { padding-left: 44px; }
.pd-ing-row--indent .pd-ing-name { color: var(--text-muted); font-size: 13px; }
.pd-ing-name { flex: 1; font-weight: 500; color: var(--text-dark); }
.pd-ing-amount { width: 120px; text-align: right; font-weight: 700; color: var(--green-main); }
.pd-ing-brd { width: 90px; text-align: right; font-weight: 600; color: var(--text-muted); font-size: 13px; }
.pd-ing-shell {
  padding: 14px 24px;
  background: var(--cream);
  font-size: 13px;
  color: var(--text-body);
  border-top: 1px solid var(--border-light);
}
.pd-ing-shell strong { color: var(--text-dark); }

/* Allergen Box */
.pd-allergen-box {
  background: var(--cream);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
}
.pd-allergen-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-allergen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.pd-allergen-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.pd-allergen-item i { color: var(--green-accent); font-size: 14px; }
.pd-free-from { border-top: 1px solid var(--border-light); padding-top: 18px; }
.pd-free-from h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pd-free-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 8px;
}
.pd-free-item i { color: #c0392b; font-size: 13px; }

/* SEO Description */
.pd-seo { background: var(--white); }
.pd-seo-block {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.pd-seo-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.pd-seo-block p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 0;
}

/* Usage Cards */
.pd-usage-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  text-align: center;
}
.pd-usage-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
  color: var(--green-main);
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 16px;
}
.pd-usage-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pd-usage-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Warnings */
.pd-warnings { padding: 40px 0; }
.pd-warning-box {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: #fef9f0;
  border: 1px solid #f0e0c0;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
}
.pd-warning-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 10px;
  font-size: 18px;
}
.pd-warning-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pd-warning-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-warning-content ul li {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
.pd-warning-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Product responsive */
@media (max-width: 991px) {
  .pd-hero-name { font-size: 2rem; }
  .pd-hero-info { padding-left: 0; margin-top: 10px; }
  .pd-hero-img { max-height: 380px; }
  .pd-hero-image { padding: 30px 20px; }
}
@media (max-width: 767px) {
  .pd-hero-name { font-size: 1.75rem; }
  .pd-hero-img { max-height: 300px; }
  .pd-hero-image { padding: 24px 16px; border-radius: 14px; }
  .pd-stats { gap: 8px; }
  .pd-stat { min-width: 80px; padding: 10px 14px; }
  .pd-allergen-grid { grid-template-columns: 1fr; }
  .pd-warning-box { flex-direction: column; gap: 14px; }
}

/* ===== PRODUCTS LIST PAGE ===== */

.pl-grid { background: var(--white); }

.pl-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.pl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  color: inherit;
}

.pl-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 32px;
  background: #ffffff;
  min-height: 320px;
  border-bottom: 1px solid var(--border-light);
}
.pl-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}
.pl-card-img {
  max-height: 270px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pl-card:hover .pl-card-img {
  transform: scale(1.06) translateY(-4px);
}
.pl-card-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 32px;
  color: var(--text-muted);
}

.pl-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}
.pl-card-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pl-card-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pl-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.pl-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.pl-card-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.pl-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--green-main);
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.pl-card:hover .pl-card-arrow {
  background: var(--green-mid);
  box-shadow: 0 4px 12px rgba(28,74,14,0.25);
}
.pl-card-arrow i { font-size: 11px; }

/* Responsive - Product List */
@media (max-width: 767px) {
  .pl-card-image { min-height: 200px; padding: 20px 14px; }
  .pl-card-img { max-height: 160px; }
  .pl-card-body { padding: 16px; }
  .pl-card-name { font-size: 15px; }
  .pl-card-desc { font-size: 13px; margin-bottom: 14px; }
  .pl-card-arrow { padding: 7px 14px; font-size: 11px; }
}

/* ============================================
   CERTIFICATES PAGE
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
  background: var(--white);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  color: inherit;
}
.cert-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.1);
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--gold);
}
.cert-card:hover .cert-card-icon {
  background: var(--gold);
  color: var(--white);
}
.cert-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cert-card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.cert-card:hover .cert-card-link {
  gap: 10px;
}

/* ============================================
   MOBILE RESPONSIVE — TABLET (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
  /* Navbar */
  .navbar-main { height: 70px; }
  .navbar-main .navbar-brand img { height: 56px; width: 56px; }
  .lang-switch-item { padding: 4px 8px; font-size: 10px; }
}

/* ============================================
   MOBILE RESPONSIVE — PHONE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {

  /* --- Navbar --- */
  .navbar-main { height: 64px; }
  .navbar-main .navbar-brand img { height: 48px; width: 48px; }
  .lang-switch-item { padding: 3px 6px; font-size: 9px; }
  .lang-switch-sep { height: 10px; }

  /* --- Hero --- */
  .hero { height: auto; min-height: 600px; padding-top: 64px; }
  .hero-content { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 14px; }
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 11px; padding: 4px 8px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas a { text-align: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }

  /* --- Product listing cards --- */
  .pl-card-desc { display: none; }

  /* --- Certificates --- */
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cert-card { padding: 28px 16px 24px; }
  .cert-card-icon { width: 56px; height: 56px; font-size: 22px; margin-bottom: 14px; }
  .cert-card-title { font-size: 0.85rem; }

  /* --- Section spacing --- */
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 14px; }

  /* --- Breadcrumb --- */
  .breadcrumb-section { padding-top: 80px; padding-bottom: 30px; }
  .breadcrumb-title { font-size: 1.5rem; }
  .breadcrumb-desc { font-size: 13px; }

  /* --- About section (home) --- */
  .about-block { padding: 24px 20px; }
  .cert-card { padding: 20px 14px; }
  .cert-icon { width: 40px; height: 40px; font-size: 16px; }

  /* --- Why section --- */
  .why-card { padding: 24px 18px; }
  .icon-box { width: 44px; height: 44px; }

  /* --- Stats --- */
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 12px; }

  /* --- Process --- */
  .process-v2-inner { padding: 30px 20px; border-radius: 14px; }
  .process-v2-desc { font-size: 14px; }

  /* --- Story (About page) --- */
  .story-visual-main { padding: 32px 24px; min-height: auto; }
  .story-visual-main img { width: 140px; }
  .story-visual-accent { display: none; }
  .story-year-badge { right: 0; top: 16px; padding: 12px 14px; }
  .syb-year { font-size: 1.2rem; }
  .story-mini-stats { gap: 8px; }
  .story-mini-stat { padding: 12px 8px; }
  .story-mini-stat strong { font-size: 16px; }
  .story-mini-stat span { font-size: 10px; }
  .story-v2-content .section-title { font-size: 1.5rem; }
  .story-lead { font-size: 14px; }

  /* --- Mission/Vision (About page) --- */
  .mv-card-inner { padding: 24px 18px; }
  .mv-card-title { font-size: 1.2rem; }
  .mv-card p { font-size: 13px; }

  /* --- Values (About page) --- */
  .value-card { padding: 20px 16px; }
  .value-card-num { font-size: 2rem; }
  .value-card-content h4 { font-size: 15px; }
  .value-card-content p { font-size: 13px; }

  /* --- Certs (About page) --- */
  .certs-inner { padding: 30px 20px; border-radius: 14px; }
  .cert-badge { padding: 18px 12px; }
  .certs-desc { font-size: 13px; }

  /* --- About CTA --- */
  .about-cta-inner { padding: 30px 20px; border-radius: 14px; }
  .about-cta-title { font-size: 1.3rem; }
  .about-cta-desc { font-size: 13px; }

  /* --- Contact page --- */
  .contact-hero-title { font-size: 1.5rem; }
  .contact-hero-desc { font-size: 14px; }
  .contact-info-row { padding: 14px 16px; gap: 12px; }
  .contact-whatsapp-btn { width: 100%; }

  /* --- Product detail (pd-*) --- */
  .pd-hero-image { padding: 20px 14px; border-radius: 12px; }
  .pd-hero-img { max-height: 280px; }
  .pd-hero-info { padding-left: 0; margin-top: 16px; }
  .pd-hero-name { font-size: 1.5rem; }
  .pd-hero-subtitle { font-size: 12px; }
  .pd-hero-desc { font-size: 14px; margin-bottom: 20px; }
  .pd-hero-divider { margin: 14px 0; }
  .pd-stats { gap: 6px; }
  .pd-stat { min-width: 0; flex: 1; padding: 10px 8px; }
  .pd-stat strong { font-size: 13px; }
  .pd-stat span { font-size: 9px; }
  .pd-trust { gap: 10px; }
  .pd-trust-item { font-size: 11px; }
  .pd-whatsapp-btn { width: 100%; justify-content: center; }
  .pd-benefit-card { padding: 22px 18px; }
  .pd-benefit-icon { width: 46px; height: 46px; font-size: 20px; margin-bottom: 14px; }
  .pd-benefit-card h5 { font-size: 14px; }
  .pd-benefit-card p { font-size: 12px; }
  .pd-ing-header { padding: 12px 14px; font-size: 11px; }
  .pd-ing-row { padding: 10px 14px; font-size: 13px; }
  .pd-ing-row--indent { padding-left: 28px; }
  .pd-ing-shell { padding: 10px 14px; font-size: 12px; }
  .pd-allergen-box { padding: 20px; }
  .pd-allergen-item { padding: 8px 10px; font-size: 12px; }
  .pd-seo-block { padding-left: 18px; }
  .pd-seo-title { font-size: 18px; }
  .pd-seo-block p { font-size: 14px; }
  .pd-usage-card { padding: 22px 18px; }
  .pd-usage-icon { width: 42px; height: 42px; font-size: 18px; }
  .pd-usage-card h5 { font-size: 14px; }
  .pd-usage-card p { font-size: 12px; }
  .pd-warning-box { padding: 20px; flex-direction: column; gap: 12px; }
  .pd-warning-content h5 { font-size: 14px; }
  .pd-warning-content ul li { font-size: 12px; }

  /* --- Footer --- */
  .footer { padding: 36px 0 0; }
  .footer-logo { margin-bottom: 12px; }
  .footer-logo img { height: 50px; width: 50px; }
  .footer-desc { font-size: 13px; margin-bottom: 16px; }
  .footer-social { margin-bottom: 8px; }
  .footer-heading { font-size: 13px; margin-bottom: 12px; }
  .footer-links li { margin-bottom: 6px; }
  .footer-links a { font-size: 12px; }
  .footer-contact-item { font-size: 12px; margin-bottom: 8px; gap: 8px; }
  .footer-bottom { padding: 20px 0 24px; margin-top: 24px; text-align: center; flex-direction: column; align-items: center; }
  .footer-bottom-right { text-align: center; margin-top: 12px; }
  .footer-bottom p { font-size: 11px; margin-bottom: 6px; }
  .footer-bottom .disclaimer { font-size: 10px; margin-bottom: 0; }
  .footer-credit { margin-top: 12px; }
  .footer-badges { justify-content: center; margin-top: 14px; margin-bottom: 14px; }
  .footer-badges span { font-size: 9px; padding: 3px 8px; }

  /* --- WhatsApp FAB --- */
  .whatsapp-fab { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 22px; }
}

/* ============================================
   MOBILE RESPONSIVE — SMALL PHONE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

  /* --- Hero --- */
  .hero { height: auto; min-height: 550px; padding-top: 60px; }
  .hero-content { padding: 50px 0; }
  .hero-title { font-size: 1.65rem; }
  .hero-desc { font-size: 13px; }
  .hero-label span { font-size: 10px; }

  /* --- Sections --- */
  .section-padding { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }
  .section-label { font-size: 10px; letter-spacing: 2px; }

  /* --- Breadcrumb --- */
  .breadcrumb-section { padding-top: 74px; padding-bottom: 24px; }
  .breadcrumb-title { font-size: 1.3rem; }

  /* --- Product detail --- */
  .pd-hero-name { font-size: 1.3rem; }
  .pd-hero-img { max-height: 240px; }
  .pd-stats { flex-wrap: wrap; }
  .pd-stat { flex: 0 0 calc(50% - 4px); }
  .pd-trust { flex-wrap: wrap; gap: 8px; }

}
