/* ==========================================================================
   AUTO EXPERTIZA — Saša Raković, Kragujevac
   Stylesheet
   --------------------------------------------------------------------------
   Sadržaj:
     01. Tokeni (boje, tipografija, razmaci)
     02. Reset i osnove
     03. Pomoćne klase i layout
     04. Dugmad
     05. Header / navigacija
     06. Hero (naslovna)
     07. Traka prednosti
     08. Naslovi sekcija
     09. Kartice usluga
     10. Statistika
     11. Postupak (kako radimo)
     12. O nama
     13. Recenzije
     14. Kontakt sekcija i forma
     15. Footer
     16. Plutajuća dugmad (Viber / WhatsApp)
     17. Podstranice — zaglavlje
     18. Stranica usluge / detalj usluge
     19. Stranica kontakt
     20. FAQ akordeon
     21. Animacije
     22. Responzivnost
   ========================================================================== */

/* ==========================================================================
   01. TOKENI
   ========================================================================== */

:root {
  /* Brend — tamno plava */
  --navy-950: #050E20;
  --navy-900: #081733;
  --navy-850: #0B1E42;
  --navy-800: #0F2650;
  --navy-700: #163363;
  --navy-600: #1F4380;

  /* Brend — zlatna */
  --gold-600: #C08A22;
  --gold-500: #E2A93B;
  --gold-400: #EFC163;
  --gold-300: #F7D796;

  /* Neutralno */
  --cream: #F8F4EC;
  --cream-dark: #EFE8DA;
  --white: #FFFFFF;

  /* Tekst */
  --ink: #0B1E42;
  --ink-soft: #46536E;
  --muted: #6B7690;
  --on-dark: #FFFFFF;
  --on-dark-soft: #B9C4DA;
  --on-dark-muted: #8593B0;

  /* Linije i senke */
  --line: #E4DDCF;
  --line-dark: rgba(255, 255, 255, 0.10);
  --shadow-sm: 0 1px 2px rgba(8, 23, 51, 0.06), 0 2px 6px rgba(8, 23, 51, 0.05);
  --shadow-md: 0 4px 12px rgba(8, 23, 51, 0.07), 0 12px 28px rgba(8, 23, 51, 0.07);
  --shadow-lg: 0 8px 24px rgba(8, 23, 51, 0.09), 0 24px 56px rgba(8, 23, 51, 0.11);
  --shadow-gold: 0 8px 24px rgba(226, 169, 59, 0.28);

  /* Tipografija */
  --font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.25rem, 1.35rem + 3.6vw, 4rem);
  --fs-h1: clamp(2rem, 1.35rem + 2.6vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
  --fs-h4: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  --fs-body: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Razmaci */
  --space-section: clamp(4rem, 2.5rem + 6vw, 7.5rem);
  --container: 1200px;
  --container-narrow: 860px;
  --gutter: clamp(1.25rem, 0.75rem + 2vw, 2.5rem);

  /* Radijusi */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Ostalo */
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   02. RESET I OSNOVE
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

p { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { padding: 0; list-style: none; }

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ==========================================================================
   03. POMOĆNE KLASE I LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-900); color: var(--on-dark-soft); }
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--on-dark); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.eyebrow--plain::before { display: none; }
.eyebrow--on-dark { color: var(--gold-400); }

.lead {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.65;
}

.text-gold { color: var(--gold-500); }
.text-center { text-align: center; }

/* ==========================================================================
   04. DUGMAD
   ========================================================================== */

.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  --btn-bd: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9375rem 1.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--r-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn:active { transform: translateY(0); }

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 0.2s var(--ease);
}

.btn:hover svg { transform: translateX(4px); }

.btn--primary { --btn-bg: var(--gold-500); --btn-fg: var(--navy-900); }
.btn--primary:hover { --btn-bg: var(--gold-400); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, 0.28);
}
.btn--outline-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-bd: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  --btn-bd: rgba(11, 30, 66, 0.2);
}
.btn--outline-dark:hover {
  --btn-bg: rgba(11, 30, 66, 0.04);
  --btn-bd: var(--navy-900);
  box-shadow: none;
}

.btn--navy { --btn-bg: var(--navy-800); --btn-fg: var(--white); }
.btn--navy:hover { --btn-bg: var(--navy-700); box-shadow: var(--shadow-md); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.0625rem 2rem; font-size: 1rem; }

/* Tekstualni link sa strelicom */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}

.link-arrow svg { width: 15px; height: 15px; flex: none; color: var(--gold-500); }
.link-arrow:hover { gap: 0.875rem; color: var(--gold-600); }

/* ==========================================================================
   05. HEADER / NAVIGACIJA
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(8, 23, 51, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 8px 30px rgba(5, 14, 32, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
  margin-right: auto;
}

/* Zlatna verzija znaka — koristi se i u zaglavlju i u podnožju,
   oba su na tamnoj podlozi. Za svetlu podlogu postoji logo-mark.png. */
.logo__mark {
  display: block;
  width: 54px;
  height: 35px;
  flex: none;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.logo__sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 5px;
}

/* Glavna navigacija */
.nav { display: flex; align-items: center; }

/* Dugmad vidljiva samo u mobilnom meniju */
.nav__mobile-actions { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  color: var(--on-dark-soft);
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  right: 0.875rem;
  bottom: 0.125rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link[aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Akcije u headeru */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.125rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.header__phone svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; }
.header__phone:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.header__cta { padding: 0.75rem 1.375rem; font-size: var(--fs-xs); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
  flex: none;
}

.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background-color 0.2s var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   06. HERO
   ========================================================================== */

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--on-dark-soft);
  overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6rem) clamp(6rem, 4rem + 8vw, 9rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(31, 67, 128, 0.55) 0%, transparent 62%);
  border-radius: 50%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.14) 0%, transparent 65%);
  border-radius: 50%;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}

.hero__eyebrow { margin-bottom: 1.25rem; }

.hero__title {
  font-size: var(--fs-hero);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__text {
  max-width: 46ch;
  color: var(--on-dark-soft);
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Nešto uža dugmad, da oba stanu u jedan red kao na dizajnu */
.hero__actions .btn {
  padding-inline: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* Društveni dokaz */
.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
  flex: none;
}

.avatars__item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-900);
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  overflow: hidden;
}

.avatars__item:first-child { margin-left: 0; }
.avatars__item:nth-child(2) { background: linear-gradient(140deg, #cfd8e8, #8fa2c4); }
.avatars__item:nth-child(3) { background: linear-gradient(140deg, #f2d6b6, #d3a273); }
.avatars__item:nth-child(4) { background: linear-gradient(140deg, #c3cfe2, #94a7c9); }

.social-proof__badge {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(226, 169, 59, 0.13);
  border: 1px solid rgba(226, 169, 59, 0.3);
  color: var(--gold-500);
}

.social-proof__badge svg { width: 23px; height: 23px; }

.social-proof__sub {
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
  line-height: 1.4;
  margin-top: 2px;
}

.social-proof__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 3px;
}

.social-proof__stars svg { width: 15px; height: 15px; color: var(--gold-500); }

.social-proof__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Vizual */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__visual img,
.hero__visual svg {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(5, 14, 32, 0.55));
}

/* Skrol indikator */
/* Podignut iznad kartice sa prednostima koja ulazi u hero negativnom marginom */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(5.5rem, 4rem + 4vw, 7.5rem);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.scroll-hint__mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-pill);
  position: relative;
}

.scroll-hint__mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scroll-dot 1.9s var(--ease) infinite;
}

@keyframes scroll-dot {
  0%, 20% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(11px); opacity: 0; }
  71%, 100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   07. TRAKA PREDNOSTI
   ========================================================================== */

.benefits {
  position: relative;
  z-index: 3;
  margin-top: clamp(-5rem, -4rem - 2vw, -3.5rem);
}

.benefits__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.125rem) clamp(1.25rem, 1rem + 1vw, 1.75rem);
  border-right: 1px solid var(--line);
}

.benefit:last-child { border-right: 0; }

.benefit__icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold-500);
}

.benefit__icon svg { width: 22px; height: 22px; }

.benefit__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.375rem;
}

.benefit__text {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
}

/* ==========================================================================
   08. NASLOVI SEKCIJA
   ========================================================================== */

.section-head { margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.section-head__title { margin-top: 1rem; }
.section-head__text { margin-top: 1rem; max-width: 62ch; }
.section-head--center { text-align: center; }
.section-head--center .section-head__text { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }

.section-head__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 1.25rem;
  background: var(--gold-500);
  border-radius: 3px;
}

.section-head--center .section-head__title::after { margin-inline: auto; }
.section-head--no-rule .section-head__title::after { display: none; }

/* ==========================================================================
   09. KARTICE USLUGA
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
              border-color 0.28s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f4f7fc 0%, #e6ecf6 100%);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
}

.service-card__media svg,
.service-card__media img {
  width: 100%;
  max-width: 150px;
  height: auto;
  transition: transform 0.35s var(--ease);
}

.service-card:hover .service-card__media svg,
.service-card:hover .service-card__media img { transform: scale(1.07); }

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
}

.service-card__title {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.125rem;
}

.tick-list { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; }

.tick-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-soft);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

.tick-list--check li { padding-left: 1.875rem; }

.tick-list--check li::before {
  content: "";
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(226, 169, 59, 0.16);
}

.tick-list--check li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.62em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}

.service-card__link { margin-top: auto; }

/* ==========================================================================
   10. STATISTIKA
   ========================================================================== */

.stats {
  position: relative;
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(2.25rem, 1.5rem + 3vw, 3.5rem) clamp(1.25rem, 0.75rem + 2vw, 2.5rem);
}

.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding-inline: 1rem;
  border-right: 1px solid var(--line-dark);
}

.stat:last-child { border-right: 0; }

.stat__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.875rem;
  color: var(--gold-500);
}

.stat__icon svg { width: 30px; height: 30px; }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.stat__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.375rem;
}

.stat__note {
  font-size: var(--fs-sm);
  color: var(--on-dark-muted);
  line-height: 1.45;
}

/* ==========================================================================
   11. POSTUPAK
   ========================================================================== */

.process__inner {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}

.process__intro .eyebrow { margin-bottom: 1rem; }
.process__title { margin-bottom: 1.25rem; }
.process__text { margin-bottom: 2rem; max-width: 30ch; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* Isprekidana linija koja povezuje korake */
.steps::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  background-repeat: repeat-x;
}

.step {
  position: relative;
  text-align: center;
}

.step__icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-500);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  box-shadow: 0 8px 22px rgba(8, 23, 51, 0.22);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.step:hover .step__icon {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(8, 23, 51, 0.3);
}

.step__icon svg { width: 32px; height: 32px; }

.step__num {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  border: 3px solid var(--cream);
}

.section:not(.section--cream) .step__num { border-color: var(--white); }

.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--muted);
}

/* ==========================================================================
   12. O NAMA
   ========================================================================== */

.about {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-850) 50%, var(--navy-950) 100%);
  color: var(--on-dark-soft);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(226, 169, 59, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}

.about__portrait { position: relative; align-self: end; }

.about__portrait img,
.about__portrait svg {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(5, 14, 32, 0.6));
}

.about__content h2 { color: var(--white); margin-bottom: 0.375rem; }

.about__role {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.about__content p + p { margin-top: 1rem; }
.about__content .eyebrow { margin-bottom: 1rem; }

.about__signature {
  margin-top: 1.75rem;
  font-family: "Segoe Script", "Snell Roundhand", cursive;
  font-size: 1.875rem;
  color: var(--gold-400);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.about__legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-xs);
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--on-dark-muted);
  text-transform: uppercase;
}

/* Lista kvaliteta */
.about__points {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem;
  border-radius: var(--r-md);
  transition: background-color 0.2s var(--ease);
}

.point:hover { background: rgba(255, 255, 255, 0.05); }

.point__icon {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(226, 169, 59, 0.14);
  color: var(--gold-500);
}

.point__icon svg { width: 19px; height: 19px; }

.point__title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.point__text {
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
  line-height: 1.5;
  margin-top: 2px;
}

/* ==========================================================================
   13. RECENZIJE
   ========================================================================== */

.testimonials { background: var(--cream); overflow: hidden; }

.carousel { position: relative; }

.carousel__viewport {
  overflow: hidden;
  padding-block: 1rem;
  margin-inline: clamp(0rem, -2rem + 8vw, 3.5rem);
}

.carousel__track {
  display: flex;
  gap: clamp(1rem, 0.5rem + 2vw, 2rem);
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 0.5rem + 2vw, 2rem)) / 3);
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  opacity: 0.45;
  transform: scale(0.94);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}

.testimonial.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.125rem;
}

.testimonial__stars svg { width: 17px; height: 17px; color: var(--gold-500); }

.testimonial__quote {
  flex: 1;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
  background: linear-gradient(140deg, #dfe6f2, #a9bad6);
}

.testimonial__name {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.testimonial__city { font-size: var(--fs-xs); color: var(--muted); }

/* Kontrole karusela */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.carousel__btn:hover { background: var(--gold-500); color: var(--navy-900); }
.carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel__btn svg { width: 18px; height: 18px; }
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 30, 66, 0.2);
  transition: width 0.25s var(--ease), background-color 0.25s var(--ease);
}

.carousel__dot.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--gold-500);
}

/* ==========================================================================
   14. KONTAKT SEKCIJA I FORMA
   ========================================================================== */

.contact-cta { padding-bottom: var(--space-section); background: var(--cream); }

.contact-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  background: linear-gradient(125deg, var(--navy-850) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-cta__card::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.contact-cta__portrait { position: relative; align-self: end; }
.contact-cta__portrait img,
.contact-cta__portrait svg { width: 100%; max-width: 300px; margin-inline: auto; }

.contact-cta__content { position: relative; }
.contact-cta__content h2 { color: var(--white); margin-block: 0.875rem 0.625rem; }
.contact-cta__content > p { color: var(--on-dark-soft); margin-bottom: 1.75rem; }

.contact-list { display: grid; gap: 0.625rem; }

.contact-list__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
              transform 0.2s var(--ease);
}

a.contact-list__item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 169, 59, 0.5);
  transform: translateX(3px);
}

.contact-list__item svg { width: 17px; height: 17px; flex: none; color: var(--gold-500); }

/* Forma */
.form { position: relative; display: grid; gap: 0.875rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.field { display: grid; gap: 0.375rem; }

.field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  font-size: var(--fs-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}

.form textarea { resize: vertical; min-height: 118px; }

.form input::placeholder,
.form textarea::placeholder { color: var(--on-dark-muted); }

.form input:hover,
.form textarea:hover { border-color: rgba(255, 255, 255, 0.24); }

.form input:focus,
.form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(226, 169, 59, 0.18);
}

.form input:user-invalid,
.form textarea:user-invalid { border-color: #E8746A; }

.form__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--on-dark-muted);
}

.form__note svg { width: 14px; height: 14px; flex: none; color: var(--gold-500); }

/* Honeypot polje — sakriveno od korisnika, hvata botove */
.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Poruke */
.form__status {
  display: none;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
}

.form__status.is-visible { display: flex; }
.form__status svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.form__status--success {
  background: rgba(58, 168, 118, 0.14);
  border-color: rgba(58, 168, 118, 0.4);
  color: #86E5B6;
}

.form__status--error {
  background: rgba(232, 116, 106, 0.13);
  border-color: rgba(232, 116, 106, 0.4);
  color: #F4A8A0;
}

.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
  background: var(--navy-950);
  color: var(--on-dark-muted);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.footer__about { max-width: 34ch; }
.footer__about .logo { margin-bottom: 1.25rem; }
.footer__about p { font-size: var(--fs-sm); line-height: 1.7; }

.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__list { display: grid; gap: 0.75rem; }

.footer__list a,
.footer__list li {
  font-size: var(--fs-sm);
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}

.footer__list a:hover { color: var(--gold-400); }

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 4px;
  color: var(--gold-500);
}

.footer__socials {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-dark);
  color: var(--white);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer__social:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-xs);
}

.footer__bottom p { line-height: 1.6; }

.footer__bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.footer__bottom a:hover {
  color: var(--gold-400);
  text-decoration-color: var(--gold-400);
}
.footer__crest {
  display: block;
  width: 34px;
  height: 22px;
  opacity: 0.45;
  object-fit: contain;
}

/* ==========================================================================
   16. PLUTAJUĆA DUGMAD
   ========================================================================== */

.floating {
  position: fixed;
  right: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
  bottom: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
  z-index: 90;
  display: grid;
  gap: 0.625rem;
}

.floating__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--white);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.floating__btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-lg); }
.floating__btn svg { width: 20px; height: 20px; flex: none; }
.floating__btn--viber { background: #7360F2; }
.floating__btn--whatsapp { background: #25D366; }

/* ==========================================================================
   17. PODSTRANICE — ZAGLAVLJE
   ========================================================================== */

.page-hero {
  position: relative;
  background: linear-gradient(125deg, var(--navy-850) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -5%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.13) 0%, transparent 64%);
  pointer-events: none;
}

.page-hero__inner { position: relative; max-width: 720px; }
.page-hero__title { color: var(--white); margin-block: 1rem 1.125rem; }
.page-hero__text { color: var(--on-dark-soft); max-width: 60ch; }

/* Putanja */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--on-dark-muted);
}

.breadcrumb a { transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--gold-400); }

/* ==========================================================================
   18. USLUGE — DETALJNE SEKCIJE
   ========================================================================== */

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 1.25rem + 3vw, 4rem);
  align-items: center;
}

.service-row + .service-row { margin-top: clamp(3rem, 2rem + 4vw, 5.5rem); }
.service-row--flip .service-row__media { order: 2; }

.service-row__media {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  background: linear-gradient(160deg, #f4f7fc 0%, #e4ebf6 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}

.service-row__media svg,
.service-row__media img { width: 100%; max-width: 240px; }

.service-row__title { margin-block: 0.875rem 1rem; }
.service-row__text { margin-bottom: 1.5rem; }

.service-row__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

/* Info kartice (dokumenta, rokovi…) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 0.75rem + 1vw, 1.5rem);
}

.info-card {
  padding: clamp(1.25rem, 1rem + 1vw, 1.875rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); }

.info-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.125rem;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold-500);
}

.info-card__icon svg { width: 22px; height: 22px; }
.info-card__title { margin-bottom: 0.625rem; }
.info-card__text { font-size: var(--fs-sm); color: var(--muted); line-height: 1.6; }

.info-card--dark {
  background: linear-gradient(145deg, var(--navy-850), var(--navy-950));
  border-color: transparent;
  color: var(--on-dark-soft);
}

.info-card--dark .info-card__title { color: var(--white); }
.info-card--dark .info-card__text { color: var(--on-dark-muted); }
.info-card--dark .info-card__icon { background: rgba(226, 169, 59, 0.15); }

/* Prozni sadržaj */
.prose > * + * { margin-top: 1.125rem; }

/* Nenaslovljeni h2 u dužem tekstu (npr. politika privatnosti) — umereniji od
   sekcijskih naslova, koji svoju veličinu dobijaju preko sopstvene klase. */
.prose h2:not([class]) { font-size: var(--fs-h3); margin-top: 2.5rem; }
.prose h2:not([class]):first-child { margin-top: 0; }

.prose h3 { margin-top: 2.25rem; }
.prose h4 { margin-top: 1.75rem; }
.prose ul { display: grid; gap: 0.625rem; }

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.prose strong { color: var(--ink); font-weight: 600; }

/* Dvokolonski raspored */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1.25rem + 3vw, 4rem);
  align-items: start;
}

.split--wide-left { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }

.panel {
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.panel--cream {
  background: var(--cream);
  border-color: var(--cream-dark);
  box-shadow: none;
}

.panel--navy {
  background: linear-gradient(145deg, var(--navy-850), var(--navy-950));
  border-color: transparent;
  color: var(--on-dark-soft);
}

.panel--navy h2,
.panel--navy h3,
.panel--navy .panel__title { color: var(--white); }
.panel--navy .tick-list li { color: var(--on-dark-soft); }

.panel__title { margin-bottom: 1.125rem; }

@media (max-width: 1024px) {
  .split,
  .split--wide-left { grid-template-columns: 1fr; }
}

/* Istaknuti citat / napomena */
.callout {
  display: flex;
  gap: 1rem;
  padding: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  background: rgba(226, 169, 59, 0.09);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.callout svg { width: 22px; height: 22px; flex: none; color: var(--gold-600); margin-top: 2px; }
.callout p { font-size: var(--fs-sm); line-height: 1.65; }

/* Bočna navigacija kroz usluge */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}

.related-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card__icon {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(226, 169, 59, 0.14);
  color: var(--gold-600);
}

.related-card__icon svg { width: 20px; height: 20px; }

.related-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

/* ==========================================================================
   19. STRANICA KONTAKT
   ========================================================================== */

.contact-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 1.25rem + 3vw, 4rem);
  align-items: start;
}

.contact-details { display: grid; gap: 1rem; }

.detail-card {
  display: flex;
  gap: 1.125rem;
  padding: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.detail-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }

.detail-card__icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold-500);
}

.detail-card__icon svg { width: 21px; height: 21px; }

.detail-card__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.detail-card__value {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}

a.detail-card__value:hover { color: var(--gold-600); }
.detail-card__note { font-size: var(--fs-sm); color: var(--muted); margin-top: 0.25rem; }

/* Forma na svetloj pozadini */
.form-panel {
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.form-panel h2 { color: var(--white); margin-bottom: 0.625rem; }
.form-panel > p { color: var(--on-dark-soft); margin-bottom: 1.75rem; }

/* Mapa */
.map-embed {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-dark);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Radno vreme */
.hours { display: grid; gap: 0.125rem; }

.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.625rem;
  border-bottom: 1px dashed var(--line);
  font-size: var(--fs-sm);
}

.hours__row:last-child { border-bottom: 0; }
.hours__day { font-weight: 600; color: var(--ink); }
.hours__time { color: var(--muted); white-space: nowrap; }
.hours__row--closed .hours__time { color: #C0705F; }

/* Traka sa pozivom na akciju */
.cta-band {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.75rem;
  text-align: center;
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) clamp(1.5rem, 1rem + 2vw, 3rem);
  background: linear-gradient(125deg, var(--navy-850) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(226, 169, 59, 0.16) 0%, transparent 64%);
  pointer-events: none;
}

.cta-band__inner { position: relative; max-width: 620px; }
.cta-band__inner h2 { color: var(--white); margin-block: 0.875rem 0.875rem; }
.cta-band__inner p { color: var(--on-dark-soft); }

.cta-band__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 720px) {
  .cta-band__actions { width: 100%; }
}

/* ==========================================================================
   20. FAQ AKORDEON
   ========================================================================== */

.faq { display: grid; gap: 0.75rem; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq__item:has(.faq__q[aria-expanded="true"]) {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem clamp(1rem, 0.85rem + 0.6vw, 1.5rem);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: rgba(226, 169, 59, 0.16);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold-600);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after { width: 2px; height: 10px; }

.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }

.faq__a p {
  padding: 0 clamp(1rem, 0.85rem + 0.6vw, 1.5rem) 1.25rem;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================================================
   21. ANIMACIJE
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   22. RESPONZIVNOST
   ========================================================================== */

/* --- ≤1180px: skraćena navigacija --- */
@media (max-width: 1180px) {
  .nav__list { gap: 0; }
  .nav__link { padding-inline: 0.625rem; font-size: 0.875rem; }
  .header__phone span { display: none; }
  .header__phone { padding: 0.625rem 0.75rem; }
}

/* --- ≤1024px: mobilna navigacija --- */
@media (max-width: 1024px) {
  :root { --header-h: 74px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: block;
    padding: 2rem var(--gutter) 3rem;
    background: var(--navy-900);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
                visibility 0.25s var(--ease);
  }

  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.9375rem 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
  }

  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--gold-400); }

  .nav__mobile-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .header__actions .header__cta { display: none; }

  /* Layout */
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__eyebrow::before { display: none; }
  .social-proof { justify-content: center; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; }
  .scroll-hint { display: none; }

  .benefits__card { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .stat:nth-child(2) { border-right: 0; }

  .process__inner { grid-template-columns: 1fr; }
  .process__text { max-width: 46ch; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .steps::before { display: none; }

  .about__inner { grid-template-columns: 1fr; }
  .about__portrait { max-width: 340px; margin-inline: auto; }
  .about__content { text-align: left; }

  .testimonial { flex-basis: calc((100% - clamp(1rem, 0.5rem + 2vw, 2rem)) / 2); }

  .contact-cta__card { grid-template-columns: 1fr; }
  .contact-cta__portrait { display: none; }

  .service-row,
  .service-row--flip { grid-template-columns: 1fr; }
  .service-row--flip .service-row__media { order: 0; }
  .service-row__media { max-width: 460px; margin-inline: auto; }

  .contact-page__inner { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- ≤720px --- */
@media (max-width: 720px) {
  .benefits { margin-top: -3rem; }
  .benefits__card { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .benefit:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .services__grid { grid-template-columns: 1fr; }
  .service-card__media { aspect-ratio: 16 / 9; }

  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; padding-block: 0.5rem; }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .testimonial { flex-basis: 100%; }
  .carousel__viewport { margin-inline: 0; }
  .carousel__btn { display: none; }

  .service-row__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .floating__btn span { display: none; }
  .floating__btn { padding: 0.75rem; }

  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* --- ≤480px --- */
@media (max-width: 480px) {
  .logo__mark { width: 44px; height: 28px; }
  .logo__name { font-size: 0.9375rem; }
  .logo__sub { font-size: 0.5625rem; letter-spacing: 0.28em; }
  .header__phone { display: none; }

  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .avatars__item { width: 36px; height: 36px; }
}

/* --- Štampa --- */
@media print {
  .header, .floating, .scroll-hint, .carousel__btn,
  .carousel__dots, .nav-toggle, .hero__bg { display: none !important; }

  body { color: #000; background: #fff; }
  .hero, .about, .stats, .contact-cta__card, .footer { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
}
