/* ═══════════════════════════════════════════════════════
   AGRO FRESH — Design System
   Westfalia Fruit DNA: pill header, hero curve, floating items
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --green-dark:   #0F4C2C;
  --green-mid:    #1B5E20;
  --green-acc:    #00C853;
  --green-light:  #E8F5E9;
  --bg:           #F5F8F3;
  --white:        #ffffff;
  --text:         #1A1A1A;
  --muted:        #6B7280;
  --border:       #E5E7EB;
  --radius-pill:  999px;
  --radius-card:  20px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 24px 64px rgba(0,0,0,.16);
  --font:         'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

/* ── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--dark { background: var(--green-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section--alt  { background: var(--white); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-acc);
  color: var(--white);
}
.btn-primary:hover { background: #00a846; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,200,83,.35); }
.btn-outline {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   HEADER — Pill-shaped floating nav (Westfalia DNA)
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1500;
  transition: var(--transition);
}

/* Keep mobile menu hidden by default; shown only on small screens via media query */
.mobile-nav {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 10px 10px 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}
.header-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.lang-switcher {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: var(--transition);
}
.lang-switcher:hover { border-color: var(--green-acc); color: var(--green-dark); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--green-acc);
  color: var(--white);
  padding: 8px 16px;
  min-width: 105px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  margin-left: auto;
  transition: var(--transition);
}
.header-cta:hover { background: #00a846; transform: translateY(-1px); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .32);
  z-index: 1200;
  transition: var(--transition);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 32px rgba(37, 211, 102, .38);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════
   HERO — Dark green elliptical curve + floating tomatoes
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-curve {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    url('/assets/img/hero/slider-pc.jpg') center bottom / cover no-repeat;
  border: none;
  box-shadow: none;
  border-radius: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-content h1 { color: var(--white); }
.hero-content h1,
.hero-tagline {
  text-shadow: 0 2px 15px rgba(0,0,0,.7);
}
.hero-tagline {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-ctas .btn {
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ── Floating tomato items ───────────────────────────── */
.float-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: transform .1s linear;
}
.float-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Positions — mirroring Westfalia layout */
.float-1  { width: 180px; height: 180px; top: 10%;  left: -20px;  filter: blur(0px);   opacity: .95; }
.float-2  { width: 90px;  height: 90px;  top: 28%;  left: 4%;     filter: blur(2px);   opacity: .7; }
.float-3  { width: 60px;  height: 60px;  top: 15%;  left: 22%;    filter: blur(4px);   opacity: .5; }
.float-4  { width: 140px; height: 140px; top: 5%;   right: -10px; filter: blur(0px);   opacity: .9; }
.float-5  { width: 75px;  height: 75px;  top: 30%;  right: 5%;    filter: blur(2px);   opacity: .65; }
.float-6  { width: 50px;  height: 50px;  top: 48%;  right: 20%;   filter: blur(3px);   opacity: .5; }
.float-7  { width: 220px; height: 220px; bottom: -40px; left: 5%;  filter: blur(0px);  opacity: .9; }
.float-8  { width: 100px; height: 100px; bottom: 20px;  right: 3%; filter: blur(1px);  opacity: .75; }

/* ═══════════════════════════════════════════════════════
   QUOTE — CEO / Founder block (Westfalia birebir)
   ═══════════════════════════════════════════════════════ */
.quote-section {
  margin-top: 0;
  padding: 0 0 88px;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.quote-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--green-dark);
  font-style: italic;
}
.quote-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 32px auto 16px;
  border: 3px solid var(--green-acc);
}
.quote-name  { font-weight: 700; font-size: 1rem; color: var(--text); }
.quote-role  { font-size: .875rem; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════════════ */
.trust-section { padding: 80px 0; background: var(--bg); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.trust-card h3 { font-size: 1rem; color: var(--green-dark); }
.trust-card p  { font-size: .85rem; margin-top: 4px; }

.trust-export {
  margin-top: 56px;
  text-align: center;
}
.trust-export h3 { font-size: 1rem; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.flag-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.flag-item .flag { font-size: 2.5rem; }
.flag-item span  { font-size: .8rem; font-weight: 600; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════ */
.products-section { padding: 96px 0; background: var(--white); }
.product-category-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 94, 32, .12);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(232,245,233,.95), rgba(255,255,255,.96));
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-category-strip::-webkit-scrollbar { height: 0; }
.product-category-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(0, 200, 83, .15);
  color: var(--green-dark);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 4px 14px rgba(15, 76, 44, .06);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}
.product-category-pill:hover,
.product-category-pill.active {
  background: var(--green-acc);
  color: var(--white);
  border-color: var(--green-acc);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  height: 220px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 24px; }
.product-body h3 { color: var(--green-dark); font-size: 1.15rem; margin-bottom: 16px; }
.product-specs { list-style: none; }
.product-specs li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.product-specs li:last-child { border: none; }
.spec-label { color: var(--muted); }
.spec-val   { font-weight: 600; color: var(--text); }
.product-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green-acc);
  color: var(--green-acc);
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
}
.product-cta:hover { background: var(--green-acc); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   SUPPLY CHAIN TIMELINE
   ═══════════════════════════════════════════════════════ */
.supply-section { padding: 96px 0; }
.supply-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.supply-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 110px;
  position: relative;
}
.supply-step + .supply-step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-acc), rgba(0,200,83,.3));
}
.supply-icon-wrap {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--green-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.supply-step:hover .supply-icon-wrap { background: var(--green-acc); border-color: var(--green-acc); }
.supply-label {
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
  color: var(--green-dark);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════
   MARKETS MAP
   ═══════════════════════════════════════════════════════ */
.markets-section { padding: 96px 0; background: var(--green-dark); }
.markets-section h2, .markets-section .section-label { color: var(--white); }
.markets-map-wrap {
  margin-top: 48px;
  position: relative;
}
.world-map-svg {
  width: 100%;
  fill: rgba(255,255,255,.08);
  stroke: rgba(255,255,255,.15);
  stroke-width: .5;
}
.map-markers {
  position: absolute;
  inset: 0;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
}
.map-pin .pin-dot {
  width: 16px; height: 16px;
  background: var(--green-acc);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(0,200,83,.3);
  animation: pulse 2s infinite;
}
.map-pin .pin-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,200,83,.3); }
  50%       { box-shadow: 0 0 0 10px rgba(0,200,83,.1); }
}

.markets-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.country-chip .flag { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════
   GALLERY GRID
   ═══════════════════════════════════════════════════════ */
.gallery-section { padding: 96px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,76,44,.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .875rem;
}

/* ═══════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════ */
.why-section { padding: 96px 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border-left: 4px solid var(--green-acc);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3   { color: var(--green-dark); margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════ */
.cta-band {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,.03)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,.03)"/></svg>');
}
.cta-band h2   { color: var(--white); position: relative; }
.cta-band p    { color: rgba(255,255,255,.8); margin: 16px auto 36px; max-width: 500px; position: relative; }
.cta-band .btn { position: relative; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #0a2e1a;
  color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.footer-brand .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-acc);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; color: var(--green-acc); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (About / Contact inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--green-dark);
  padding: 180px 0 80px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 560px; margin-top: 16px; font-size: 1.1rem; }
.page-hero .float-item { opacity: .35; }
.page-hero--about { padding-bottom: 40px; }
.page-hero--about::after { display: none; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.story-section { padding: 96px 0; background: var(--bg); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-img img { width: 100%; height: 420px; object-fit: cover; }
.story-text h2 { color: var(--green-dark); margin-bottom: 20px; }
.story-text p  { margin-bottom: 16px; }

.mission-vision { padding: 96px 0; background: var(--white); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.mv-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-acc);
}
.mv-card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.mv-card h3   { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 16px; }

.stats-band { padding: 72px 0; background: var(--green-dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--green-acc);
  line-height: 1;
}
.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-section { padding: 96px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-title { color: var(--green-dark); margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-value { font-weight: 600; color: var(--text); margin-top: 2px; }

.map-embed {
  margin-top: 36px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.form-title { color: var(--green-dark); margin-bottom: 8px; }
.form-sub   { font-size: .9rem; margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: .95rem;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-acc);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,200,83,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green-acc);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: #00a846; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,200,83,.35); }

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: .9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.honeypot { display: none !important; }

/* ═══════════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════════ */
.admin-body { background: #f0f2f5; min-height: 100vh; font-family: var(--font); }
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
}
.admin-login-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.admin-login-card h1 { font-size: 1.6rem; color: var(--green-dark); margin-bottom: 8px; }
.admin-login-card p  { color: var(--muted); margin-bottom: 32px; }

.admin-header {
  background: var(--white);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-header .brand { font-weight: 800; color: var(--green-dark); font-size: 1.1rem; }
.admin-header a { color: var(--muted); font-size: .875rem; }

.admin-container { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.admin-title { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.admin-sub   { color: var(--muted); font-size: .875rem; margin-bottom: 32px; }

.messages-table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-collapse: collapse;
}
.messages-table th {
  background: var(--bg);
  padding: 14px 20px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.messages-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
  vertical-align: top;
}
.messages-table tr:last-child td { border-bottom: none; }
.messages-table tr.unread { background: #f0fbf5; }
.messages-table tr:hover { background: var(--bg); }
.badge-unread {
  display: inline-block;
  background: var(--green-acc);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pagination a:hover   { background: var(--green-acc); color: var(--white); }
.pagination span.curr { background: var(--green-acc); color: var(--white); }

/* ═══════════════════════════════════════════════════════
   MOBILE — RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Header */
  .header-nav, .lang-switcher { display: none; }
  .whatsapp-btn { display: none; }
  .burger { display: flex; }
  .header-cta { padding: 8px 16px; font-size: .85rem; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  /* Mobile Nav Overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1600;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    padding: 12px 24px;
  }
  .mobile-nav .mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  .mobile-lang {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }
  .mobile-lang a {
    font-size: 1rem;
    padding: 8px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    padding: 60px 0 0;
  }
  .hero-curve {
    height: 100%;
    background:
      url('/assets/img/hero/slider-mobil.jpg') center bottom / cover no-repeat;
    box-shadow: none;
    border-radius: 0;
  }
  .hero::after {
    display: none;
  }
  .hero-content {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    max-width: 11ch;
  }
  .hero-tagline {
    max-width: 24ch;
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-ctas {
    margin-top: 24px;
    gap: 12px;
  }
  .hero-ctas .btn {
    padding: 14px 22px;
    font-size: .95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  /* Floating items hide on mobile */
  .float-item {
    animation: none !important;
    transform: none !important;
  }
  .float-1, .float-2, .float-3, .float-4, .float-5, .float-6, .float-7, .float-8 {
    opacity: 1;
  }
  .float-2, .float-3, .float-5, .float-6, .float-8 { display: none; }
  .float-1 { width: 112px; height: 112px; top: 13%; left: -10px; }
  .float-4 { width: 92px; height: 92px; top: 12%; right: -10px; }
  .float-7 { width: 132px; height: 132px; bottom: 22vh; left: 10px; }

  .quote-section {
    margin-top: 0;
    padding: 40px 0 64px;
  }

  /* Grids */
  .story-grid  { grid-template-columns: 1fr; }
  .mv-grid     { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card    { padding: 16px 12px; }
  .why-card h3 { font-size: 0.9rem; margin-top: 12px; }
  .why-card p  { font-size: 0.75rem; margin-top: 8px; }
  .why-icon    { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
  }
  .product-card {
    border-radius: 12px;
  }
  .product-body {
    padding: 12px;
  }
  .product-body h3 {
    font-size: 0.95rem;
  }
  .product-specs li {
    font-size: 0.75rem;
    gap: 4px;
  }
  .product-cta {
    padding: 10px;
    font-size: 0.8rem;
    margin-top: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; }

  /* Supply */
  .supply-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .supply-step + .supply-step::before { display: none; }

  /* Contact form */
  .contact-form-wrap { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════
   EXTRA RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════ */

/* Icon Styling */
.trust-icon i, .why-card-icon i, .mv-card-icon i {
  font-size: 2.2rem;
  color: var(--green-acc);
}
.footer-contact-item i {
  width: 20px;
  text-align: center;
  color: var(--green-acc);
}

@media (max-width: 400px) {
  .logo-text { font-size: 1rem !important; }
  .header-logo { gap: 6px; }
  .header-cta { 
    min-width: auto; 
    padding: 8px 12px; 
    font-size: 0.8rem;
  }
  .header-inner { padding: 0 10px; }
}

@media (max-width: 360px) {
  .logo-text { display: none; }
}

/* Fix product card specs on small mobile */
@media (max-width: 480px) {
  .product-specs li {
    font-size: 0.8rem;
  }
  .spec-label { width: 80px; }
}

/* Ensure trust grid is centered on mobile */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-card {
    padding: 16px 12px;
  }
  .trust-card h3 {
    font-size: 0.85rem;
  }
  .trust-card p {
    font-size: 0.75rem;
  }
}

/* Admin panel responsive improvements */
@media (max-width: 768px) {
  .admin-header {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
  }
  .admin-header .brand { font-size: 1rem; }
  .admin-header div { flex-wrap: wrap; justify-content: center; }
  .admin-container { padding: 20px 12px; }
  .admin-title { font-size: 1.25rem; }
  .messages-table th, .messages-table td { padding: 12px 10px; font-size: 0.75rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
