/* RESET */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: #101315;
  color: #f5f1e8;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* CONTAINER */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO – Pretraživanje vozila */
.pv-hero {
  padding: 120px 16px 60px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 106, 0.12), transparent 36%),
    linear-gradient(180deg, #101315 0%, #13181b 100%);
  text-align: center;
}

/* Naziv tvrtke */
.pv-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #c6a76a;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Naslov */
.pv-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.08;
  margin-bottom: 16px;
  color: #e2d2b3;
}

/* Kratki uvod */
.pv-intro {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(245, 241, 232, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}

/* Gumbi u hero dijelu */
.pv-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Gumbi – primarni i sekundarni */
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary-btn {
  background: #c6a76a;
  color: #101315;
  border: 1px solid #c6a76a;
}

.primary-btn:hover {
  background: #e2d2b3;
  border-color: #e2d2b3;
  transform: translateY(-2px);
}

.secondary-btn {
  color: #f5f1e8;
  border: 1px solid rgba(198, 167, 106, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.secondary-btn:hover {
  border-color: rgba(226, 210, 179, 0.55);
  background: rgba(198, 167, 106, 0.08);
  transform: translateY(-2px);
}

/* GLAVNI BLOK – Pretraživanje vozila */
.pv-content {
  padding: 56px 0 88px;
}

.pv-card {
  border: 1px solid rgba(198, 167, 106, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  border-radius: 22px;
  padding: 34px 30px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeReveal 0.7s ease forwards;
}

/* Zakašnjeni efekti */
.pv-card:nth-child(2) { animation-delay: 0.10s; }
.pv-card:nth-child(3) { animation-delay: 0.18s; }
.pv-card:nth-child(4) { animation-delay: 0.26s; }

/* Naslovi */
.pv-card h2,
.pv-card h3 {
  margin-bottom: 14px;
  color: #e2d2b3;
}

.pv-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.pv-card h3 {
  font-size: 1.22rem;
  color: #f4ead7;
}

/* Paragraf */
.pv-card p {
  margin: 0 0 16px;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.82;
  font-size: 1rem;
}

/* Liste */
.pv-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

/* Stavke */
.pv-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.65;
}

/* Ovalni bullet */
.pv-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c6a76a;
}

/* CTA na kraju (pošalji upit preko maila) */
.pv-cta-footer {
  text-align: center;
  margin-top: 30px;
}

/* Gumb koji vodi na mail */
.primary-btn.mail-cta {
  width: auto;
  min-width: 250px;
}

/* Animacija */
@keyframes fadeReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .pv-hero {
    padding: 90px 16px 50px;
  }

  .pv-content {
    padding: 44px 0 72px;
  }

  .pv-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .pv-card p,
  .pv-card li {
    line-height: 1.74;
  }
}