/* ============================================================
   AMKO FRUIT d.o.o. — Gračanica
   Veleprodaja i maloprodaja voća i povrća · Transport
   Od 1984.
   ============================================================ */

:root {
  --green: #1a5c38;
  --green-dark: #124528;
  --green-deep: #0b2f1b;
  --green-soft: #e8f3ec;
  --lime: #8fd694;
  --red: #c81e2b;
  --red-dark: #a3121e;
  --red-soft: #fbe9ea;
  --ink: #142016;
  --gray: #5b6a60;
  --line: #e3ebe5;
  --light: #f5f8f5;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 47, 27, .10);
  --shadow-lg: 0 24px 60px rgba(11, 47, 27, .18);
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Top traka ---------- */
.topbar {
  background: var(--green-deep);
  color: #b7d3c0;
  font-size: .82rem;
  letter-spacing: .06em;
  border-bottom: 3px solid var(--red);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.topbar-left { text-transform: uppercase; letter-spacing: .18em; font-weight: 600; color: #dcefe1; }
.topbar-left em { color: var(--lime); font-style: normal; padding: 0 .35em; }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-right a { color: #dcefe1; display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-right a:hover { color: var(--white); }
.topbar-right svg { width: 14px; height: 14px; fill: var(--lime); }

/* ---------- Header ---------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(11, 47, 27, .10); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo svg { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s;
}
.nav a:hover, .nav a.active { color: var(--green); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-solid { background: var(--green); color: var(--white); }
.btn-solid:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26, 92, 56, .35); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200, 30, 43, .35); }
.btn-outline { background: transparent; color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); transform: translateY(-2px); }

.header .btn { padding: 11px 24px; font-size: .95rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 36, 20, .92) 0%, rgba(8, 36, 20, .66) 46%, rgba(8, 36, 20, .22) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; padding: 110px 0 130px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--lime);
  margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--red); }

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .015em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: #ff6b6b; font-style: italic; }
.hero p.lead {
  font-size: 1.16rem;
  color: #d5e6da;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 7%;
  bottom: 120px;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  border: 5px solid var(--red);
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge small { font-size: .78rem; letter-spacing: .3em; font-weight: 600; color: var(--red); }
.hero-badge b { font-size: 2.6rem; line-height: 1; font-weight: 700; }
.hero-badge span { font-size: .72rem; letter-spacing: .2em; color: var(--gray); font-weight: 600; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #a9c8b3;
}
.scroll-cue::after {
  content: "";
  width: 1.5px;
  height: 46px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Stats traka ---------- */
.stats {
  background: var(--green);
  color: var(--white);
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--red);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 0;
  gap: 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #c9e6d1;
  font-weight: 600;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .92rem;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 34s linear infinite; padding-left: 48px; }
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track i { font-style: normal; color: #ffd0d3; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sekcije ---------- */
.section { padding: 96px 0; }
.section.light { background: var(--light); }
.section.green { background: var(--green-deep); color: var(--white); }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .eyebrow { color: var(--green); margin-bottom: 16px; }
.section.green .section-head .eyebrow { color: var(--lime); }
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-head h2 .accent { color: var(--red); font-style: italic; }
.section.green .section-head h2 .accent { color: #ff6b6b; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.section.green .section-head p { color: #b7d3c0; }

/* ---------- Usluge grid (kartice sa slikom) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.6;
  display: flex;
  align-items: flex-end;
  transition: transform .35s, box-shadow .35s;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 36, 20, .94) 0%, rgba(8, 36, 20, .3) 55%, rgba(8, 36, 20, .05) 100%);
}
.cat-num {
  position: absolute;
  top: 20px; left: 24px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
}
.cat-body { position: relative; z-index: 2; padding: 26px 28px; color: var(--white); width: 100%; }
.cat-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  line-height: 1.1;
}
.cat-body p { font-size: .94rem; color: #c9dccf; margin-bottom: 14px; }
.cat-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s, color .25s;
}
.cat-card:hover .cat-link { gap: 14px; color: var(--white); }

/* ---------- Zašto mi ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0;
  background: var(--red);
  transition: height .35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-card:hover::before { height: 100%; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; fill: var(--green); }
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.why-card p { color: var(--gray); font-size: .95rem; }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .since {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  text-transform: uppercase;
  color: var(--green);
}
.split-img .since b { display: block; font-size: 2.2rem; line-height: 1; }
.split-img .since span { font-size: .78rem; letter-spacing: .22em; color: var(--gray); font-weight: 600; }
.split-content .eyebrow { color: var(--green); margin-bottom: 16px; }
.split-content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.split-content h2 .accent { color: var(--red); font-style: italic; }
.split-content p { color: var(--gray); margin-bottom: 16px; }
.checklist { margin: 22px 0 32px; display: grid; gap: 12px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}
.checklist svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; margin-top: 3px; }
.section.green .split-content .eyebrow { color: var(--lime); }
.section.green .split-content h2 .accent { color: #ff6b6b; }
.section.green .split-content p { color: #b7d3c0; }
.section.green .checklist { color: var(--white); }
.section.green .checklist svg { fill: var(--lime); }

/* ---------- Proizvodi (asortiman) ---------- */
.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.produce-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.produce-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.produce-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--light); }
.produce-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.produce-card:hover .produce-img img { transform: scale(1.06); }
.produce-body { padding: 20px 22px 24px; }
.produce-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.produce-body p { color: var(--gray); font-size: .92rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tags span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---------- Proces (koraci) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: background .3s, transform .3s;
}
.step:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); }
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--lime);
  opacity: .9;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.step p { color: #b7d3c0; font-size: .95rem; }

/* ---------- Flota / specifikacije ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: transform .3s, box-shadow .3s;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.fleet-body { padding: 28px 26px; }
.fleet-body .pill {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--red-soft);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.fleet-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.fleet-body p { color: var(--gray); font-size: .95rem; margin-bottom: 14px; }
.spec { display: grid; gap: 8px; }
.spec li { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.spec li b { color: var(--green); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Relacije / rute ---------- */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.route {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform .25s, box-shadow .25s;
}
.route:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.route .flag {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  letter-spacing: .05em;
}
.route b { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; }
.route span { color: var(--gray); font-size: .9rem; }

/* ---------- Timeline (o nama) ---------- */
.timeline { display: grid; gap: 0; position: relative; margin-top: 10px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 22px; padding: 18px 0; position: relative; }
.tl-item .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  color: var(--green);
  position: relative; z-index: 1;
}
.tl-item:first-child .dot { background: var(--red); border-color: var(--red); color: var(--white); }
.tl-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.tl-item p { color: var(--gray); font-size: .95rem; }

/* ---------- Testimonial / vrijednosti ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--green);
}
.value-card:nth-child(2) { border-top-color: var(--red); }
.value-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { color: var(--gray); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--green-deep) 0%, var(--green-dark) 55%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 30, 43, .45), transparent 70%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: -160px; bottom: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 214, 148, .25), transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-banner h2 .accent { color: #ff6b6b; font-style: italic; }
.cta-banner p { color: #b7d3c0; max-width: 580px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-banner .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-bg { animation: none; transform: scale(1); }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 36, 20, .92) 0%, rgba(8, 36, 20, .6) 60%, rgba(8, 36, 20, .3) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; padding: 90px 0 70px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  text-transform: uppercase;
  line-height: 1.04;
  max-width: 760px;
}
.page-hero h1 .accent { color: #ff6b6b; font-style: italic; }
.page-hero p { color: #d5e6da; max-width: 600px; margin-top: 16px; font-size: 1.08rem; }
.page-hero .crumbs {
  font-family: var(--font-head);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #a9c8b3;
  margin-bottom: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-hero .crumbs a:hover { color: var(--white); }
.page-hero .crumbs span { color: var(--red); }

/* ---------- Offer lista ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
}
.offer-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; }

/* ---------- Galerija ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 12, .94);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Aktuelna ponuda ---------- */
.ponuda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ponuda-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ponuda-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ponuda-slika { aspect-ratio: 4 / 3; overflow: hidden; background: var(--light); }
.ponuda-slika img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ponuda-card:hover .ponuda-slika img { transform: scale(1.06); }
.ponuda-slika-prazna { display: flex; align-items: center; justify-content: center; }
.ponuda-slika-prazna svg { width: 72px; height: 72px; fill: #c3d6c9; }
.ponuda-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.ponuda-badge {
  align-self: flex-start;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ponuda-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em; line-height: 1.15; margin-bottom: 8px; }
.ponuda-body p { color: var(--gray); font-size: .95rem; margin-bottom: 18px; }
.ponuda-dno { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.ponuda-cijena { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--red); text-transform: uppercase; letter-spacing: .04em; }
.ponuda-prazno { text-align: center; background: var(--light); border: 1px dashed #c3d6c9; border-radius: var(--radius); padding: 70px 30px; }
.ponuda-prazno h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; margin-bottom: 10px; }
.ponuda-prazno p { color: var(--gray); }
.ponuda-prazno p a { color: var(--green); font-weight: 600; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--red);
}
.contact-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { width: 22px; height: 22px; fill: var(--lime); flex-shrink: 0; margin-top: 3px; }
.contact-row b { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .88rem; color: #8fb59c; margin-bottom: 3px; }
.contact-row a:hover { color: var(--lime); }
.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.contact-social a:hover { background: var(--red); transform: translateY(-3px); }
.contact-social svg { width: 20px; height: 20px; fill: var(--white); }

.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink); margin-bottom: 7px; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(26, 92, 56, .12); }
.form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--gray); }
.form-status { font-weight: 600; display: none; padding: 14px 18px; border-radius: 10px; }
.form-status.ok { display: block; background: #e6f7ec; color: #1b7a3d; }
.form-status.err { display: block; background: #fdecec; color: #b3261e; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 72px; }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: #a9c8b3; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding: 72px 0 52px; }
.footer h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .16em; color: var(--white); margin-bottom: 20px; }
.footer .logo svg { height: 40px; margin-bottom: 18px; }
.footer-about p { font-size: .95rem; max-width: 300px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 17px; height: 17px; fill: var(--lime); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: .85rem; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--lime); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 34px rgba(37, 211, 102, .55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1260px) {
  .header .container { width: min(1280px, 94%); }
  .nav { gap: 22px; }
  .nav a { font-size: .95rem; letter-spacing: .1em; }
}
@media (max-width: 1100px) {
  .header .btn { display: none; }
}
@media (max-width: 1024px) {
  .cat-grid, .gallery-grid, .offer-grid, .routes, .values-grid, .ponuda-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps, .produce-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}
@media (max-width: 860px) {
  .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 40px 36px;
    transform: translateX(105%);
    transition: transform .35s ease;
    z-index: 150;
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: #dcefe1; font-size: 1.3rem; padding: 12px 0; }
  .nav a.active { color: var(--lime); }
  .header .btn { display: none; }
  .burger { display: flex; z-index: 160; }
  .burger.open span { background: #fff; }
  .stats .container { grid-template-columns: repeat(2, 1fr); padding: 36px 0; }
  .section { padding: 68px 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 80px 0 110px; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card img { min-height: 200px; max-height: 240px; }
}
@media (max-width: 560px) {
  .scroll-cue { display: none; }
  .cat-grid, .gallery-grid, .offer-grid, .why-grid, .steps, .produce-grid, .routes, .values-grid, .ponuda-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right { gap: 14px; font-size: .78rem; }
  .hero-actions .btn { width: 100%; }
  .logo svg { height: 36px; }
}
